diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-02-29 21:10:43 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2024-12-21 19:43:13 +0200 |
| commit | 5c64529e77f150f8b83930f17e792b2cb8e38a87 (patch) | |
| tree | 89b28f50812fb735dfdaa0bca24764959168d84d /static | |
| parent | 3661c687f0c54bd9f4e1075aa651bc612d634a13 (diff) | |
Add whole day mode, various improvements
Diffstat (limited to 'static')
| -rw-r--r-- | static/styles.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/static/styles.css b/static/styles.css index 229149c..0e538e8 100644 --- a/static/styles.css +++ b/static/styles.css @@ -43,13 +43,13 @@ input[type="submit"].yellow { } input[type="text"], -input[type="datetime-local"] { +input[type*="date"] { font-size: 16px; color: black; } input[type="text"]:disabled, -input[type="datetime-local"]:disabled { +input[type*="date"]:disabled { color: #666; } @@ -73,6 +73,10 @@ table { padding: 7px 5px; } +.vote-table th { + vertical-align: bottom; +} + .vote-table th span { display: block; } @@ -140,3 +144,12 @@ input[type="checkbox"] { input[type="checkbox"]:disabled { cursor: initial; } + +td.checkbox-field { + text-align: left; +} + +td.checkbox-field input[type="checkbox"] { + flex: initial; + margin-left: 0; +} |
