Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/styles/themes/darkorange/main.css')
-rw-r--r--frontends/php/styles/themes/darkorange/main.css55
1 files changed, 43 insertions, 12 deletions
diff --git a/frontends/php/styles/themes/darkorange/main.css b/frontends/php/styles/themes/darkorange/main.css
index d016b55c2de..2bb8777a899 100644
--- a/frontends/php/styles/themes/darkorange/main.css
+++ b/frontends/php/styles/themes/darkorange/main.css
@@ -416,23 +416,49 @@ span.link:hover{ color: #FF8800; }
span.darklink{ color: #AA5500; }span.darklink:hover{ color: #FF5500; }
/*//////////////// FORMS ////////////////////*/
-.input, .input[disabled]:hover, input.formlist[type="button"],
-div.calendar input[type="button"] {
- border: 1px solid #DFDFDF;
- background-color: #2F2F2F;
- color: #DFDFDF;
+.input, input.formlist[type="button"], div.calendar input[type="button"] {
+ border: 1px solid #dfdfdf;
+ background-color: #2f2f2f;
+ color: #fff;
}
-.input option { background: #2F2F2F; color: #FF5500; }
+.input option { background: #2f2f2f; color: #FF5500; }
.input:focus, input.formlist[type="button"]:focus, div.calendar input[type="button"]:focus
.input:hover, input.formlist[type="button"]:hover, div.calendar input[type="button"]:hover {
border-color: #FF5500; color: #FF5500;
}
-.input[readonly], .input[readonly]:hover{
-/* NOTE: Ignored by IE */
- border-color: #DFDFDF;
- background-color: #777777;
- color: #DFDFDF;
+.input[readonly], .input[disabled], .input[readonly]:hover, .input[disabled]:hover,
+input.input.formlist[type="button"][disabled], input.input.formlist[type="submit"][disabled] {
+ border-color: #444;
+ background-color: #2f2f2f;
+ /* ignored by IE for <select> */
+ color: #dfdfdf;
+}
+
+/* disabled <select> font color for IE 9+ */
+select[disabled="disabled"]::-ms-value {
+ background-color: #2f2f2f;
+ color: #dfdfdf;
+ border-color: #333;
+}
+
+select[disabled="disabled"] option { background-color: #2f2f2f; }
+
+.input.link_menu[disabled], .input.link_menu[disabled]:focus, .input.link_menu[disabled]:hover {
+ background-color: transparent;
+}
+
+/* disabled form buttons */
+.input.button[disabled]:hover {
+ background-color: #2f2f2f;
+ border-color: #dfdfdf;
+ color: #dfdfdf;
+}
+
+/* disabled save button */
+.jqueryinput.input.button[disabled]:hover {
+ border-color: #ff5500;
+ color: #dfdfdf;
}
ul.formlist li.new { background: #2F2F2F; }
@@ -440,6 +466,10 @@ ul.formlist li.new { background: #2F2F2F; }
.shadow {}
.shadow:hover{ -webkit-box-shadow: 0 0 6px #FF5500; -moz-box-shadow: 0 0 6px #FF5500; box-shadow: 0 0 6px #FF5500; }
+.shadow[disabled]:hover {
+ -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;
+}
+
.select { margin: 1px 4px 1px 1px; }
.button{ border-color: #FF5500; background: #2f2f2f; color: #FF5500; }
.button:hover { border-color: #2f2f2f; color: #2f2f2f; background: #FF5500; text-decoration: none; }
@@ -458,9 +488,10 @@ ul.formlist li.new { background: #2F2F2F; }
}
.link_menu[disabled], .link_menu[disabled]:hover{
- color: #DFDFDF;
+ color: #dfdfdf;
border: 0;
cursor: default;
+ background-color: #1a1a1a;
}
.column .widget .header{ border: 0;}