Просмотр исходного кода

Fix issue #108 : bug catégories non repliées

La colonne des catégories se replie désormais même lorsqu'il n'y a aucun
article à afficher
Marien Fressinaud 12 лет назад
Родитель
Сommit
e22ebc735f
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      app/views/helpers/normal_view.phtml
  2. 1 1
      app/views/helpers/reader_view.phtml

+ 1 - 1
app/views/helpers/normal_view.phtml

@@ -125,7 +125,7 @@ if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) {
 <?php $this->partial ('nav_entries'); ?>
 
 <?php } else { ?>
-<div class="alert alert-warn">
+<div id="stream" class="alert alert-warn normal">
 	<span class="alert-head"><?php echo Translate::t ('no_feed_to_display'); ?></span>
 </div>
 <?php } ?>

+ 1 - 1
app/views/helpers/reader_view.phtml

@@ -39,7 +39,7 @@ if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) {
 </div>
 
 <?php } else { ?>
-<div class="alert alert-warn">
+<div id="stream" class="alert alert-warn reader">
 	<span class="alert-head"><?php echo Translate::t ('no_feed_to_display'); ?></span>
 </div>
 <?php } ?>