Ellipsis text instead of overlapping icons better

This commit is contained in:
Dave Pedu 2015-02-13 19:42:25 -08:00
parent a25b9bf3e6
commit 931810da37
2 changed files with 5 additions and 3 deletions

View File

@ -143,7 +143,7 @@ ul#root > li {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 0px 10px 5px 10px;
padding: 0px 0px 5px 10px;
font-weight: bold; }
ul#root > li:nth-child(2n) {
background-color: rgba(0, 0, 0, 0.05); }
@ -165,7 +165,8 @@ ul#root > li {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block; }
display: block;
padding-right: 3px; }
ul#root > li > ul > li:nth-child(2n+1) {
background-color: rgba(0, 0, 0, 0.05); }

View File

@ -170,7 +170,7 @@ ul#root {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 0px 10px 5px 10px;
padding: 0px 0px 5px 10px;
font-weight: bold;
}
&:nth-child(2n) {
@ -203,6 +203,7 @@ ul#root {
text-overflow: ellipsis;
white-space: nowrap;
display: block;
padding-right: 3px;
}
&:nth-child(2n+1) {
background-color: rgba(0,0,0,0.05);