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.

Restore aligned grid column CSS (#30106)

Fixes #30097, regression from #29894.

(cherry picked from commit 30a561ce569fcb1dfc12edf658104a126281494d)

authored by

silverwind and committed by
Earl Warren
c7091d54 ef800a7f

+18
+18
web_src/css/modules/grid.css
··· 406 406 align-self: center !important; 407 407 } 408 408 409 + .ui[class*="left aligned"].grid > .column, 410 + .ui[class*="left aligned"].grid > .row > .column, 411 + .ui.grid > [class*="left aligned"].row > .column, 412 + .ui.grid > [class*="left aligned"].column.column, 413 + .ui.grid > .row > [class*="left aligned"].column.column { 414 + text-align: left; 415 + align-self: inherit; 416 + } 417 + 409 418 .ui[class*="center aligned"].grid > .column, 410 419 .ui[class*="center aligned"].grid > .row > .column, 411 420 .ui.grid > [class*="center aligned"].row > .column, ··· 416 425 } 417 426 .ui[class*="center aligned"].grid { 418 427 justify-content: center; 428 + } 429 + 430 + .ui[class*="right aligned"].grid > .column, 431 + .ui[class*="right aligned"].grid > .row > .column, 432 + .ui.grid > [class*="right aligned"].row > .column, 433 + .ui.grid > [class*="right aligned"].column.column, 434 + .ui.grid > .row > [class*="right aligned"].column.column { 435 + text-align: right; 436 + align-self: inherit; 419 437 } 420 438 421 439 .ui[class*="equal width"].grid > .column:not(.row),