summaryrefslogtreecommitdiff
path: root/styles
diff options
context:
space:
mode:
Diffstat (limited to 'styles')
-rw-r--r--styles/client/base.css1
-rw-r--r--styles/input.css11
2 files changed, 12 insertions, 0 deletions
diff --git a/styles/client/base.css b/styles/client/base.css
index e0b19d3..635fc78 100644
--- a/styles/client/base.css
+++ b/styles/client/base.css
@@ -158,6 +158,7 @@ div.settings {
display:flex;
flex-direction: column;
padding: 5px;
+ overflow-y: auto;
}
/* Table rules */
diff --git a/styles/input.css b/styles/input.css
index 87ee725..6f99fb5 100644
--- a/styles/input.css
+++ b/styles/input.css
@@ -433,6 +433,7 @@ div.input-title-wrapper::before
{
color: var(--main-color);
content: attr(data-title);
+ display: block;
}
div.input-title-wrapper
@@ -444,5 +445,15 @@ div.input-title-wrapper
padding: 5px;
}
+div.input-title-wrapper[type=checkbox]
+{
+ cursor: pointer;
+}
+
+div.input-title-wrapper[type=checkbox] > input
+{
+ pointer-events: none;
+}
+
/* End Input CSS */ \ No newline at end of file