fix css to hide <select> tag

This commit is contained in:
James Campos 2010-04-28 01:31:20 -07:00
parent ec4387ebdb
commit 0d88c97423
2 changed files with 4 additions and 12 deletions

View File

@ -103,13 +103,9 @@ GM_addStyle('
background: rgba(0,0,0,0); background: rgba(0,0,0,0);
border: none; border: none;
} }
#box.autohide:not(:hover) > div { #box.autohide:not(:hover):not(:active) > *:not(.top) {
display: none; display: none;
} }
#box.autohide:not(:hover) > div.top {
display: block;
padding: 0;
}
#box.autohide a:last-child { #box.autohide a:last-child {
font-weight: bold; font-weight: bold;
} }

View File

@ -132,13 +132,9 @@ border: 1px solid; \
background: rgba(0,0,0,0); \ background: rgba(0,0,0,0); \
border: none; \ border: none; \
} \ } \
#box.autohide:not(:hover) > div { \ #box.autohide:not(:hover):not(:active) > *:not(.top) { \
display: none; \ display: none; \
} \ } \
#box.autohide:not(:hover) > div.top { \
display: block; \
padding: 0; \
} \
#box.autohide a:last-child { \ #box.autohide a:last-child { \
font-weight: bold; \ font-weight: bold; \
} \ } \