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.

Fix checkboxes on mobile view, remove some dead css (#30308)

Fix the checkbox issues in
https://github.com/go-gitea/gitea/issues/30303 which were existing
problems with these selectors, but made visible with
https://github.com/go-gitea/gitea/pull/30162.

There is a lot of dead/useless CSS in `form.css`, I only fixed the two
problems and remove CSS that was definitely not in use or needed.

<img width="369" alt="Screenshot 2024-04-06 at 18 00 08"
src="https://github.com/go-gitea/gitea/assets/115237/720f178b-1b22-48d4-8704-becb8ce66129">
<img width="405" alt="Screenshot 2024-04-06 at 18 00 28"
src="https://github.com/go-gitea/gitea/assets/115237/61c0f8ec-34af-46c5-a3fa-7c5c4d30c7d2">

Co-authored-by: Giteabot <teabot@gitea.io>
(cherry picked from commit 644ade5ae6805a3db063b3f81a596febe49bacaf)

authored by

silverwind
Giteabot
and committed by
Gergely Nagy
0bd1e136 9b8de157

+4 -26
+4 -26
web_src/css/form.css
··· 249 249 .user.signup form .optional .title { 250 250 margin-left: 250px !important; 251 251 } 252 - .user.activate form .inline.field > input, 253 - .user.forgot.password form .inline.field > input, 254 - .user.reset.password form .inline.field > input, 255 - .user.link-account form .inline.field > input, 256 - .user.signin form .inline.field > input, 257 - .user.signup form .inline.field > input, 258 - .user.activate form .inline.field > textarea, 259 - .user.forgot.password form .inline.field > textarea, 260 - .user.reset.password form .inline.field > textarea, 261 - .user.link-account form .inline.field > textarea, 262 - .user.signin form .inline.field > textarea, 263 - .user.signup form .inline.field > textarea, 264 - .oauth-login-link { 265 - width: 50%; 266 - } 267 252 } 268 253 269 254 @media (max-width: 767.98px) { ··· 310 295 .user.reset.password form .inline.field > label, 311 296 .user.link-account form .inline.field > label, 312 297 .user.signin form .inline.field > label, 313 - .user.signup form .inline.field > label, 314 - .user.activate form input, 315 - .user.forgot.password form input, 316 - .user.reset.password form input, 317 - .user.link-account form input, 318 - .user.signin form input, 319 - .user.signup form input, 320 - .oauth-login-link { 298 + .user.signup form .inline.field > label { 321 299 width: 100% !important; 322 300 } 323 301 } ··· 435 413 .repository.new.repo form label, 436 414 .repository.new.migrate form label, 437 415 .repository.new.fork form label, 438 - .repository.new.repo form input, 439 - .repository.new.migrate form input, 440 - .repository.new.fork form input, 416 + .repository.new.repo form .inline.field > input, 417 + .repository.new.migrate form .inline.field > input, 418 + .repository.new.fork form .inline.field > input, 441 419 .repository.new.fork form .field a, 442 420 .repository.new.repo form .selection.dropdown, 443 421 .repository.new.migrate form .selection.dropdown,