39b0552b6a
Some fixes for the CSS / Phosphor revamp - Corrected avatar position - Corrected various button/icon sizes - Change the way a status background is set - Improved icon-button disabled state - Improved contrast and light theme colours commitb307fa93b4Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 17:49:11 2025 +0200 [chore] lint commit1352425b81Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 17:46:42 2025 +0200 [chore] lint commit276480b5a4Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 17:46:32 2025 +0200 [bugfix] set direct message background commit4e5764a70bAuthor: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 17:44:46 2025 +0200 [bugfix] improve obviousness of disabled icon button state commitdec5bb66e7Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 16:52:55 2025 +0200 [chore] lint commit72869917abAuthor: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 16:52:44 2025 +0200 [bugfix] start work on status content spacing commit5aa8333f71Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 15:57:56 2025 +0200 lint commitdf0bb84ce4Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 15:57:48 2025 +0200 [bugfix] correctly set status background (on focus) fixes an issue where a weird gradient would show up in the status__info section commit2fab5ff2e7Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 09:40:28 2025 +0200 [bugfix] fix lint issues commit5d823b2195Author: Zoë Bijl <code@moiety.me> Date: Wed Oct 15 01:19:01 2025 +0200 [bugfix] set avatars to cover available space no more squashed avatars
23 lines
479 B
SCSS
23 lines
479 B
SCSS
/* 🚥 Status: Spoiler link */
|
|
.status__content__spoiler-link {
|
|
display: flex;
|
|
gap: 5px;
|
|
padding: 5px 8px;
|
|
border: 1px solid var(--color-accent-lines);
|
|
border-radius: 8px;
|
|
color: var(--color-accent-fg);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
background: var(--color-accent-bg);
|
|
transition: all 0.3s;
|
|
|
|
.gts-icon {
|
|
--size: 14px;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: var(--color-lines);
|
|
color: var(--color-fg);
|
|
}
|
|
}
|