summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dijit/themes/nihilo/form/Common.css.commented.css
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dijit/themes/nihilo/form/Common.css.commented.css')
-rw-r--r--includes/js/dijit/themes/nihilo/form/Common.css.commented.css82
1 files changed, 82 insertions, 0 deletions
diff --git a/includes/js/dijit/themes/nihilo/form/Common.css.commented.css b/includes/js/dijit/themes/nihilo/form/Common.css.commented.css
new file mode 100644
index 0000000..39aa1a6
--- /dev/null
+++ b/includes/js/dijit/themes/nihilo/form/Common.css.commented.css
@@ -0,0 +1,82 @@
+
+/****
+ dijit.form.TextBox
+ dijit.form.ValidationTextBox
+ dijit.form.SerializableTextBox
+ dijit.form.RangeBoundTextBox
+ dijit.form.NumberTextBox
+ dijit.form.CurrencyTextBox
+ dijit.form.NumberSpinner
+ dijit.form.ComboBox (partial)
+ ****/
+
+.nihilo .dijitInputField INPUT,
+.nihilo .dijitTextBox,
+.nihilo .dijitComboBox,
+.nihilo .dijitSpinner {
+ margin: 0em 0.1em;
+}
+
+.nihilo .dijitTextBox,
+.nihilo .dijitComboBox,
+.nihilo .dijitSpinner,
+.nihilo .dijitInlineEditor input,
+.nihilo .dijitTextArea {
+ /* For all except dijit.form.NumberSpinner: the actual input element.
+ For TextBox, ComboBox, Spinner: the table that contains the input.
+ Otherwise the actual input element.
+ */
+ background:#fff url("../images/validationInputBg.png") repeat-x top left;
+ #background:#fff url('../images/validationInputBg.gif') repeat-x top left;
+ border:1px solid #d3d3d3;
+ line-height: normal;
+}
+
+.nihilo .dijitComboBox .dijitButtonNode {
+ padding: 0 0.2em;
+}
+.nihilo .dijitComboBox .dijitButtonNode,
+.nihilo .dijitSpinner .dijitButtonNode {
+ /* line between the input area and the drop down button */
+ border-color: #d3d3d3;
+ border-left: 1px solid #d3d3d3;
+}
+
+.nihilo .dijitTextBoxFocused,
+.nihilo .dijitComboBoxFocused,
+.nihilo .dijitSpinnerFocused {
+ /* input field when focused (ie: typing affects it) */
+ border-color:#b3b3b3;
+}
+.nihilo .dijitComboBoxFocused .dijitButtonNode, .nihilo .dijitSpinnerFocused .dijitButtonNode {
+ border-left-color:#d3d3d3;
+}
+.nihilo .dijitSpinnerFocused .dijitDownArrowButton {
+ border-top-color:#d3d3d3;
+}
+
+.nihilo .dijitError {
+ border-color:#b3b3b3;
+ background-color:#f9f7ba;
+ background-image:none;
+}
+.dj_ie6 .nihilo .dijitError INPUT {
+ /* background-color: transparent on an <input> doesn't work on IE6 */
+ background-color:#f9f7ba !important;
+}
+
+.nihilo .dijitErrorFocused {
+ background-color:#ff6;
+ background-image:none;
+}
+.dj_ie6 .nihilo .dijitErrorFocused INPUT {
+ /* background-color: transparent on an <input> doesn't work on IE6 */
+ background-color:#ff6 !important;
+}
+
+/* Validation errors */
+.nihilo .dijitValidationIcon {
+ /* prevent height change when widget goes from valid to invalid state */
+ width: 16px;
+ background: transparent url('../images/warning.png') no-repeat center center;
+}