home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Complet / thunderbird / chrome / qute.jar / skin / classic / global / splitter.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2003-07-10  |  1.8 KB  |  59 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. /* ===== splitter.css ===================================================
  25.   == Styles used by the XUL splitter element.
  26.   ======================================================================= */
  27.  
  28. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  29.  
  30. /* ::::: splitter (vertical) ::::: */
  31.  
  32. splitter {
  33.   -moz-box-align: center;
  34.   -moz-box-pack: center;
  35.   cursor: e-resize;
  36.   border-width: 0 2px;
  37.   border-style: solid;
  38.   -moz-border-left-colors: ThreeDShadow ThreeDHighlight;
  39.   -moz-border-right-colors: ThreeDDarkShadow ThreeDFace;
  40.   min-width: 6px;
  41.   background-color: ThreeDFace;
  42. }
  43.  
  44. /* ::::: splitter (horizontal) ::::: */
  45.  
  46. splitter[orient="vertical"] {
  47.   cursor: n-resize;
  48.   border-width: 2px 0;
  49.   -moz-border-top-colors: ThreeDShadow ThreeDHighlight;
  50.   -moz-border-bottom-colors: ThreeDDarkShadow ThreeDFace;
  51.   min-height: 6px;
  52. }
  53.  
  54. /* ::::: splitter grippy ::::: */
  55.  
  56. grippy {
  57.   display: none;
  58. }
  59.