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

@ -99,17 +99,13 @@ GM_addStyle('
text-align: right; text-align: right;
border: 1px solid; border: 1px solid;
} }
#box.autohide:not(:hover){ #box.autohide:not(:hover) {
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

@ -128,17 +128,13 @@ position: fixed; \
text-align: right; \ text-align: right; \
border: 1px solid; \ border: 1px solid; \
} \ } \
#box.autohide:not(:hover){ \ #box.autohide:not(:hover) { \
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; \
} \ } \