зеркало из https://github.com/mozilla/pjs.git
bug 63624 - mail compose object dropdown missing images. r=andreww, sr=hewitt.
This commit is contained in:
Родитель
6637f1a47b
Коммит
edd0a775f0
|
@ -1,456 +0,0 @@
|
|||
/*
|
||||
* The contents of this file are subject to the Netscape Public
|
||||
* License Version 1.1 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is Mozilla Communicator client code, released
|
||||
* March 31, 1998.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*/
|
||||
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
#FormatToolbar > toolbarbutton {
|
||||
min-width: 3em;
|
||||
}
|
||||
|
||||
#FormatToolbar > toolbarbutton > .toolbarbutton-box > .toolbarbutton-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#boldButton
|
||||
{
|
||||
list-style-image : url(chrome://editor/skin/images/bold.gif);
|
||||
}
|
||||
|
||||
#boldButton[disabled="true"],
|
||||
#boldButton[disabled="true"]:hover,
|
||||
#boldButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/bold-disabled.gif");
|
||||
}
|
||||
|
||||
#boldButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/bold-hover.gif");
|
||||
}
|
||||
|
||||
#boldButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/bold-hover-active.gif");
|
||||
}
|
||||
|
||||
#smileButtonMenu {
|
||||
list-style-image:url("chrome://editor/skin/images/smile.gif");
|
||||
}
|
||||
|
||||
#smileButtonMenu[disabled="true"],
|
||||
#smileButtonMenu[disabled="true"]:hover,
|
||||
#smileButtonMenu[disabled="true"]:hover:active {
|
||||
list-style-image:url("chrome://editor/skin/images/smile_disabled.gif");
|
||||
}
|
||||
|
||||
.insert-smile > .menu-iconic-left {
|
||||
list-style-image:url(chrome://editor/skin/images/smile_n.gif);
|
||||
}
|
||||
|
||||
.insert-tongue > .menu-iconic-left {
|
||||
list-style-image:url(chrome://editor/skin/images/tongue_n.gif);
|
||||
}
|
||||
|
||||
.insert-frown > .menu-iconic-left {
|
||||
list-style-image:url(chrome://editor/skin/images/frown_n.gif);
|
||||
}
|
||||
|
||||
.insert-wink > .menu-iconic-left {
|
||||
list-style-image:url(chrome://editor/skin/images/wink_n.gif);
|
||||
}
|
||||
|
||||
.insert-laughing > .menu-iconic-left {
|
||||
list-style-image:url(chrome://editor/skin/images/laughing_n.gif);
|
||||
}
|
||||
|
||||
.insert-embarrassed > .menu-iconic-left {
|
||||
list-style-image:url(chrome://editor/skin/images/embarrassed_n.gif);
|
||||
}
|
||||
|
||||
|
||||
.insert-undecided > .menu-iconic-left {
|
||||
list-style-image:url(chrome://editor/skin/images/undecided_n.gif);
|
||||
}
|
||||
|
||||
.smiley > .menu-iconic-left {
|
||||
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#italicButton
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/italic.gif");
|
||||
}
|
||||
|
||||
#italicButton[disabled="true"],
|
||||
#italicButton[disabled="true"]:hover,
|
||||
#italicButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/italic-disabled.gif");
|
||||
}
|
||||
|
||||
#italicButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/italic-hover.gif");
|
||||
}
|
||||
|
||||
#italicButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/italic-hover-active.gif");
|
||||
}
|
||||
|
||||
#underlineButton
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/underline.gif");
|
||||
}
|
||||
|
||||
#underlineButton[disabled="true"],
|
||||
#underlineButton[disabled="true"]:hover,
|
||||
#underlineButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/underline-disabled.gif");
|
||||
}
|
||||
|
||||
#underlineButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/underline-hover.gif");
|
||||
}
|
||||
|
||||
#underlineButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/underline-hover-active.gif");
|
||||
}
|
||||
|
||||
#DecreaseFontSizeButton
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/dec-font-size.gif");
|
||||
}
|
||||
|
||||
#DecreaseFontSizeButton[disabled="true"],
|
||||
#DecreaseFontSizeButton[disabled="true"]:hover,
|
||||
#DecreaseFontSizeButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/dec-font-size-disabled.gif");
|
||||
}
|
||||
|
||||
#DecreaseFontSizeButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/dec-font-size-hover.gif");
|
||||
}
|
||||
|
||||
#DecreaseFontSizeButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/dec-font-size-hover-active.gif");
|
||||
}
|
||||
|
||||
#IncreaseFontSizeButton
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/inc-font-size.gif");
|
||||
}
|
||||
|
||||
#IncreaseFontSizeButton[disabled="true"],
|
||||
#IncreaseFontSizeButton[disabled="true"]:hover,
|
||||
#IncreaseFontSizeButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/inc-font-size-disabled.gif");
|
||||
}
|
||||
|
||||
#IncreaseFontSizeButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/inc-font-size-hover.gif");
|
||||
}
|
||||
|
||||
#IncreaseFontSizeButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/inc-font-size-hover-active.gif");
|
||||
}
|
||||
|
||||
#ulButton
|
||||
{
|
||||
list-style-image :url("chrome://editor/skin/images/bullets.gif");
|
||||
}
|
||||
|
||||
#ulButton[disabled="true"],
|
||||
#ulButton[disabled="true"]:hover,
|
||||
#ulButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/bullets-disabled.gif");
|
||||
}
|
||||
|
||||
#ulButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/bullets-hover.gif");
|
||||
}
|
||||
|
||||
#ulButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/bullets-hover-active.gif");
|
||||
}
|
||||
|
||||
#olButton
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/numbers.gif");
|
||||
}
|
||||
|
||||
#olButton[disabled="true"],
|
||||
#olButton[disabled="true"]:hover,
|
||||
#olButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/numbers-disabled.gif");
|
||||
}
|
||||
|
||||
#olButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/numbers-hover.gif");
|
||||
}
|
||||
|
||||
#olButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/numbers-hover-active.gif");
|
||||
}
|
||||
|
||||
#outdentButton
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/outdent.gif");
|
||||
}
|
||||
|
||||
#outdentButton[disabled="true"],
|
||||
#outdentButton[disabled="true"]:hover,
|
||||
#outdentButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/outdent-disabled.gif");
|
||||
}
|
||||
|
||||
#outdentButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/outdent-hover.gif");
|
||||
}
|
||||
|
||||
#outdentButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/outdent-hover-active.gif");
|
||||
}
|
||||
|
||||
#indentButton
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/indent.gif");
|
||||
}
|
||||
|
||||
#indentButton[disabled="true"],
|
||||
#indentButton[disabled="true"]:hover,
|
||||
#indentButton[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/indent-disabled.gif");
|
||||
}
|
||||
|
||||
#indentButton:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/indent-hover.gif");
|
||||
}
|
||||
|
||||
#indentButton:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/indent-hover-active.gif");
|
||||
}
|
||||
|
||||
#AlignPopupButton {
|
||||
list-style-image : url("chrome://editor/skin/images/align.gif");
|
||||
}
|
||||
|
||||
#AlignPopupButton:hover {
|
||||
list-style-image : url("chrome://editor/skin/images/align-hover.gif");
|
||||
}
|
||||
|
||||
#AlignPopupButton:hover:active,
|
||||
#AlignPopupButton[open="true"] {
|
||||
list-style-image : url("chrome://editor/skin/images/align-hover-active.gif");
|
||||
}
|
||||
|
||||
#AlignPopupButton[disabled="true"],
|
||||
#AlignPopupButton[disabled="true"]:hover,
|
||||
#AlignPopupButton[disabled="true"]:hover:active {
|
||||
list-style-image : url("chrome://editor/skin/images/align-disabled.gif");
|
||||
}
|
||||
|
||||
#InsertPopupButton {
|
||||
list-style-image : url("chrome://editor/skin/images/insert.gif");
|
||||
}
|
||||
|
||||
#InsertPopupButton:hover {
|
||||
list-style-image : url("chrome://editor/skin/images/insert-hover.gif");
|
||||
}
|
||||
|
||||
#InsertPopupButton:hover:active,
|
||||
#InsertPopupButton[open="true"] {
|
||||
list-style-image : url("chrome://editor/skin/images/insert-hover-active.gif");
|
||||
}
|
||||
|
||||
#InsertPopupButton[disabled="true"],
|
||||
#InsertPopupButton[disabled="true"]:hover,
|
||||
#InsertPopupButton[disabled="true"]:hover:active {
|
||||
list-style-image : url("chrome://editor/skin/images/insert-disabled.gif");
|
||||
}
|
||||
|
||||
#text-align-left,
|
||||
#align-left-button
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/left.gif");
|
||||
}
|
||||
|
||||
#text-align-left[disabled="true"],
|
||||
#text-align-left[disabled="true"]:hover,
|
||||
#text-align-left[disabled="true"]:hover:active,
|
||||
#align-left-button[disabled="true"],
|
||||
#align-left-button[disabled="true"]:hover,
|
||||
#align-left-button[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/left-disabled.gif");
|
||||
}
|
||||
|
||||
#text-align-left:hover,
|
||||
#align-left-button:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/left-hover.gif");
|
||||
}
|
||||
|
||||
#text-align-left:hover:active,
|
||||
#align-left-button:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/left-hover-active.gif");
|
||||
}
|
||||
|
||||
#text-align-center,
|
||||
#align-center-button
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/center.gif");
|
||||
}
|
||||
|
||||
#text-align-center[disabled="true"],
|
||||
#text-align-center[disabled="true"]:hover,
|
||||
#text-align-center[disabled="true"]:hover:active,
|
||||
#align-center-button[disabled="true"],
|
||||
#align-center-button[disabled="true"]:hover,
|
||||
#align-center-button[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/center-disabled.gif");
|
||||
}
|
||||
|
||||
#text-align-center:hover,
|
||||
#align-center-button:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/center-hover.gif");
|
||||
}
|
||||
|
||||
#text-align-center:hover:active,
|
||||
#align-center-button:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/center-hover-active.gif");
|
||||
}
|
||||
|
||||
#text-align-right,
|
||||
#align-right-button
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/right.gif");
|
||||
}
|
||||
|
||||
#text-align-right[disabled="true"],
|
||||
#text-align-right[disabled="true"]:hover,
|
||||
#text-align-right[disabled="true"]:hover:active
|
||||
#align-right-button[disabled="true"],
|
||||
#align-right-button[disabled="true"]:hover,
|
||||
#align-right-button[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/right-disabled.gif");
|
||||
}
|
||||
|
||||
#text-align-right:hover,
|
||||
#align-right-button:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/right-hover.gif");
|
||||
}
|
||||
|
||||
#text-align-right:hover:active,
|
||||
#align-right-button:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/right-hover-active.gif");
|
||||
}
|
||||
|
||||
#text-align-justify, #align-justify-button
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/justify.gif");
|
||||
}
|
||||
|
||||
#text-align-justify[disabled="true"],
|
||||
#text-align-justify[disabled="true"]:hover,
|
||||
#text-align-justify[disabled="true"]:hover:active
|
||||
#align-justify-button[disabled="true"],
|
||||
#align-justify-button[disabled="true"]:hover,
|
||||
#align-justify-button[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/justify-disabled.gif");
|
||||
}
|
||||
|
||||
#text-align-justify:hover,
|
||||
#align-justify-button:hover
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/justify-hover.gif");
|
||||
}
|
||||
|
||||
#text-align-justify:hover:active,
|
||||
#align-justify-button:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://editor/skin/images/justify-hover-active.gif");
|
||||
}
|
||||
|
||||
.ColorPickerLabel
|
||||
{
|
||||
border : 1px inset white;
|
||||
margin : 0px;
|
||||
padding : 2px;
|
||||
}
|
||||
|
||||
.color-button
|
||||
{
|
||||
border : 1px inset #CCCCCC;
|
||||
padding : 0px;
|
||||
width : 14px;
|
||||
height : 12px;
|
||||
margin : 2px;
|
||||
}
|
||||
|
||||
.color-button:hover
|
||||
{
|
||||
border : 1px solid #000000;
|
||||
}
|
||||
|
||||
#TextColorButton
|
||||
{
|
||||
margin : 2px 9px 9px 2px;
|
||||
}
|
||||
|
||||
#BackgroundColorButton
|
||||
{
|
||||
margin : 9px 2px 2px 9px;
|
||||
}
|
||||
|
Загрузка…
Ссылка в новой задаче