home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / Chip_2004-04_cd1.bin / tema / mozilla / skin / ieskin-0.0.3-IE5.5-skinVersion1.5.xpi / ieskin.jar / global / splitter.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2004-01-05  |  2.5 KB  |  83 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-2001 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *   Joe Hewitt (hewitt@netscape.com)
  22.  */
  23.  
  24. /* Modified for IE Skin by Bamm Gabriana, Jan 2004 */
  25.  
  26. /* ===== splitter.css ===================================================
  27.   == Styles used by the XUL splitter element.
  28.   ======================================================================= */
  29.  
  30. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  31.  
  32. /* ::::: splitter (vertical) ::::: */
  33.  
  34. splitter {
  35.   -moz-box-align: center;
  36.   -moz-box-pack: center;
  37.   cursor: e-resize;
  38.   border: 2px solid;
  39.   -moz-border-top-colors: transparent;
  40.   -moz-border-right-colors: ThreeDHighlight ThreeDShadow;
  41.   -moz-border-bottom-colors: transparent;
  42.   -moz-border-left-colors: ThreeDShadow ThreeDHighlight;
  43.   min-width: 7px;
  44.   background-color: ThreeDFace;
  45. }
  46.  
  47. /* ::::: splitter (horizontal) ::::: */
  48.  
  49. splitter[orient="vertical"] {
  50.   cursor: n-resize;
  51.   -moz-border-top-colors: ThreeDShadow ThreeDHighlight;
  52.   -moz-border-right-colors: transparent;
  53.   -moz-border-bottom-colors: ThreeDHighlight ThreeDShadow;
  54.   -moz-border-left-colors: transparent;
  55.   min-height: 7px;
  56. }
  57.  
  58. /* ::::: splitter grippy ::::: */
  59.   
  60. grippy {
  61.   border-top: 1px solid ThreeDLightShadow;
  62.   border-right: none;
  63.   border-bottom: 1px solid ThreeDLightShadow;
  64.   border-left: none;
  65.   min-width: 3px;
  66.   min-height: 92px;
  67.   background-color: transparent;
  68.   cursor: default;
  69. }
  70.  
  71. grippy:hover {
  72.   background-color: ThreeDLightShadow;
  73. }
  74.  
  75. splitter[orient="vertical"] > grippy {
  76.   border-top: none;
  77.   border-right: 1px solid ThreeDLightShadow;
  78.   border-bottom: none;
  79.   border-left: 1px solid ThreeDLightShadow;
  80.   min-width: 92px;
  81.   min-height: 3px;
  82. }
  83.