Renamed view_mode by list_mode and hide excerpt

This commit is contained in:
Nicolas Lœuillet
2016-11-28 12:08:51 +01:00
parent 56a7ce17f3
commit 9aa991281d
10 changed files with 43 additions and 32 deletions

View File

@ -8,7 +8,7 @@ use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Added view_mode in user config.
* Added list_mode in user config.
*/
class Version20161128084725 extends AbstractMigration implements ContainerAwareInterface
{
@ -33,9 +33,9 @@ class Version20161128084725 extends AbstractMigration implements ContainerAwareI
public function up(Schema $schema)
{
$configTable = $schema->getTable($this->getTable('config'));
$this->skipIf($configTable->hasColumn('view_mode'), 'It seems that you already played this migration.');
$this->skipIf($configTable->hasColumn('list_mode'), 'It seems that you already played this migration.');
$configTable->addColumn('view_mode', 'integer');
$configTable->addColumn('list_mode', 'integer');
}
/**
@ -44,6 +44,6 @@ class Version20161128084725 extends AbstractMigration implements ContainerAwareI
public function down(Schema $schema)
{
$configTable = $schema->getTable($this->getTable('config'));
$configTable->dropColumn('view_mode');
$configTable->dropColumn('list_mode');
}
}

View File

@ -617,6 +617,10 @@ div.pagination ul .current {
background-color: #ccc;
}
.hide {
display: none;
}
/* ==========================================================================
2.1 = "save a link" related styles
========================================================================== */
@ -1203,10 +1207,6 @@ pre code {
}
@media screen and (max-width: 500px) {
.hide {
display: none;
}
.entry {
width: 100%;
margin-left: 0;

View File

@ -555,6 +555,14 @@ a.original {
margin-right: 5px !important;
}
.card-stacked:hover ul.tools-list {
display: block;
}
.card-stacked ul.tools-list {
display: none;
}
.card .card-action a {
color: #fff;
margin: 0;
@ -600,7 +608,6 @@ a.original {
background-position: 50%;
}
/* ==========================================================================
5 = Article
========================================================================== */