home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / classic.jar / skin / classic / global / autocomplete.css next >
Cascading Style Sheet File  |  2003-06-08  |  3KB  |  108 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. /* ===== autocomplete.css =================================================
  25.   == Styles used by the autocomplete widget.
  26.   ======================================================================= */
  27.  
  28. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  29. @namespace html url("http://www.w3.org/1999/xhtml");
  30.  
  31. /* ::::: autocomplete ::::: */
  32.  
  33. textbox {
  34.   cursor: default;
  35.   padding: 0;
  36. }
  37.  
  38. .textbox-input-box {
  39.   margin: 0 3px;
  40.   -moz-box-align: center;
  41. }
  42.  
  43. /* ::::: history button ::::: */
  44.  
  45. .autocomplete-history-dropmarker {
  46.   -moz-box-align: center;
  47.   -moz-box-pack: center;
  48.   border: 2px solid;
  49.   -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;
  50.   -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
  51.   -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
  52.   -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;
  53.   background-color: -moz-Dialog;
  54.   padding: 1px;
  55.   list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
  56. }
  57.  
  58. .autocomplete-history-dropmarker[open="true"] {
  59.   -moz-border-top-colors: ThreeDShadow ThreeDFace;
  60.   -moz-border-right-colors: ThreeDShadow ThreeDFace;
  61.   -moz-border-bottom-colors: ThreeDShadow ThreeDFace;
  62.   -moz-border-left-colors: ThreeDShadow ThreeDFace;
  63.   padding: 2px 0 0 2px;
  64. }
  65.  
  66. /* ::::: autocomplete popups ::::: */
  67.  
  68. .autocomplete-result-popup,
  69. .autocomplete-history-popup {
  70.   border-width: 1px;
  71.   -moz-border-top-colors: ThreeDDarkShadow;
  72.   -moz-border-right-colors: ThreeDDarkShadow;
  73.   -moz-border-bottom-colors: ThreeDDarkShadow;
  74.   -moz-border-left-colors: ThreeDDarkShadow;
  75.   padding: 0;
  76.   background-color: -moz-Field !important;
  77. }
  78.  
  79. .autocomplete-history-popup {
  80.   max-height: 180px;
  81. }
  82.  
  83. /* ::::: tree ::::: */
  84.  
  85. .autocomplete-tree {
  86.   border: none;
  87.   background-color: transparent !important;
  88. }
  89.  
  90. .autocomplete-treecol {
  91.   -moz-appearance: none;
  92.   margin: 0 !important;
  93.   border: none !important;
  94.   padding: 0 !important;
  95. }
  96.  
  97. .autocomplete-treebody:-moz-tree-cell-text {
  98.   padding-left: 8px;
  99. }
  100.  
  101. .autocomplete-treebody:-moz-tree-row(menuactive) {
  102.   background-color: Highlight;
  103. }
  104.  
  105. .autocomplete-treebody:-moz-tree-cell-text(menuactive)  {
  106.   color: HighlightText !important;
  107. }
  108.