this repo has no description
0
fork

Configure Feed

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

Slight adjustments to status actions

+14
+14
src/components/status.css
··· 1924 1924 transform-origin: right center; 1925 1925 transition: all 0.15s ease-out 0.3s, border-color 0.3s ease-out; 1926 1926 1927 + @media (hover: hover) { 1928 + transition: border-color 0.3s ease-out; 1929 + } 1930 + 1927 1931 button.plain { 1928 1932 color: var(--text-insignificant-color); 1929 1933 backdrop-filter: none; ··· 1973 1977 .status-focus:has(&):has(.status:hover) { 1974 1978 transition: background-color 0.1s ease-out 0.3s; 1975 1979 background-color: var(--bg-faded-blur-color); 1980 + } 1981 + } 1982 + @media (pointer: fine) and (hover: hover) { 1983 + .status:has(&):hover { 1984 + /* background-color: var(--bg-faded-blur-color); */ 1985 + background-image: linear-gradient( 1986 + -140deg, 1987 + var(--bg-faded-color), 1988 + transparent 75% 1989 + ); 1976 1990 } 1977 1991 } 1978 1992