feedtree: fix for long feed titles making counters invisible
This commit is contained in:
parent
fa287f6b11
commit
24a82359b2
2 changed files with 11 additions and 2 deletions
|
@ -84,11 +84,11 @@
|
||||||
border-width : 0px;
|
border-width : 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.claro .dijitTree .dijitTreeRow {
|
/*.claro .dijitTree .dijitTreeRow {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
.claro .dijitTree .dijitTreeRowSelected {
|
.claro .dijitTree .dijitTreeRowSelected {
|
||||||
background : white;
|
background : white;
|
||||||
|
|
|
@ -1067,6 +1067,15 @@ body#ttrssMain.claro #feedTree.dijitTree .dijitTreeNode .dijitTreeRowSelected {
|
||||||
border-right-color : white;
|
border-right-color : white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body#ttrssMain #feedTree.dijitTree .dijitTreeContainer {
|
||||||
|
max-width : 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body#ttrssMain #feedTree.dijitTree .dijitTreeRow {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
body#ttrssMain #feedTree.dijitTree .dijitTreeNode .dijitTreeRow {
|
body#ttrssMain #feedTree.dijitTree .dijitTreeNode .dijitTreeRow {
|
||||||
padding : 2px 0px 2px;
|
padding : 2px 0px 2px;
|
||||||
height : 22px;
|
height : 22px;
|
||||||
|
|
Loading…
Reference in a new issue