diff options
| author | 2013-12-18 22:52:45 +0100 | |
|---|---|---|
| committer | 2013-12-18 22:52:45 +0100 | |
| commit | 5c779a09eb32507fb85e96d647ed1358a93678f2 (patch) | |
| tree | 9bcc8fff48d9cd2954283a4de068735926513c4e | |
| parent | 8f002eb042d06abc464466bdc4cacb37b63a8f7e (diff) | |
CSS : style pour les titres trop longs (correction)
Correction de
https://github.com/marienfressinaud/FreshRSS/commit/8f002eb042d06abc464466bdc4cacb37b63a8f7e
En réponse à https://github.com/marienfressinaud/FreshRSS/pull/322
| -rw-r--r-- | public/themes/default/freshrss.css | 5 | ||||
| -rw-r--r-- | public/themes/flat-design/freshrss.css | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/public/themes/default/freshrss.css b/public/themes/default/freshrss.css index 4fe028e3c..ed5f35ba6 100644 --- a/public/themes/default/freshrss.css +++ b/public/themes/default/freshrss.css @@ -251,6 +251,7 @@ } .flux_header { + background: inherit; height: 25px; font-size: 12px; border-top: 1px solid #ddd; @@ -283,15 +284,15 @@ height: 40px; } .flux .item.title { + background: inherit; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .flux .item.title:hover { - background: #FFF; overflow: visible; - padding-right: 1.5em; position: absolute; + padding-right: 1.5em; } .flux .item.title a { color: #000; diff --git a/public/themes/flat-design/freshrss.css b/public/themes/flat-design/freshrss.css index cecb4cc06..055e8bf8b 100644 --- a/public/themes/flat-design/freshrss.css +++ b/public/themes/flat-design/freshrss.css @@ -237,6 +237,7 @@ body { } .flux_header { + background: inherit; height: 25px; font-size: 12px; border-top: 1px solid #ecf0f1; @@ -265,15 +266,15 @@ body { padding: 5px; } .flux .item.title { + background: inherit; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .flux .item.title:hover { - background: #FFF; overflow: visible; - padding-right: 1.5em; position: absolute; + padding-right: 1.5em; } .flux .item.title a { color: #333; |
