summaryrefslogtreecommitdiff
path: root/web/source/settings/style.css
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2024-08-21 10:43:43 +0200
committerLibravatar GitHub <noreply@github.com>2024-08-21 10:43:43 +0200
commitffcf6e73f731894d5d278e6fff1fc055b367f1fe (patch)
tree5845b5aded718276613b374ec93a05a2c1bebf3d /web/source/settings/style.css
parent[bugfix/frontend] Fix error on submitting domain perm with enter key (#3218) (diff)
downloadgotosocial-ffcf6e73f731894d5d278e6fff1fc055b367f1fe.tar.xz
[bugfix/frontend] Small safari + gnome web fixes (#3219)
* [bugfix/frontend] Small safari + gnome web fixes * wee * update comment
Diffstat (limited to 'web/source/settings/style.css')
-rw-r--r--web/source/settings/style.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/web/source/settings/style.css b/web/source/settings/style.css
index ad4b1c3c5..d34dd0eb7 100644
--- a/web/source/settings/style.css
+++ b/web/source/settings/style.css
@@ -374,6 +374,21 @@ section.with-sidebar > form {
flex-wrap: wrap;
gap: 0.4rem;
}
+
+ .select-wrapper {
+ /*
+ Selects are normalized in base.css to not have a down arrow on the side.
+ Overcome this on settings panel forms by replacing the down arrow.
+ */
+ position: relative;
+ &::after {
+ content: "▼";
+ font-size: 0.8rem;
+ top: 0.3rem;
+ right: 1rem;
+ position: absolute;
+ }
+ }
}
.form-flex {