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 / menu.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2005-07-29  |  5.8 KB  |  233 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.  
  25. /* ===== menu.css =======================================================
  26.   == Styles used by XUL menu-related elements.
  27.   ======================================================================= */
  28.  
  29. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  30.  
  31. /* ::::: menu/menuitem ::::: */
  32.  
  33. menu,
  34. menuitem {
  35.   -moz-box-align: center;
  36.   color: MenuText;
  37.   font: menu;
  38.   list-style-image: none;
  39.   -moz-image-region: auto;
  40. }
  41.  
  42. menuitem[default="true"] {
  43.   font-weight: bold;
  44. }
  45.  
  46. menu[disabled="true"], menuitem[disabled="true"],
  47. menu[_moz-menuactive="true"][disabled="true"],
  48. menuitem[_moz-menuactive="true"][disabled="true"] {
  49.   color: GrayText;
  50. }
  51.  
  52. /* ..... internal content .... */
  53.  
  54. .menu-text,
  55. .menu-iconic-left,
  56. .menu-iconic-text {
  57.   margin: 0px 2px 0px 0px !important;
  58.   color: inherit;
  59. }
  60.  
  61. .menu-text {
  62.   margin-left: 18px !important;
  63.   font-weight: inherit;
  64. }
  65.  
  66. .menu-accel,
  67. .menu-iconic-accel {
  68.   margin: 0px 2px 0px 7px !important;
  69.   padding-right: 14px;
  70.   color: inherit;
  71. }
  72.  
  73. .menu-iconic-left {
  74.   width: 16px;
  75. }
  76.  
  77. /* ..... menu arrow box ..... */
  78.  
  79. .menu-right {
  80.   margin: 0px 0px 0px 6px;
  81.   width: 8px;
  82.   list-style-image: url("chrome://global/skin/menu/Menu-arrow.png");
  83.   -moz-image-region: auto;
  84. }
  85.  
  86. .menu-right[_moz-menuactive="true"] {
  87.   list-style-image: url("chrome://global/skin/menu/Menu-arrow-hover.png");
  88.   -moz-image-region: auto;
  89. }
  90.  
  91. .menu-right[disabled="true"] {
  92.   list-style-image: url("chrome://global/skin/menu/Menu-arrow-disabled.png") !important;
  93.   -moz-image-region: auto;
  94. }
  95.  
  96. /* ::::: menu/menuitems in menubar ::::: */
  97.  
  98. menubar > menu {
  99.   border: 1px solid transparent;
  100.   padding: 2px 5px 2px 7px;
  101.   margin: 1px 0px 1px 0px;
  102. }
  103. menubar > menu[_moz-menuactive="true"] {
  104.   border-top: 1px solid ThreeDHighlight;
  105.   border-right: 1px solid ThreeDShadow;
  106.   border-bottom: 1px solid ThreeDShadow;
  107.   border-left: 1px solid ThreeDHighlight;
  108. }
  109. menubar > menu[_moz-menuactive="true"][open="true"] {
  110.   border-top: 1px solid ThreeDShadow;
  111.   border-right: 1px solid ThreeDHighlight;
  112.   border-bottom: 1px solid ThreeDHighlight;
  113.   border-left: 1px solid ThreeDShadow;
  114. }
  115.  
  116. /* ..... internal content .... */
  117.  
  118. .menubar-left {
  119.   margin: 0px 2px 0px 0px;
  120.   color: inherit;
  121. }
  122.  
  123. .menubar-text {
  124.   margin: 0px 2px 0px 0px !important;
  125.   color: inherit;
  126. }
  127.  
  128. /* ::::: menu/menuitems in popups ::::: */
  129.  
  130. menupopup > menu,
  131. popup > menu,
  132. menupopup > menuitem,
  133. popup > menuitem {
  134.   padding: 2px;
  135.   max-width: 42em;
  136. }
  137.  
  138. menupopup > menu[_moz-menuactive="true"],
  139. menupopup > menuitem[_moz-menuactive="true"],
  140. popup > menu[_moz-menuactive="true"],
  141. popup > menuitem[_moz-menuactive="true"] {
  142.   background-color: Highlight;
  143.   color: HighlightText;
  144. }
  145.  
  146. /* ::::: menu/menuitems in menulist popups ::::: */
  147.  
  148. .menulist-menupopup > menuitem,
  149. menulist > menupopup > menuitem,
  150. .menulist-menupopup > menu,
  151. menulist > menupopup > menu {
  152.   border: 1px solid transparent;
  153.   padding: 1px 30px 1px 5px;
  154.   max-width: none;
  155.   font: message-box;
  156.   color: -moz-FieldText;
  157. }
  158.  
  159. .menulist-menupopup > menuitem > .menu-iconic-left,
  160. menulist > menupopup > menuitem > .menu-iconic-left,
  161. .menulist-menupopup > menu > .menu-iconic-left,
  162. menulist > menupopup > menu > .menu-iconic-left {
  163.   display: none;
  164. }
  165.  
  166. menulist > menupopup > menuitem[_moz-menuactive="true"] {
  167.   border: 1px dotted #F5DB95;
  168. }
  169.  
  170. /* ::::: checkbox menuitem ::::: */
  171.  
  172. menuitem[checked="true"] {
  173.   list-style-image: url("chrome://global/skin/menu/menu-check.gif");
  174.   -moz-image-region: auto;
  175. }
  176.  
  177. menuitem[checked="true"][disabled="true"] {
  178.   list-style-image: url("chrome://global/skin/menu/menu-check-disabled.gif");
  179.   -moz-image-region: auto;
  180. }
  181.  
  182. menuitem[checked="true"][_moz-menuactive="true"] {
  183.   list-style-image: url("chrome://global/skin/menu/menu-check-hover.gif");
  184.   -moz-image-region: auto;
  185. }
  186.  
  187. /* ::::: radio menuitem ::::: */
  188.  
  189. menuitem[checked="true"][type="radio"] {
  190.   list-style-image: url("chrome://global/skin/menu/menu-radio.gif");
  191.   -moz-image-region: auto;
  192. }
  193.  
  194. menuitem[checked="true"][type="radio"][disabled="true"] {
  195.   list-style-image: url("chrome://global/skin/menu/menu-radio-disabled.gif");
  196.   -moz-image-region: auto;
  197. }
  198.  
  199. menuitem[checked="true"][type="radio"][_moz-menuactive="true"] {
  200.   list-style-image: url("chrome://global/skin/menu/menu-radio-hover.gif");
  201.   -moz-image-region: auto;
  202. }
  203.  
  204. /* ::::: menuseparator ::::: */
  205.  
  206. menuseparator {
  207.   margin: 2px 3px;
  208.   border-top: 1px solid ThreeDShadow;
  209.   border-bottom: 1px solid ThreeDHighlight;
  210. }
  211.  
  212. menulist > menupopup > menuseparator,
  213. .menulist-menupopup > menuseparator {
  214.   margin: 2px 0;
  215.   border-top: 1px solid #000000;
  216.   border-bottom: none;
  217. }
  218.  
  219. /* ::::: autocomplete ::::: */
  220.  
  221. .autocomplete-history-popup > menuitem {
  222.   max-width: none !important;
  223.   font: message-box;
  224. }
  225.  
  226. /* ::::: tree column picker ::::: */
  227.  
  228. .treecell-popupcell-menu {
  229.   margin-left: -2px;
  230.   list-style-image: url("chrome://global/skin/columnselect.gif");
  231.   -moz-image-region: auto;
  232. }
  233.