From 8f002eb042d06abc464466bdc4cacb37b63a8f7e Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 18 Dec 2013 22:44:52 +0100 Subject: [PATCH] CSS : style pour les titres trop longs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit En réponse à https://github.com/marienfressinaud/FreshRSS/pull/322 --- public/themes/default/freshrss.css | 6 ++++++ public/themes/flat-design/freshrss.css | 9 +++++++++ 2 files changed, 15 insertions(+) diff --git a/public/themes/default/freshrss.css b/public/themes/default/freshrss.css index a4abbf22b..4fe028e3c 100644 --- a/public/themes/default/freshrss.css +++ b/public/themes/default/freshrss.css @@ -286,6 +286,12 @@ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; + } + .flux .item.title:hover { + background: #FFF; + overflow: visible; + padding-right: 1.5em; + position: absolute; } .flux .item.title a { color: #000; diff --git a/public/themes/flat-design/freshrss.css b/public/themes/flat-design/freshrss.css index 7ce67ef22..cecb4cc06 100644 --- a/public/themes/flat-design/freshrss.css +++ b/public/themes/flat-design/freshrss.css @@ -220,6 +220,9 @@ body { .flux { border-left: 3px solid #ecf0f1; } + .flux:hover { + background: #fff; + } .flux.not_read { border-left-color: #FF5300; background: #FFF3ED; @@ -265,6 +268,12 @@ body { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; + } + .flux .item.title:hover { + background: #FFF; + overflow: visible; + padding-right: 1.5em; + position: absolute; } .flux .item.title a { color: #333;