1
0
Fork 0
forked from 0x2620/oxjs

support for drag and drop

This commit is contained in:
rlx 2011-08-28 06:23:15 +00:00
commit 5d454f0a80
8 changed files with 39 additions and 11 deletions

View file

@ -295,6 +295,20 @@ Lists
.OxThemeModern .OxTextList .OxFocus .OxItem.OxSelected:nth-child(even) {
background: rgb(66, 66, 66);
}
.OxThemeModern .OxTextList .OxItem.OxDrop:nth-child(odd) .OxCell {
background: rgb(78, 78, 78);
}
.OxThemeModern .OxTextList .OxItem.OxDrop:nth-child(even) .OxCell {
background: rgb(82, 82, 82);
}
.OxThemeModern .OxTextList .OxItem.OxDragover:nth-child(odd) .OxCell {
background: rgb(94, 94, 94);
}
.OxThemeModern .OxTextList .OxItem.OxDragover:nth-child(even) .OxCell {
background: rgb(98, 98, 98);
}
.OxThemeModern .OxTextList .OxBar .OxSelected {
background: -moz-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
background: -webkit-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));