Implementing alternating row colours for content type and part editors too, fixes #2665

This commit is contained in:
Lombiq
2015-06-09 00:09:54 +02:00
parent 56032dd815
commit 31a325a810

View File

@@ -1037,16 +1037,21 @@ table.items tr:nth-child(odd) {
#main .contentItems > ul > li:nth-child(even),
ul.contentItems > li:nth-child(even) ,
table.items tr:nth-child(even) {
table.items tr:nth-child(even) ,
fieldset.manage-part:nth-child(even),
fieldset.manage-field:nth-child(even) {
background-color: #f9f9f9;
}
#main .contentItems > ul > li:hover,
ul.contentItems > li:hover,
table.items tbody tr:hover {
table.items tbody tr:hover ,
fieldset.manage-part:hover,
fieldset.manage-field:hover {
background-color: #EDF9F5;
}
/* Pager
***************************************************************/
@@ -1575,4 +1580,4 @@ html.dir-rtl {
padding-left: inherit;
padding-right: 20px;
}
}
}