]> git.pond.sub.org Git - eow/blob - static/dojo-release-1.1.1/dijit/themes/nihilo/form/Common.css.commented.css
Comment class stub
[eow] / static / dojo-release-1.1.1 / dijit / themes / nihilo / form / Common.css.commented.css
1
2 /****
3                 dijit.form.TextBox
4                 dijit.form.ValidationTextBox
5                 dijit.form.SerializableTextBox
6                 dijit.form.RangeBoundTextBox
7                 dijit.form.NumberTextBox
8                 dijit.form.CurrencyTextBox
9                 dijit.form.NumberSpinner
10                 dijit.form.ComboBox (partial)
11  ****/
12
13 .nihilo .dijitInputField INPUT,
14 .nihilo .dijitTextBox,
15 .nihilo .dijitComboBox,
16 .nihilo .dijitSpinner {
17         margin: 0em 0.1em;
18 }
19
20 .nihilo .dijitTextBox,
21 .nihilo .dijitComboBox,
22 .nihilo .dijitSpinner,
23 .nihilo .dijitInlineEditor input,
24 .nihilo .dijitTextArea {
25         /*      For all except dijit.form.NumberSpinner:  the actual input element.
26                 For TextBox, ComboBox, Spinner: the table that contains the input.
27                 Otherwise the actual input element.
28         */
29         background:#fff url("../images/validationInputBg.png") repeat-x top left;
30         #background:#fff url('../images/validationInputBg.gif') repeat-x top left;
31         border:1px solid #d3d3d3;
32         line-height: normal;
33 }
34
35 .nihilo .dijitComboBox .dijitButtonNode {
36         padding: 0 0.2em;
37 }
38 .nihilo .dijitComboBox .dijitButtonNode,
39 .nihilo .dijitSpinner .dijitButtonNode {
40         /* line between the input area and the drop down button */
41         border-color: #d3d3d3;
42         border-left: 1px solid #d3d3d3;
43 }
44
45 .nihilo .dijitTextBoxFocused,
46 .nihilo .dijitComboBoxFocused,
47 .nihilo .dijitSpinnerFocused {
48         /* input field when focused (ie: typing affects it) */
49         border-color:#b3b3b3;
50 }
51 .nihilo .dijitComboBoxFocused .dijitButtonNode, .nihilo .dijitSpinnerFocused .dijitButtonNode {
52         border-left-color:#d3d3d3;
53 }
54 .nihilo .dijitSpinnerFocused .dijitDownArrowButton {
55         border-top-color:#d3d3d3;
56 }
57
58 .nihilo .dijitError {
59         border-color:#b3b3b3;
60         background-color:#f9f7ba;
61         background-image:none;
62 }
63 .dj_ie6 .nihilo .dijitError INPUT {
64         /* background-color: transparent on an <input> doesn't work on IE6 */
65         background-color:#f9f7ba !important;
66 }
67
68 .nihilo .dijitErrorFocused {
69         background-color:#ff6;
70         background-image:none;
71 }
72 .dj_ie6 .nihilo .dijitErrorFocused INPUT {
73         /* background-color: transparent on an <input> doesn't work on IE6 */
74         background-color:#ff6 !important;
75 }
76
77 /* Validation errors  */
78 .nihilo .dijitValidationIcon {
79         /* prevent height change when widget goes from valid to invalid state */
80         width: 16px;
81         background: transparent url('../images/warning.png') no-repeat center center;
82 }