]> git.wh0rd.org - tt-rss.git/blob - lib/dijit/themes/tundra/form/Common.css
upgrade dojo to 1.8.3 (refs #570)
[tt-rss.git] / lib / dijit / themes / tundra / form / Common.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 .tundra .dijitInputContainer input {
14 margin: 0 0.1em;
15 }
16
17 .tundra .dijitTextArea {
18 padding: 3px;
19 }
20
21 .tundra .dijitSelect .dijitButtonContents,
22 .tundra .dijitSelect,
23 .tundra .dijitTextBox {
24 /* For all except dijit.form.NumberSpinner: the actual input element.
25 For TextBox, ComboBox, Spinner: the div that contains the input.
26 Otherwise the actual input element.
27 */
28 background:#fff url("../images/validationInputBg.png") repeat-x top left;
29 #background:#fff url('../images/validationInputBg.gif') repeat-x top left;
30 }
31 .tundra .dijitSelect,
32 .tundra .dijitTextBox {
33 border:1px solid #b3b3b3;
34 }
35
36 .tundra .dijitSelect .dijitArrowButton,
37 .tundra .dijitComboBox .dijitButtonNode {
38 padding: 0 0.2em;
39 }
40 .tundra .dijitSelect .dijitButtonContents,
41 .tundra .dijitTextBox .dijitButtonNode {
42 /* line between the input area and the drop down button, and also between
43 * the up and down buttons of a spinner
44 */
45 border-color: #9b9b9b;
46 }
47
48 .tundra .dijitSelectFocused,
49 .tundra .dijitTextBoxFocused {
50 /* input field when focused (ie: typing affects it) */
51 border-color:#406b9b;
52 }
53 .tundra .dijitSelectFocused TD,
54 .tundra .dijitTextBoxFocused .dijitButtonNode {
55 border-color:#366dba;
56 }
57
58 .tundra .dijitError {
59 background-color:#f9f7ba;
60 background-image:none;
61 }
62
63 .tundra .dijitErrorFocused {
64 background-color:#f9f999;
65 background-image:none;
66 }
67
68 /* Validation errors */
69 .tundra .dijitValidationTextBoxError .dijitValidationIcon {
70 /* prevent height change when widget goes from valid to invalid state */
71 width: 16px;
72 background: transparent url('../images/warning.png') no-repeat center center;
73 }
74
75 /* The highlight is shown in the ComboBox menu. */
76 .tundra .dijitComboBoxHighlightMatch {
77 background-color:#a5beda;
78 }
79
80 .tundra .dijitFocusedLabel {
81 /* for checkboxes or radio buttons, hatch border around the corresponding label, to indicate focus */
82 outline: 1px dotted #666666;
83 }