summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-21 22:50:01 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-21 22:50:01 +0100
commit4a89d1e08f19c86aaafdc42a92afde3f13a1c692 (patch)
treed4c33214b9ac5f9895ff6c7f9edb09169203e8f1 /app
parent305f1436e3ca2907e5234ed77f62348cf4303b79 (diff)
Corrections CSS suite aux alternatives Unicode des icônes
Contribue à https://github.com/marienfressinaud/FreshRSS/issues/284 Corrections de https://github.com/marienfressinaud/FreshRSS/commit/305f1436e3ca2907e5234ed77f62348cf4303b79
Diffstat (limited to 'app')
-rw-r--r--app/views/configure/display.phtml6
-rw-r--r--app/views/helpers/view/normal_view.phtml4
2 files changed, 5 insertions, 5 deletions
diff --git a/app/views/configure/display.phtml b/app/views/configure/display.phtml
index 292df41eb..3595b0003 100644
--- a/app/views/configure/display.phtml
+++ b/app/views/configure/display.phtml
@@ -162,12 +162,12 @@
<thead>
<tr>
<th> </th>
- <th><a class="read" title="<?php echo Translate::t ('mark_read'); ?>">✉</a></th>
- <th><a class="bookmark" title="<?php echo Translate::t ('mark_favorite'); ?>">★</a></th>
+ <th><a class="icon read" title="<?php echo Translate::t ('mark_read'); ?>">☑</a></th>
+ <th><a class="icon bookmark" title="<?php echo Translate::t ('mark_favorite'); ?>">★</a></th>
<th><?php echo Translate::t ('sharing'); ?></th>
<th><?php echo Translate::t ('related_tags'); ?></th>
<th><?php echo Translate::t ('publication_date'); ?></th>
- <th class="item link"><a> </a></th>
+ <th class="link"><a class="icon">↗</a></th>
</tr>
</thead>
<tbody>
diff --git a/app/views/helpers/view/normal_view.phtml b/app/views/helpers/view/normal_view.phtml
index ba4bd3169..cea29636f 100644
--- a/app/views/helpers/view/normal_view.phtml
+++ b/app/views/helpers/view/normal_view.phtml
@@ -58,7 +58,7 @@ if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) {
<li class="item website"><a href="<?php echo _url ('index', 'index', 'get', 'f_' . $feed->id ()); ?>"><img class="favicon" src="<?php echo $feed->favicon (); ?>" alt="✇" /> <span><?php echo $feed->name(); ?></span></a></li>
<li class="item title"><a target="_blank" href="<?php echo $item->link (); ?>"><?php echo $item->title (); ?></a></li>
<?php if ($this->conf->toplineDate ()) { ?><li class="item date"><?php echo $item->date (); ?> </li><?php } ?>
- <?php if ($this->conf->toplineLink ()) { ?><li class="item link"><a target="_blank" href="<?php echo $item->link (); ?>">↗</a></li><?php } ?>
+ <?php if ($this->conf->toplineLink ()) { ?><li class="item link"><a class="icon" target="_blank" href="<?php echo $item->link (); ?>">↗</a></li><?php } ?>
</ul>
<div class="flux_content">
@@ -152,7 +152,7 @@ if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) {
</li>
<?php } ?>
<?php if ($this->conf->bottomlineDate ()) { ?><li class="item date"><?php echo $item->date (); ?> </li><?php } ?>
- <?php if ($this->conf->bottomlineLink ()) { ?><li class="item link"><a target="_blank" href="<?php echo $item->link (); ?>"> </a></li><?php } ?>
+ <?php if ($this->conf->bottomlineLink ()) { ?><li class="item link"><a class="icon" target="_blank" href="<?php echo $item->link (); ?>"> </a></li><?php } ?>
</ul>
</div>
</div>