зеркало из https://github.com/mozilla/pjs.git
46613...
This commit is contained in:
Родитель
8bf4868832
Коммит
bf95f5b0ce
|
@ -51,4 +51,3 @@ title
|
|||
{
|
||||
vertical-align : middle;
|
||||
}
|
||||
|
|
@ -122,5 +122,21 @@
|
|||
<xul:text class="menu-iconic-accel" inherits="acceltext:value"/>
|
||||
</content>
|
||||
</binding>
|
||||
|
||||
<binding id="largeheader" extends="xul:box">
|
||||
<content>
|
||||
<xul:box class="largeheader-box" flex="1">
|
||||
<xul:box class="largeheader-text-container" orient="vertical">
|
||||
<xul:spring flex="1"/>
|
||||
<xul:text class="largeheader-header-text" inherits="title:value" crop="right"/>
|
||||
<xul:html class="largeheader-desc-text" inherits="description:value"/>
|
||||
<xul:spring flex="1"/>
|
||||
</xul:box>
|
||||
<xul:box class="largeheader-icon-container" autostretch="never">
|
||||
<xul:image class="largeheader-icon" inherits="src"/>
|
||||
</xul:box>
|
||||
</xul:box>
|
||||
</content>
|
||||
</binding>
|
||||
|
||||
</bindings>
|
||||
|
|
|
@ -42,43 +42,25 @@
|
|||
**/
|
||||
.box-header
|
||||
{
|
||||
behavior : url(chrome://global/content/dialogBindings.xml#largeheader);
|
||||
behavior : url(chrome://global/skin/classicBindings.xml#largeheader);
|
||||
border-bottom : 1px solid threedhighlight;
|
||||
}
|
||||
|
||||
.box-header-header
|
||||
.largeheader-box
|
||||
{
|
||||
padding : 0px 0px 4px 5px;
|
||||
min-height : 34px;
|
||||
}
|
||||
|
||||
.box-header-text-box
|
||||
{
|
||||
vertical-align : middle;
|
||||
}
|
||||
|
||||
.box-header-text
|
||||
{
|
||||
color : white;
|
||||
font-size : large;
|
||||
font-weight : bold;
|
||||
text-decoration : underline;
|
||||
}
|
||||
|
||||
.box-header-icon-box
|
||||
{
|
||||
vertical-align : middle;
|
||||
}
|
||||
background-color : #FFFFFF;
|
||||
border-bottom : 1px solid threedshadow;
|
||||
}
|
||||
|
||||
.box-header-circle
|
||||
.largeheader-header-text
|
||||
{
|
||||
background-image : url("chrome://global/skin/button28-bg.gif");
|
||||
background-repeat : no-repeat;
|
||||
background-position : 50% 4px;
|
||||
background-color : transparent;
|
||||
min-width : 28px;
|
||||
margin : 1px 7px 1px 1px;
|
||||
height : 28px;
|
||||
width : 28px;
|
||||
font-weight : bold;
|
||||
margin-left : 23px;
|
||||
}
|
||||
|
||||
.largeheader-desc-text
|
||||
{
|
||||
margin-left : 44px;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -86,21 +68,9 @@
|
|||
**/
|
||||
.box-status
|
||||
{
|
||||
behavior : url(chrome://global/content/dialogBindings.xml#status);
|
||||
visibility : collapsed;
|
||||
}
|
||||
|
||||
.box-status-bg
|
||||
{
|
||||
padding : 1px 5px 1px 5px;
|
||||
min-height : 0px ! important;
|
||||
}
|
||||
|
||||
.box-status-text, .box-status-progress
|
||||
{
|
||||
color : #99cccc ! important;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Utility classes for use when combined headers/footers are used
|
||||
**/
|
||||
|
|
|
@ -132,7 +132,7 @@
|
|||
|
||||
.indent
|
||||
{
|
||||
margin-left : 20px;
|
||||
margin-left : 23px;
|
||||
}
|
||||
|
||||
.icon-dropmarker
|
||||
|
@ -149,3 +149,8 @@
|
|||
{
|
||||
margin : 3px 5px 4px 5px;
|
||||
}
|
||||
|
||||
.wizard-box
|
||||
{
|
||||
padding : 20px 44px 10px 44px;
|
||||
}
|
|
@ -57,3 +57,4 @@ install::
|
|||
$(MAKE_INSTALL) message-icon.gif $(DIST)\bin\chrome\skins\$(THEME)\global\skin
|
||||
$(MAKE_INSTALL) question-icon.gif $(DIST)\bin\chrome\skins\$(THEME)\global\skin
|
||||
$(MAKE_INSTALL) alert-icon.gif $(DIST)\bin\chrome\skins\$(THEME)\global\skin
|
||||
$(MAKE_INSTALL) dialogOverlay.css $(DIST)\bin\chrome\skins\$(THEME)\global\skin
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/* NEW WIDGET LANDING: <menulist> popup */
|
||||
|
||||
/* outer frame */
|
||||
|
@ -27,6 +26,7 @@
|
|||
border-top : 1px solid threeddarkshadow;
|
||||
border-right : 1px solid threedface;
|
||||
border-bottom : 1px solid threedface;
|
||||
user-focus : none;
|
||||
}
|
||||
|
||||
.menulist-display-box,
|
||||
|
@ -123,3 +123,35 @@
|
|||
width : 0px;
|
||||
border : none;
|
||||
}
|
||||
|
||||
/**
|
||||
* <menulist>s for things like mailnews addressing widget
|
||||
**/
|
||||
.menulist-compact
|
||||
{
|
||||
behavior : url("chrome://global/skin/menulistBindings.xml#menulist-compact");
|
||||
border-left : 1px solid threedhighlight;
|
||||
border-top : 1px solid threedhighlight;
|
||||
border-right : 1px solid threeddarkshadow;
|
||||
border-bottom : 1px solid threeddarkshadow;
|
||||
}
|
||||
|
||||
.menulist-compact-text
|
||||
{
|
||||
margin-right : 3px;
|
||||
}
|
||||
|
||||
.menulist-compact-internal-box
|
||||
{
|
||||
border-right : 1px solid threedshadow;
|
||||
border-bottom : 1px solid threedshadow;
|
||||
background-color : threedface;
|
||||
}
|
||||
|
||||
.menulist-compact-dropmarker
|
||||
{
|
||||
list-style-image : url("chrome://global/skin/scroll-down.gif");
|
||||
margin-left : 2px;
|
||||
}
|
||||
|
||||
|
|
@ -33,4 +33,15 @@
|
|||
</content>
|
||||
</binding>
|
||||
|
||||
<binding id="menulist-compact" extends="chrome://global/content/menulistBindings.xml#menulist">
|
||||
<content excludes="template,observes,menupopup" flex="1">
|
||||
<xul:box class="menulist-compact-internal-box" flex="1" autostretch="never">
|
||||
<xul:image class="menulist-compact-dropmarker" inherits="disabled"/>
|
||||
<xul:spring flex="1"/>
|
||||
<xul:text class="menulist-compact-text" inherits="value,accesskey,crop,disabled" crop="right"/>
|
||||
</xul:box>
|
||||
</content>
|
||||
</binding>
|
||||
|
||||
|
||||
</bindings>
|
|
@ -70,12 +70,18 @@ splitter:hover:active
|
|||
window[orient="vertical"] > splitter > grippy[collapse="before"],
|
||||
box[orient="vertical"] > splitter > grippy,
|
||||
box[orient="vertical"] > splitter > grippy[collapse="before"]
|
||||
{
|
||||
list-style-image : url("chrome://global/skin/grippy-vertical-before.gif");
|
||||
}
|
||||
|
||||
window[orient="vertical"] > splitter > grippy[collapse="after"],
|
||||
box[orient="vertical"] > splitter > grippy[collapse="after"]
|
||||
{
|
||||
list-style-image : url("chrome://global/skin/grippy-vertical-after.gif");
|
||||
}
|
||||
|
||||
window[orient="vertical"] > splitter[state="collapsed"] > grippy,
|
||||
box[orient="vertical"] > splitter[state="collapsed"] > grippy
|
||||
splitter[orient="vertical"][autostretch="never"]
|
||||
{
|
||||
list-style-image : url("chrome://global/skin/grippy-vertical-before.gif");
|
||||
text-align : center;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче