loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Replace box-shadow for `floating` dropdown as well (#26581)

Add `box-shadow` replacement to the `floating` dropdown variant as well,
which was missed in https://github.com/go-gitea/gitea/pull/26469. The
Fomantic style has `!important`, so this has to have too. Also made a
tiny adjustment to shadow color on dark theme.

<img width="305" alt="Screenshot 2023-08-18 at 16 40 34"
src="https://github.com/go-gitea/gitea/assets/115237/a0aac9cb-6393-4d69-b0b3-00eaac5ccf9f">
<img width="202" alt="Screenshot 2023-08-18 at 16 40 22"
src="https://github.com/go-gitea/gitea/assets/115237/0a5fa3aa-7452-4dbd-86ed-ccbc1c872ebb">

Co-authored-by: Giteabot <teabot@gitea.io>

authored by

silverwind
Giteabot
and committed by
GitHub
facdaee4 f6e77984

+5 -1
+4
web_src/css/base.css
··· 1204 1204 box-shadow: none; 1205 1205 } 1206 1206 1207 + /* replace fomantic popover box shadows */ 1207 1208 .ui.dropdown .menu, 1208 1209 .ui.upward.dropdown > .menu, 1209 1210 .ui.menu .dropdown.item .menu, ··· 1212 1213 .ui.selection.active.dropdown:hover .menu, 1213 1214 .ui.upward.active.selection.dropdown:hover .menu { 1214 1215 box-shadow: 0 6px 18px var(--color-shadow); 1216 + } 1217 + .ui.floating.dropdown .menu { 1218 + box-shadow: 0 6px 18px var(--color-shadow) !important; 1215 1219 } 1216 1220 1217 1221 .ui.dimmer {
+1 -1
web_src/css/themes/theme-arc-green.css
··· 211 211 --color-button: #1e252e; 212 212 --color-code-bg: #222733; 213 213 --color-code-sidebar-bg: #232834; 214 - --color-shadow: #00000060; 214 + --color-shadow: #00000058; 215 215 --color-secondary-bg: #2a2e3a; 216 216 --color-text-focus: #fff; 217 217 --color-expand-button: #3c404d;