CSS : style pour les titres trop longs

En réponse à https://github.com/marienfressinaud/FreshRSS/pull/322
pull/326/head
Alexandre Alapetite 11 years ago
parent e29be10556
commit 8f002eb042
  1. 6
      public/themes/default/freshrss.css
  2. 9
      public/themes/flat-design/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;

@ -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;

Loading…
Cancel
Save