diff options
| author | winter | 2025-03-21 20:22:56 +0000 |
|---|---|---|
| committer | winter | 2025-03-21 20:22:56 +0000 |
| commit | be742b2b7af133c3c4dddb72939775f717bbfc97 (patch) | |
| tree | 5f09fa71c259a995fc465af204068714a65bc386 /static/profile.css | |
| parent | a6f7ce85be666a86379eb4d044f2040b4d751dcf (diff) | |
improve appearance of poke form
Diffstat (limited to 'static/profile.css')
| -rw-r--r-- | static/profile.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/static/profile.css b/static/profile.css index a46a9a3..3634b23 100644 --- a/static/profile.css +++ b/static/profile.css @@ -55,6 +55,19 @@ gap: var(--spacing-double); } } + + details > summary { + background: var(--clr-secondary); + color: var(--clr-foreground-on-secondary); + font-weight: bold; + cursor: pointer; + border-radius: var(--border-radius); + padding: var(--spacing-single) var(--spacing-double); + width: max-content; + } + details[open]:has(.pokeForm) > summary { + border-radius: var(--border-radius) var(--border-radius) 0 0; + } } form.fullProfile { |
