CSS : style pour les titres trop long (corrections 2)

Correction de
5c779a09eb
En réponse à https://github.com/marienfressinaud/FreshRSS/pull/322
pull/326/head
Alexandre Alapetite 11 years ago
parent 5c779a09eb
commit 3280b14ed6
  1. 4
      public/scripts/main.js
  2. 4
      public/themes/default/freshrss.css
  3. 4
      public/themes/flat-design/freshrss.css

@ -388,9 +388,9 @@ function init_shortcuts() {
}
function init_stream_delegates(divStream) {
divStream.on('click', '.flux_header>.item.title, .flux_header>.item.date', function (e) { //flux_header_toggle
divStream.on('click', '.flux_header', function (e) { //flux_header_toggle
var old_active = $(".flux.current"),
new_active = $(this).parent().parent();
new_active = $(this).parent();
isCollapsed = true;
if (e.target.tagName.toUpperCase() === 'A') { //Leave real links alone
if (auto_mark_article) {

@ -289,10 +289,10 @@
white-space: nowrap;
text-overflow: ellipsis;
}
.flux .item.title:hover {
.flux:hover .item.title {
overflow: visible;
position: absolute;
padding-right: 1.5em;
position: absolute;
}
.flux .item.title a {
color: #000;

@ -271,10 +271,10 @@ body {
white-space: nowrap;
text-overflow: ellipsis;
}
.flux .item.title:hover {
.flux:hover .item.title {
overflow: visible;
position: absolute;
padding-right: 1.5em;
position: absolute;
}
.flux .item.title a {
color: #333;

Loading…
Cancel
Save