summaryrefslogtreecommitdiffstats
path: root/style/default.css
diff options
context:
space:
mode:
Diffstat (limited to 'style/default.css')
-rw-r--r--style/default.css16
1 files changed, 15 insertions, 1 deletions
diff --git a/style/default.css b/style/default.css
index 99c4321f..19e1ba08 100644
--- a/style/default.css
+++ b/style/default.css
@@ -586,15 +586,18 @@ it only applies if they're in a container that has the checkbox class */
table.slx-ellipsis {
width:100%;
table-layout: fixed;
+ margin: 0;
+ border-collapse: collapse;
}
table.slx-ellipsis td {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
+ padding: 0;
}
-div.disabled, ul.nav > li.disabled {
+div.disabled, ul.nav > li.disabled, label.disabled {
cursor: not-allowed;
}
@@ -617,3 +620,14 @@ div.disabled-hack {
padding: 0;
display: inline-block;
}
+
+label.disabled {
+ color: #888;
+}
+
+/* Override for selectize.js which renders disabled inputs not like bootstrap */
+.selectize-input.disabled, .selectize-input.disabled * {
+ cursor: not-allowed !important;
+ background-color: #eee !important;
+ opacity: 1 !important;
+} \ No newline at end of file