Highlight the entire row of selected items with a slightly darker background

pull/13/head
Thomas Bruederli 13 years ago
parent 8a6fde02de
commit 0f3ae423a6

@ -67,7 +67,9 @@
#directorylist li a, #directorylist li a,
#contacts-table .contact td.name { #contacts-table .contact td.name {
background: url(images/listicons.png) -100px 0 no-repeat; background-image: url(images/listicons.png);
background-position: -100px 0;
background-repeat: no-repeat;
overflow: hidden; overflow: hidden;
padding-left: 36px; padding-left: 36px;
text-overflow: ellipsis; text-overflow: ellipsis;

@ -54,7 +54,9 @@
#settings-sections span.listitem a, #settings-sections span.listitem a,
#settings-sections span.tablink a { #settings-sections span.tablink a {
padding-left: 36px; padding-left: 36px;
background: url(images/listicons.png) -100px 0 no-repeat; background-image: url(images/listicons.png);
background-position: -100px 0;
background-repeat: no-repeat;
} }
/* note: support span.tablink because this is used by plugins */ /* note: support span.tablink because this is used by plugins */

@ -769,6 +769,7 @@ a.iconlink.upload {
.listing li.selected > a { .listing li.selected > a {
color: #004458; color: #004458;
font-weight: bold; font-weight: bold;
background-color: #c7e3ef;
} }
ul.listing { ul.listing {
@ -784,7 +785,7 @@ ul.listing li {
ul.listing li.droptarget, ul.listing li.droptarget,
table.listing tr.droptarget td { table.listing tr.droptarget td {
background-color: #c7e3ef; background-color: #e8e798;
} }
table.listing, table.listing,

Loading…
Cancel
Save