diff options
Diffstat (limited to 'public')
| -rw-r--r-- | public/scripts/main.js | 6 | ||||
| -rw-r--r-- | public/themes/default/freshrss.css | 13 | ||||
| -rw-r--r-- | public/themes/flat-design/freshrss.css | 13 |
3 files changed, 16 insertions, 16 deletions
diff --git a/public/scripts/main.js b/public/scripts/main.js index b86b1c856..04c1977d5 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -397,12 +397,6 @@ function init_stream_delegates(divStream) { return false; }); - divStream.on('click', '.bigMarkAsRead', function () { - var url = $(".nav_menu .read_all").attr("href"); - redirect(url, false); - return false; - }); - if (auto_mark_site) { divStream.on('click', '.flux .link a', function () { mark_read($(this).parent().parent().parent(), true); 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 ***/ |
