home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / winscape.jar / skin / winscape / global / toolbarbutton.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2005-07-29  |  3.8 KB  |  129 lines

  1. /*
  2.  * The contents of this file are subject to the Netscape Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/NPL/
  6.  *
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  *
  12.  * The Original Code is Mozilla Communicator client code, released
  13.  * March 31, 1998.
  14.  *
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation. Portions created by Netscape are
  17.  * Copyright (C) 1998-1999 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *   Joe Hewitt (hewitt@netscape.com)
  22.  */
  23.  
  24. /* ===== toolbarbutton.css =====================================================
  25.   == Styles used by the XUL button element.
  26.   ======================================================================= */
  27.  
  28. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  29.  
  30. /* ::::: toolbarbutton ::::: */
  31.  
  32. toolbarbutton {
  33.   -moz-box-align: center;
  34.   -moz-box-pack: center;
  35.   padding: 0px;
  36.   font: message-box;
  37. }
  38.  
  39. .toolbarbutton-icon {
  40.   margin-right: 5px;
  41. }
  42.  
  43. .toolbarbutton-text {
  44.   margin: 0 !important;
  45.   text-align: center;
  46. }
  47.  
  48. toolbarbutton:hover,
  49. toolbarbutton[buttonover="true"] {
  50.   /*border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;*/
  51. }
  52.  
  53. toolbarbutton:hover:active,
  54. toolbarbutton[open="true"] {
  55.   border-color: ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow;
  56.   padding: 4px 2px 2px 4px;
  57. }
  58.  
  59. toolbarbutton[disabled="true"],
  60. toolbarbutton[disabled="true"]:hover,
  61. toolbarbutton[disabled="true"]:hover:active,
  62. toolbarbutton[disabled="true"][open="true"] {
  63.   border-color: transparent;
  64.   padding: 3px;
  65.   color: GrayText !important;
  66. }
  67.  
  68. /* ..... checked state ..... */
  69.  
  70. toolbarbutton[checked="true"] {
  71.   border-color: ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow !important;
  72.   padding: 4px 2px 2px 4px !important;
  73.   background-image: url("chrome://global/skin/toolbar/Lighten.png");
  74.   color: ButtonText;
  75. }
  76.  
  77. /* ::::: toolbarbutton menu ::::: */
  78.  
  79. .toolbarbutton-menu-dropmarker {
  80.     display: none;
  81.   /*list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");*/
  82.   -moz-image-region: auto; /* cut off inheritance */
  83. }
  84.  
  85. .toolbarbutton-menu-dropmarker[disabled="true"] {
  86.   list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
  87. }
  88.  
  89. /* ::::: toolbarbutton menu-button ::::: */
  90.  
  91. toolbarbutton[type="menu-button"] {
  92.   -moz-box-align: stretch;
  93.   -moz-box-orient: horizontal !important;
  94. }
  95.  
  96. toolbarbutton[type="menu-button"],
  97. toolbarbutton[type="menu-button"]:hover,
  98. toolbarbutton[type="menu-button"]:hover:active,
  99. toolbarbutton[type="menu-button"][open="true"],
  100. toolbarbutton[type="menu-button"][disabled="true"],
  101. toolbarbutton[type="menu-button"][disabled="true"]:hover,
  102. toolbarbutton[type="menu-button"][disabled="true"]:hover:active {
  103.   border-style: none;
  104.   padding: 0 !important;
  105. }
  106.  
  107. .toolbarbutton-menubutton-button {
  108.   -moz-box-align: center;
  109.   -moz-box-pack: center;
  110.   -moz-box-orient: vertical;
  111. }
  112.  
  113. /* .......... dropmarker ........s.. */
  114.  
  115. .toolbarbutton-menubutton-dropmarker {
  116.   -moz-box-align: center;
  117.   padding: 3px;
  118.   list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
  119.   -moz-image-region: auto; /* cut off inheritance */
  120. }
  121.  
  122. .toolbarbutton-menubutton-dropmarker[disabled="true"] {
  123.   list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif") !important;
  124. }
  125.  
  126. toolbarbutton[type="menu-button"][open="true"] > .toolbarbutton-menubutton-dropmarker,
  127. toolbarbutton[type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-dropmarker {
  128. }
  129.