mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 500494 - Faststripe theme doesn't show arrows & checkboxes in menus, r=vlad
--HG-- extra : rebase_source : b5ed4eb4b32ac71ef201d3c67aad046703e13f32
This commit is contained in:
parent
4a1aa96c90
commit
d3e8a6ef96
@ -122,13 +122,18 @@ menuitem.menuitem-iconic > .menu-iconic-left {
|
||||
/* ..... menu arrow box ..... */
|
||||
|
||||
.menu-right {
|
||||
-moz-appearance: menuarrow;
|
||||
-moz-margin-end: -2px;
|
||||
list-style-image: none;
|
||||
list-style-image: url("chrome://global/skin/arrow/arrow-rit-sharp.gif");
|
||||
-moz-box-pack: center;
|
||||
min-width: 1.28em;
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
.menu-right[_moz-menuactive="true"] {
|
||||
/* XXXzpao We need a new image, essentially arrow-rit-sharp but white */
|
||||
list-style-image: url("chrome://global/skin/arrow/arrow-rit-dis.gif");
|
||||
}
|
||||
|
||||
/* ::::: menu/menuitems in menubar ::::: */
|
||||
|
||||
menubar > menu {
|
||||
@ -225,30 +230,28 @@ menulist > menupopup > menuitem > .menu-iconic-text {
|
||||
|
||||
/* ::::: checkbox and radio menuitems ::::: */
|
||||
|
||||
menuitem[type="checkbox"],
|
||||
menuitem[checked="true"] {
|
||||
-moz-appearance: checkmenuitem;
|
||||
}
|
||||
menuitem[type="checkbox"] > .menu-iconic-left,
|
||||
menuitem[checked="true"] > .menu-iconic-left {
|
||||
-moz-appearance: menucheckbox;
|
||||
padding-top: 0px;
|
||||
list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif");
|
||||
}
|
||||
menuitem[checked="true"] > .menu-iconic-left[_moz-menuactive="true"] {
|
||||
/* XXXzpao We need another image for here too */
|
||||
list-style-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif");
|
||||
}
|
||||
|
||||
menuitem[type="radio"] {
|
||||
-moz-appearance: radiomenuitem;
|
||||
menuitem[type="radio"][checked="true"] > .menu-iconic-left {
|
||||
list-style-image: url("chrome://global/skin/radio/radio-check.gif");
|
||||
}
|
||||
menuitem[type="radio"] > .menu-iconic-left {
|
||||
-moz-appearance: menuradio;
|
||||
padding-top: 0px;
|
||||
menuitem[type="radio"][checked="true"] > .menu-iconic-left[_moz-menuactive="true"] {
|
||||
/* XXXzpao We need another image for here too */
|
||||
list-style-image: url("chrome://global/skin/radio/radio-check-dis.gif");
|
||||
}
|
||||
|
||||
menuitem[type="checkbox"] > .menu-iconic-left > .menu-iconic-icon,
|
||||
menuitem[checked="true"] > .menu-iconic-left > .menu-iconic-icon,
|
||||
menuitem[type="radio"] > .menu-iconic-left > .menu-iconic-icon {
|
||||
/* prevent .menu-iconic-icon from enforcing a minimal height of 16px (see bug 411064)
|
||||
XXXzeniko apply that .menu-iconic-icon rule only for children of .menu-iconic */
|
||||
display: none;
|
||||
padding-top: 0px;
|
||||
height: 7px;
|
||||
width: 7px;
|
||||
}
|
||||
|
||||
/* ::::: menuseparator ::::: */
|
||||
|
Loading…
Reference in New Issue
Block a user