diff options
Diffstat (limited to 'chrome/browser/resources/menu.css')
-rw-r--r-- | chrome/browser/resources/menu.css | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/chrome/browser/resources/menu.css b/chrome/browser/resources/menu.css new file mode 100644 index 0000000..44e584f --- /dev/null +++ b/chrome/browser/resources/menu.css @@ -0,0 +1,63 @@ +body { + margin: 0px; + background: -webkit-gradient(linear, left top, left bottom, + from(white), + to(#EEE)); + margin: 0px 0px 0px 0px; +} + +.menu_item { + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + white-space: nowrap; + padding: 0px 20px 0px 5px; +} + +.disabled { + color: #b7b7b7; +} + +.noicon { + padding-left: 20px; +} + +.menu_label { + display: inline-block; + vertical-align: middle; +} + +.left_icon { + vertical-align: middle; + margin-right: 10px; +} + +.right_icon { + vertical-align: middle; + right: 10px; +} + +#menu { + width: 100%; + height: 100%; +} + +.separator { + width: 85%; + height: 1px; + margin-top: 3px; + margin-bottom: 3px; + background: -webkit-gradient(linear, left top, right top, + from(transparent), + color-stop(0.3, rgba(20, 20, 20, 0.5)), + color-stop(0.7, rgba(20, 20, 20, 0.5)), + to(transparent)); +} + +.mnemonic_enabled .mnemonic { + text-decoration: underline; +} + +.selected { + background: #DCE4FA; +} |