Remove duplicate entry title when entries are expanded

On expanded entries, entry name is now hidden and feed name is shown entirely.
This commit is contained in:
Benoit Lecardonnel
2013-06-30 15:14:59 +01:00
parent d3dd084dd7
commit 9a7f1e368e
3 changed files with 11 additions and 5 deletions

View File

@@ -78,10 +78,13 @@
overflow: hidden;
white-space: nowrap;
position: absolute;
width: 145px;
text-overflow: ellipsis;
}
#feed-accordion .entry-heading .narrow {
width: 145px;
}
#feed-accordion .entry-heading .entry-name {
display: block;
overflow: hidden;

View File

@@ -25,6 +25,9 @@
#feed-accordion .entry-heading .entry-name {
margin-right: 40px;
}
#feed-accordion .entry-heading .narrow {
display: none;
}
body.left-menu-active .left-menu {
display: block !important;
width: 100%;
@@ -42,4 +45,4 @@
body.right-menu-active .toolbar .actions .visible-desktop {
display: inherit !important;
}
}
}