~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/themes/classic/global/mac/autocomplete.css

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
30
/* ::::: autocomplete ::::: */
 
31
 
 
32
textbox {
 
33
  cursor: default;
 
34
  padding: 0;
 
35
}
 
36
 
 
37
.textbox-input-box {
 
38
  margin: 0 3px;
 
39
  -moz-box-align: center;
 
40
}
 
41
 
 
42
/* ::::: history button ::::: */
 
43
 
 
44
.autocomplete-history-dropmarker {
 
45
  -moz-box-align: center;
 
46
  -moz-box-pack: center;
 
47
  border: 2px solid;
 
48
  -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;
 
49
  -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
 
50
  -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
 
51
  -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;
 
52
  background-color: -moz-Dialog;
 
53
  padding: 1px;
 
54
  list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
 
55
}
 
56
 
 
57
.autocomplete-history-dropmarker[open="true"] {
 
58
  -moz-border-top-colors: ThreeDShadow ThreeDFace;
 
59
  -moz-border-right-colors: ThreeDShadow ThreeDFace;
 
60
  -moz-border-bottom-colors: ThreeDShadow ThreeDFace;
 
61
  -moz-border-left-colors: ThreeDShadow ThreeDFace;
 
62
  padding: 2px 0 0 2px;
 
63
}
 
64
 
 
65
/* ::::: autocomplete popups ::::: */
 
66
 
 
67
.autocomplete-result-popup,
 
68
.autocomplete-history-popup {
 
69
  border-width: 1px;
 
70
  -moz-border-top-colors: ThreeDDarkShadow;
 
71
  -moz-border-right-colors: ThreeDDarkShadow;
 
72
  -moz-border-bottom-colors: ThreeDDarkShadow;
 
73
  -moz-border-left-colors: ThreeDDarkShadow;
 
74
  padding: 0;
 
75
  background-color: -moz-Field !important;
 
76
}
 
77
 
 
78
.autocomplete-history-popup {
 
79
  max-height: 180px;
 
80
}
 
81
 
 
82
/* ::::: tree ::::: */
 
83
 
 
84
.autocomplete-tree {
 
85
  border: none;
 
86
  background-color: transparent !important;
 
87
}
 
88
 
 
89
.autocomplete-treecol {
 
90
  -moz-appearance: none;
 
91
  margin: 0 !important;
 
92
  border: none !important;
 
93
  padding: 0 !important;
 
94
}
 
95
 
 
96
.autocomplete-treebody::-moz-tree-cell-text {
 
97
  padding-left: 8px;
 
98
}
 
99
 
 
100
.autocomplete-treebody::-moz-tree-row(menuactive) {
 
101
  background-color: Highlight;
 
102
}
 
103
 
 
104
.autocomplete-treebody::-moz-tree-cell-text(menuactive)  {
 
105
  color: HighlightText !important;
 
106
}