diff options
| author | 2025-10-23 15:13:40 +0700 | |
|---|---|---|
| committer | 2025-10-23 15:13:40 +0700 | |
| commit | 84c851eeb4c13042a928b6b6334675d126931a38 (patch) | |
| tree | cd5ea3ebdc654b7cb08e477d947fed3db7b57421 /static | |
| parent | 4b2da2abbc7376ce0de71a00b18b7091b00dbcd1 (diff) | |
| download | web-84c851eeb4c13042a928b6b6334675d126931a38.tar.gz web-84c851eeb4c13042a928b6b6334675d126931a38.zip | |
feat: cross out only if explicitly set
Diffstat (limited to 'static')
| -rw-r--r-- | static/input.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/static/input.css b/static/input.css index c3c10fd..739caa3 100644 --- a/static/input.css +++ b/static/input.css @@ -180,8 +180,8 @@ a:hover, .linklike:hover { text-decoration: underline; } -.disabled::before, -.htmx-request::before { +.crossable.disabled::before, +.crossable.htmx-request::before { content: ''; position: absolute; top: 0; @@ -196,8 +196,8 @@ a:hover, .linklike:hover { z-index: 25; } -form.disabled input, -form.htmx-request input { +form.crossable.disabled input, +form.crossable.htmx-request input { filter: grayscale(1); } |