aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-18 22:44:52 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-18 22:44:52 +0100
commit8f002eb042d06abc464466bdc4cacb37b63a8f7e (patch)
tree2b7b3319650c13082a8fb331d222272138b02618
parente29be10556e1994083bce7398eee0a3edc017a9d (diff)
CSS : style pour les titres trop longs
En réponse à https://github.com/marienfressinaud/FreshRSS/pull/322
-rw-r--r--public/themes/default/freshrss.css6
-rw-r--r--public/themes/flat-design/freshrss.css9
2 files changed, 15 insertions, 0 deletions
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
@@ -287,6 +287,12 @@
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;
outline: none;
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;
@@ -266,6 +269,12 @@ body {
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;
outline: none;