this repo has no description
0
fork

Configure Feed

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

Fix .header-account used wrongly

Obviously confused by my own code

+17 -14
+12 -9
src/app.css
··· 126 126 user-select: none; 127 127 transition: transform 0.5s ease-in-out; 128 128 user-select: none; 129 + 130 + .header-double-lines { 131 + font-size: 90% !important; 132 + cursor: pointer; 133 + 134 + div { 135 + font-weight: normal; 136 + color: var(--text-insignificant-color); 137 + } 138 + } 129 139 } 130 140 .deck > header[hidden] { 131 141 display: block; ··· 1965 1975 } 1966 1976 } 1967 1977 1968 - .header-account { 1969 - font-size: 90% !important; 1970 - cursor: pointer; 1971 - 1972 - @supports (animation-timeline: scroll()) { 1978 + @supports (animation-timeline: scroll()) { 1979 + .header-account { 1973 1980 animation: peekaboo-header 1s linear both; 1974 1981 animation-timeline: scroll(); 1975 1982 animation-range: 0 150px; 1976 1983 } 1977 - } 1978 - .header-account div { 1979 - font-weight: normal; 1980 - color: var(--text-insignificant-color); 1981 1984 } 1982 1985 1983 1986 /* LINK LISTS? */
+1 -1
src/cloak-mode.css
··· 11 11 .status .content-compact, 12 12 .account-container :is(header, main > *:not(.actions)), 13 13 .account-container :is(header, main > *:not(.actions)) *, 14 - .header-account, 14 + .header-double-lines, 15 15 .account-block { 16 16 text-decoration-thickness: 1.1em; 17 17 text-decoration-line: line-through;
+1 -1
src/pages/account-statuses.jsx
··· 446 446 title={`${account?.acct ? '@' + account.acct : 'Posts'}`} 447 447 titleComponent={ 448 448 <h1 449 - class="header-account" 449 + class="header-double-lines header-account" 450 450 // onClick={() => { 451 451 // states.showAccount = { 452 452 // account,
+1 -1
src/pages/hashtag.jsx
··· 135 135 title={title} 136 136 titleComponent={ 137 137 !!instance && ( 138 - <h1 class="header-account"> 138 + <h1 class="header-double-lines"> 139 139 <b>{hashtagTitle}</b> 140 140 <div>{instance}</div> 141 141 </h1>
+1 -1
src/pages/public.jsx
··· 77 77 key={instance + isLocal} 78 78 title={title} 79 79 titleComponent={ 80 - <h1 class="header-account"> 80 + <h1 class="header-double-lines"> 81 81 <b>{isLocal ? 'Local timeline' : 'Federated timeline'}</b> 82 82 <div>{instance}</div> 83 83 </h1>
+1 -1
src/pages/trending.jsx
··· 242 242 key={instance} 243 243 title={title} 244 244 titleComponent={ 245 - <h1 class="header-account"> 245 + <h1 class="header-double-lines"> 246 246 <b>Trending</b> 247 247 <div>{instance}</div> 248 248 </h1>