diff options
| author | 2013-11-14 21:55:53 +0100 | |
|---|---|---|
| committer | 2013-11-14 21:55:53 +0100 | |
| commit | 9efb9388df7e07311b6e1e0696f43419c702cd2f (patch) | |
| tree | 8daecdbf9e2993c01e638da25cb5188e51f95967 /public/themes | |
| parent | 0843e5b6914c51b2263ad9bfd462cc1e4f1cea5f (diff) | |
bigMarkAsRead : utilisation sans JavaScript
et différent si l'utilisateur n'est pas connecté
Implémente https://github.com/marienfressinaud/FreshRSS/issues/249
Diffstat (limited to 'public/themes')
| -rw-r--r-- | public/themes/default/freshrss.css | 13 | ||||
| -rw-r--r-- | public/themes/flat-design/freshrss.css | 13 |
2 files changed, 16 insertions, 10 deletions
diff --git a/public/themes/default/freshrss.css b/public/themes/default/freshrss.css index 2ca7e7f36..a05a3cf04 100644 --- a/public/themes/default/freshrss.css +++ b/public/themes/default/freshrss.css @@ -575,18 +575,21 @@ font-size: 0; } -.bigMarkAsRead { - cursor: pointer; - height: 300px; +a.bigMarkAsRead { + display: block; + font-style: normal; + padding: 32px 0 64px 0; + text-align: center; + text-decoration: none; text-shadow: 0 -1px 0 #aaa; } -.bigMarkAsRead:hover { +a.bigMarkAsRead:hover { background: #333; color: #fff; } .bigTick { font-size: 72pt; - margin: 75px 0 10px 0; + line-height: 1.6em; } /*** NOTIFICATION ***/ diff --git a/public/themes/flat-design/freshrss.css b/public/themes/flat-design/freshrss.css index 4e643bde1..fa9295da5 100644 --- a/public/themes/flat-design/freshrss.css +++ b/public/themes/flat-design/freshrss.css @@ -562,19 +562,22 @@ body { font-size: 0; } -.bigMarkAsRead { +a.bigMarkAsRead { background: #ecf0f1; - cursor: pointer; - height: 300px; + display: block; + font-style: normal; + padding: 32px 0 64px 0; + text-align: center; + text-decoration: none; text-shadow: 0 -1px 0 #aaa; } -.bigMarkAsRead:hover { +a.bigMarkAsRead:hover { background: #34495e; color: #fff; } .bigTick { font-size: 72pt; - margin: 75px 0 10px 0; + line-height: 1.6em; } /*** NOTIFICATION ***/ |
