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.

at forgejo 68 lines 1.4 kB view raw
1.repository .secondary-nav { 2 padding-top: 12px; 3} 4 5.repository .secondary-nav .fork-flag { 6 margin-top: 0.5rem; 7 font-size: 12px; 8} 9 10.repo-header { 11 display: flex; 12 flex-flow: row wrap; 13 justify-content: space-between; 14 gap: 0.5rem; 15 margin-bottom: 4px; 16} 17 18.repo-header .flex-item { 19 padding: 0; 20} 21 22.repo-header .flex-item-main { 23 flex: 0; 24 flex-basis: unset; 25} 26 27.repo-header .flex-item-trailing { 28 flex-wrap: nowrap; 29} 30 31.repo-buttons { 32 align-items: center; 33 display: flex; 34 flex-flow: row wrap; 35 word-break: keep-all; 36} 37 38.repo-buttons .ui.labeled.button > .label:hover { 39 color: var(--color-primary-light-2); 40 background: var(--color-light); 41} 42 43.repo-buttons button[disabled] ~ .label { 44 opacity: var(--opacity-disabled); 45 color: var(--color-text-dark); 46 background: var(--color-light-mimic-enabled) !important; 47} 48 49.repo-buttons button[disabled] ~ .label:hover { 50 color: var(--color-primary-dark-1); 51} 52 53.repo-buttons .ui.labeled.button.disabled { 54 pointer-events: inherit !important; 55} 56 57.repo-buttons .ui.labeled.button.disabled > .label { 58 color: var(--color-text-dark); 59 background: var(--color-light-mimic-enabled) !important; 60} 61 62.repo-buttons .ui.labeled.button.disabled > .label:hover { 63 color: var(--color-primary-dark-1); 64} 65 66.repo-buttons .ui.labeled.button.disabled > .button { 67 pointer-events: none !important; 68}