From e1cbfefec55f1229ee8eef5cc1eac950bc76f0c5 Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Fri, 4 Jan 2013 23:45:54 +0100 Subject: [PATCH] make buttons in toolbars look correct, esp. SeaMonkey throbbers --- LCARStrek/global/button.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/LCARStrek/global/button.css b/LCARStrek/global/button.css index 804481f3..953b632f 100644 --- a/LCARStrek/global/button.css +++ b/LCARStrek/global/button.css @@ -166,3 +166,37 @@ button::-moz-focus-inner { padding: 0px; border: 0px none; } + +/* ::::: toolbar buttons (sync look with toolbarbutton) ::::: */ + +/* The #throbber-box rules are only needed for the SeaMonkey editor, + * the toolbaritem ones for buttons in customizable toolbars. */ +toolbaritem > button, +#throbber-box > button { + border-radius: 3px; + background-color: #000000; + color: #FFCF00; +} + +toolbaritem > button > .button-box, +#throbber-box > button > .button-box { + border-radius: 3px; + -moz-padding-start: 0; + -moz-padding-end: 1px; +} + +toolbaritem > button > button:hover:active > .button-box, +toolbaritem > button > button[open="true"] > .button-box, +toolbaritem > button > button[checked="true"] > .button-box, +#throbber-box > button:hover:active > .button-box, +#throbber-box > button > button[open="true"] > .button-box, +#throbber-box > button > button[checked="true"] > .button-box { + -moz-padding-start: 1px; + -moz-padding-end: 0; +} + +toolbaritem > button > button[disabled="true"] > .button-box, +#throbber-box > button[disabled="true"] > .button-box { + -moz-padding-start: 0 !important; + -moz-padding-end: 1px !important; +} -- 2.35.3