From: robert Date: Sat, 31 May 2003 19:01:36 +0000 (+0000) Subject: keep up with Classic development X-Git-Tag: EarlyBlue-2.0a1~83 X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=commitdiff_plain;h=afb758a00fc5ebfc2811cfb25037b225e9192a0c;hp=55cca60c2c12260759091800d9b926b4055d1f7b keep up with Classic development --- diff --git a/EarlyBlue/communicator/icons/turbo-systray.gif b/EarlyBlue/communicator/icons/turbo-systray.gif index ec6c4894..4bcc2843 100644 Binary files a/EarlyBlue/communicator/icons/turbo-systray.gif and b/EarlyBlue/communicator/icons/turbo-systray.gif differ diff --git a/EarlyBlue/communicator/prefpanels.css b/EarlyBlue/communicator/prefpanels.css index 88e803e7..e9ee543a 100644 --- a/EarlyBlue/communicator/prefpanels.css +++ b/EarlyBlue/communicator/prefpanels.css @@ -77,6 +77,12 @@ width: 4em; } +.prefpanel-font-list { + -moz-box-flex: 1; +} + +/* ::::: Mouse Wheel ::::: */ + #mouseWheelMode { width: 9em; } diff --git a/EarlyBlue/editor/editorFormatToolbar.css b/EarlyBlue/editor/editorFormatToolbar.css index 3a25d5f1..08959aee 100644 --- a/EarlyBlue/editor/editorFormatToolbar.css +++ b/EarlyBlue/editor/editorFormatToolbar.css @@ -279,6 +279,10 @@ list-style-image: url("chrome://editor/content/images/innocent_n.gif"); } +.insert-cry > .menu-iconic-left { + list-style-image: url("chrome://editor/content/images/cry_n.gif"); +} + .insert-sealed > .menu-iconic-left { list-style-image: url("chrome://editor/content/images/sealed_n.gif"); } diff --git a/EarlyBlue/editor/editorPrimaryToolbar.css b/EarlyBlue/editor/editorPrimaryToolbar.css index b50ace48..f7a30dbb 100644 --- a/EarlyBlue/editor/editorPrimaryToolbar.css +++ b/EarlyBlue/editor/editorPrimaryToolbar.css @@ -19,6 +19,8 @@ * the Initial Developer. All Rights Reserved. * * Contributor(s): + * Joe Hewitt (hewitt@netscape.com) + * Patrick Thompson (sailfish@unforgettable.com) * Robert Kaiser * * Alternatively, the contents of this file may be used under the terms of @@ -145,8 +147,40 @@ #spellingButton { list-style-image: url("chrome://editor/skin/icons/spell.gif"); -} +} #spellingButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/spell-disabled.gif") !important; } + +#cutButton { + list-style-image: url("chrome://editor/skin/icons/cut.gif"); +} + +#cutButton[disabled="true"] { + list-style-image: url("chrome://editor/skin/icons/cut-disabled.gif") !important; +} + +#copyButton { + list-style-image: url("chrome://editor/skin/icons/copy.gif"); +} + +#copyButton[disabled="true"] { + list-style-image: url("chrome://editor/skin/icons/copy-disabled.gif") !important; +} + +#pasteButton { + list-style-image: url("chrome://editor/skin/icons/paste.gif"); +} + +#pasteButton[disabled="true"] { + list-style-image: url("chrome://editor/skin/icons/paste-disabled.gif") !important; +} + +#findButton { + list-style-image: url("chrome://editor/skin/icons/cut.gif"); +} + +#findButton[disabled="true"] { + list-style-image: url("chrome://editor/skin/icons/cut-disabled.gif") !important; +} diff --git a/EarlyBlue/editor/icons/copy-disabled.gif b/EarlyBlue/editor/icons/copy-disabled.gif new file mode 100644 index 00000000..50f94396 Binary files /dev/null and b/EarlyBlue/editor/icons/copy-disabled.gif differ diff --git a/EarlyBlue/editor/icons/copy.gif b/EarlyBlue/editor/icons/copy.gif new file mode 100644 index 00000000..1aa2b03d Binary files /dev/null and b/EarlyBlue/editor/icons/copy.gif differ diff --git a/EarlyBlue/editor/icons/cut-disabled.gif b/EarlyBlue/editor/icons/cut-disabled.gif new file mode 100644 index 00000000..54a46e3c Binary files /dev/null and b/EarlyBlue/editor/icons/cut-disabled.gif differ diff --git a/EarlyBlue/editor/icons/cut.gif b/EarlyBlue/editor/icons/cut.gif new file mode 100644 index 00000000..d4fcc8ab Binary files /dev/null and b/EarlyBlue/editor/icons/cut.gif differ diff --git a/EarlyBlue/editor/icons/paste-disabled.gif b/EarlyBlue/editor/icons/paste-disabled.gif new file mode 100644 index 00000000..6db0f5ef Binary files /dev/null and b/EarlyBlue/editor/icons/paste-disabled.gif differ diff --git a/EarlyBlue/editor/icons/paste.gif b/EarlyBlue/editor/icons/paste.gif new file mode 100644 index 00000000..a898ce8f Binary files /dev/null and b/EarlyBlue/editor/icons/paste.gif differ