aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2024-03-01 09:55:52 +0200
committerJan Tuomi <jan@jantuomi.fi>2024-12-21 19:43:13 +0200
commit409a62ba1ac1dd3a1d50907627991dfb7d350404 (patch)
tree6e986f75c2b5a72ffe8aec72420fee91323a931a /static
parent0800a94b65b53dbceab79ed628ddfec45b05ebf6 (diff)
Improve checkbox styling, add clipboard copy button
Diffstat (limited to 'static')
-rw-r--r--static/styles.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
index 0ddd9f4..301834b 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -118,6 +118,11 @@ table {
background-color: #f8f6ff; /* Light grey background */
}
+.vote-table td input[type="checkbox"] {
+ margin: 0;
+ width: 100%;
+}
+
.danger-zone {
margin-top: 40px;
}
@@ -167,3 +172,16 @@ td.checkbox-field input[type="checkbox"] {
flex: initial;
margin-left: 0;
}
+
+input[type="checkbox"] {
+ height: 20px;
+ width: 20px;
+}
+
+button#share-link-copy {
+ padding: 0;
+ background: none;
+ color: black;
+ font-size: 25px;
+ line-height: 16px;
+} \ No newline at end of file