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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/document/src/mac/platform-forms.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
/* ***** BEGIN LICENSE BLOCK *****
 
2
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
3
 *
 
4
 * The contents of this file are subject to the Mozilla Public License Version
 
5
 * 1.1 (the "License"); you may not use this file except in compliance with
 
6
 * the License. You may obtain a copy of the License at
 
7
 * http://www.mozilla.org/MPL/
 
8
 *
 
9
 * Software distributed under the License is distributed on an "AS IS" basis,
 
10
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
11
 * for the specific language governing rights and limitations under the
 
12
 * License.
 
13
 *
 
14
 * The Original Code is mozilla.org code.
 
15
 *
 
16
 * The Initial Developer of the Original Code is 
 
17
 * Netscape Communications Corporation.
 
18
 * Portions created by the Initial Developer are Copyright (C) 2003
 
19
 * the Initial Developer. All Rights Reserved.
 
20
 *
 
21
 * Contributor(s):
 
22
 *
 
23
 * Alternatively, the contents of this file may be used under the terms of
 
24
 * either the GNU General Public License Version 2 or later (the "GPL"), or 
 
25
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
26
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
27
 * of those above. If you wish to allow use of your version of this file only
 
28
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
29
 * use your version of this file under the terms of the MPL, indicate your
 
30
 * decision by deleting the provisions above and replace them with the notice
 
31
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
32
 * the provisions above, a recipient may use your version of this file under
 
33
 * the terms of any one of the MPL, the GPL or the LGPL.
 
34
 *
 
35
 * ***** END LICENSE BLOCK ***** */
 
36
 
 
37
@import url("resource://gre/res/forms.css");
 
38
 
 
39
/* makes sure enabled and disabled input and text area fields are drawn */
 
40
input,
 
41
textarea,
 
42
input[disabled],
 
43
textarea[disabled] {
 
44
  border-width: 2px;
 
45
  padding: 0px 1px 0px 1px;
 
46
  font-size: 11px;
 
47
  margin: 1px 1px 1px 1px;
 
48
  background-color: -moz-field;
 
49
}
 
50
 
 
51
select {
 
52
  -moz-appearance: menulist;
 
53
  margin: 1px 1px 1px 1px;
 
54
  background-color: transparent !important;
 
55
  color: -moz-FieldText !important;
 
56
  font-size: 11px;
 
57
  direction: ltr;
 
58
}
 
59
 
 
60
/* Need the "select[size][multiple]" selector to override the settings on
 
61
  'select[size="1"]', eg if one has <select size="1" multiple> */
 
62
select[size],
 
63
select[multiple],
 
64
select[size][multiple] {
 
65
  -moz-appearance: listbox;
 
66
  margin: 1px 1px 1px 1px;
 
67
  background-color: transparent !important;
 
68
}
 
69
 
 
70
select[size="0"],
 
71
select[size="1"] {
 
72
  -moz-appearance: menulist;
 
73
  margin: 1px 1px 1px 1px;
 
74
  background-color: transparent !important;
 
75
}
 
76
 
 
77
/* make sure nothing paints for the menulist button, since the button is
 
78
  painted as part of the menulist. */
 
79
select > input[type="button"],
 
80
select > input[type="button"]:active {
 
81
  background-image: none !important;
 
82
}
 
83
 
 
84
option[disabled],
 
85
optgroup[disabled],
 
86
select[disabled] {
 
87
  color: GrayText !important;
 
88
}
 
89
 
 
90
/* margins makes sure they are aligned with the text baseline */
 
91
input[type="checkbox"] {
 
92
  -moz-appearance: checkbox-small;
 
93
  width: 15px;
 
94
  height: 15px;
 
95
  margin: 1px 2px 0px 3px;
 
96
}
 
97
 
 
98
input[type="radio"] {
 
99
  -moz-appearance: radio-small;
 
100
  width: 15px;
 
101
  height: 16px;
 
102
  margin: 1px 2px -3px 3px;
 
103
}
 
104
 
 
105
input[type="reset"],
 
106
input[type="button"],
 
107
input[type="submit"],
 
108
input[type="reset"]:active:hover,
 
109
input[type="button"]:active:hover,
 
110
input[type="submit"]:active:hover {
 
111
  -moz-appearance: button-small;
 
112
  font-size: 11px;
 
113
  margin: 2px 1px 2px 1px;
 
114
  padding: 0;
 
115
  border-width: 2px 8px 2px 8px;
 
116
  color: -moz-FieldText !important;
 
117
  min-width: 24px;
 
118
}
 
119
 
 
120
/* makes sure diabled buttons have the same style as enabled buttons */
 
121
input[type="reset"][disabled]:active,
 
122
input[type="reset"][disabled],
 
123
input[type="button"][disabled]:active,
 
124
input[type="button"][disabled],
 
125
input[type="submit"][disabled]:active,
 
126
input[type="submit"][disabled] {
 
127
  margin: 2px 1px 2px 1px;
 
128
  padding: 0;
 
129
  border-width: 2px 8px 2px 8px;
 
130
  min-width: 24px;
 
131
  color: GrayText !important;
 
132
}
 
133
 
 
134
/* this draws the square button */
 
135
button,
 
136
button[disabled],
 
137
button:active:hover,
 
138
button[disabled]:active {
 
139
  -moz-appearance: none;
 
140
}
 
141
 
 
142
/* this turns off the mozilla focus ring shown inside clicked or selecetd buttons */
 
143
input[type="reset"]::-moz-focus-inner,
 
144
input[type="button"]::-moz-focus-inner,
 
145
input[type="submit"]::-moz-focus-inner,
 
146
input[type="file"] > input[type="button"]::-moz-focus-inner {
 
147
  border: 0;
 
148
}
 
149