logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 9d76fcc425abe1236304c270765ffdb4e6d0ba6e
parent a378c999b78c9138abb8ea1982dca2f976381f10
Author: Henry Jameson <me@hjkos.com>
Date:   Tue, 16 Jul 2024 21:55:57 +0300

fix admin combo-dropdowns styles

Diffstat:

Msrc/App.scss9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/App.scss b/src/App.scss @@ -671,7 +671,8 @@ option { display: inline-flex; vertical-align: middle; - > * { + > *, + > * .button-default { --_roundness-left: 0; --_roundness-right: 0; @@ -679,11 +680,13 @@ option { flex: 1 1 auto; } - > *:first-child { + > *:first-child, + > *:first-child .button-default { --_roundness-left: var(--roundness); } - > *:last-child { + > *:last-child, + > *:last-child .button-default { --_roundness-right: var(--roundness); } }