this repo has no description
0
fork

Configure Feed

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

There are lists?

Somehow Mastodon allows additional HTML from another Fediverse instance called Bovine

+11 -5
+5 -5
src/app.css
··· 709 709 color: var(--carousel-color); 710 710 text-shadow: 0 1px var(--bg-color); 711 711 } 712 - .status-carousel ul { 712 + .status-carousel > ul { 713 713 display: flex; 714 714 overflow-x: auto; 715 715 overflow-y: hidden; ··· 721 721 align-items: flex-start; 722 722 counter-reset: index; 723 723 } 724 - .status-carousel ul > li { 724 + .status-carousel > ul > li { 725 725 scroll-snap-align: center; 726 726 scroll-snap-stop: always; 727 727 flex-shrink: 0; ··· 736 736 counter-increment: index; 737 737 position: relative; 738 738 } 739 - .status-carousel ul > li:is(:empty, :has(> a:empty)) { 739 + .status-carousel > ul > li:is(:empty, :has(> a:empty)) { 740 740 display: none; 741 741 } 742 742 @media (hover: hover) or (pointer: fine) or (min-width: 40em) { 743 - .status-carousel ul { 743 + .status-carousel > ul { 744 744 scroll-snap-type: none; 745 745 } 746 746 } ··· 762 762 .status-carousel.boosts-carousel .status-reblog { 763 763 background-image: none; 764 764 } 765 - .status-carousel.boosts-carousel ul > li:before { 765 + .status-carousel.boosts-carousel > ul > li:before { 766 766 content: counter(index); 767 767 position: absolute; 768 768 left: 0;
+6
src/components/status.css
··· 514 514 padding: 0 0 0 8px; 515 515 border-left: 4px solid var(--link-faded-color); 516 516 } 517 + .status .content > ul, 518 + .status .content > div > ul { 519 + margin-block: min(0.75em, 12px); 520 + margin-inline: 0; 521 + padding-inline-start: 1em; 522 + } 517 523 .status .content .invisible { 518 524 display: none; 519 525 }