phanpy/src/app.css

2277 lines
54 KiB
CSS
Raw Normal View History

@import url('@szhsin/react-menu/dist/core.css');
@import url('toastify-js/src/toastify.css');
html,
body {
2022-12-10 09:14:48 +00:00
margin: 0;
padding: 0;
background-color: var(--bg-color);
2022-12-10 09:14:48 +00:00
color: var(--text-color);
2023-01-10 17:08:18 +00:00
overflow-x: hidden;
2022-12-10 09:14:48 +00:00
}
2023-01-30 13:54:30 +00:00
body {
touch-action: pan-x pan-y;
}
2022-12-10 09:14:48 +00:00
#app {
min-height: 100vh;
min-height: 100dvh;
2022-12-10 09:14:48 +00:00
display: flex;
align-items: center;
justify-content: center;
}
2023-04-23 13:37:42 +00:00
#app-standalone {
background-color: var(--bg-faded-color);
}
2022-12-10 09:14:48 +00:00
2022-12-10 11:16:43 +00:00
/* MENTIONS */
a.mention {
text-decoration-line: none;
}
a.mention span {
text-decoration-line: underline;
text-decoration-color: inherit;
2022-12-23 11:33:06 +00:00
text-decoration-thickness: 2px;
text-underline-offset: 2px;
2022-12-10 11:16:43 +00:00
}
/* a.mention:has(span).hashtag {
2022-12-10 11:16:43 +00:00
color: var(--link-light-color);
} */
a.mention span {
2022-12-10 11:16:43 +00:00
color: var(--text-color);
}
2023-01-17 05:37:48 +00:00
a[href^='http'][rel*='nofollow']:visited:not(:has(div)) {
color: var(--link-visited-color);
text-decoration-color: var(--link-visited-color);
}
2022-12-10 11:16:43 +00:00
2022-12-10 09:14:48 +00:00
.deck-container {
width: 100%;
height: 100vh;
height: 100dvh;
2022-12-10 09:14:48 +00:00
overflow: auto;
overflow-x: hidden;
transition: opacity 0.1s ease-in-out;
2022-12-23 00:00:11 +00:00
overscroll-behavior: contain;
scroll-behavior: smooth;
background-color: var(--bg-color);
/* This `transform` fixes carousel blocking vertical scrolling for pointer devices on iPad */
transform: translateZ(0);
2022-12-10 09:14:48 +00:00
}
@media (hover: hover) {
.deck-container {
overscroll-behavior: auto;
}
}
2022-12-10 09:14:48 +00:00
.deck-container[hidden] {
display: block;
position: absolute;
user-select: none;
pointer-events: none;
opacity: 0;
content-visibility: hidden;
}
.deck-container,
.deck.contained {
scroll-padding-top: 3em;
2022-12-10 09:14:48 +00:00
}
.deck {
min-height: 100vh;
min-height: 100dvh;
2022-12-10 09:14:48 +00:00
margin: auto;
2023-02-17 12:47:09 +00:00
width: var(--main-width);
2023-01-30 11:49:38 +00:00
max-width: 100%;
2022-12-10 09:14:48 +00:00
background-color: var(--bg-color);
}
.deck.contained {
overflow: auto;
overflow-x: hidden;
2022-12-10 09:14:48 +00:00
height: 100vh;
height: 100dvh;
2022-12-23 00:00:11 +00:00
overscroll-behavior: contain;
2022-12-10 09:14:48 +00:00
}
@media (hover: hover) {
.deck.contained {
overscroll-behavior: auto;
}
}
2022-12-10 09:14:48 +00:00
2023-01-14 11:42:04 +00:00
.deck > header {
2022-12-10 09:14:48 +00:00
position: sticky;
top: 0;
z-index: 1;
cursor: default;
z-index: 10;
2022-12-23 13:28:16 +00:00
user-select: none;
transition: transform 0.5s ease-in-out;
user-select: none;
}
2023-01-14 11:42:04 +00:00
.deck > header[hidden] {
2023-02-08 11:11:33 +00:00
display: block;
transform: translateY(-100%);
pointer-events: none;
user-select: none;
2022-12-10 09:14:48 +00:00
}
2023-02-08 11:11:33 +00:00
.deck > header .header-grid {
background-color: var(--bg-blur-color);
background-image: linear-gradient(to bottom, var(--bg-color), transparent);
backdrop-filter: saturate(180%) blur(20px);
border-bottom: var(--hairline-width) solid var(--divider-color);
min-height: 3em;
display: grid;
2023-02-25 02:04:30 +00:00
grid-template-columns: 1fr minmax(0, max-content) 1fr;
2023-02-08 11:11:33 +00:00
align-items: center;
white-space: nowrap;
2023-02-08 11:11:33 +00:00
}
.deck > header .header-grid > .header-side:last-of-type {
2022-12-10 09:14:48 +00:00
text-align: right;
grid-column: 3;
}
2023-02-08 11:11:33 +00:00
.deck > header .header-grid :is(button, .button).plain {
backdrop-filter: none;
2022-12-10 09:14:48 +00:00
}
2023-02-08 11:11:33 +00:00
.deck > header .header-grid h1 {
margin: 0 8px;
2022-12-10 09:14:48 +00:00
padding: 0;
font-size: 1.2em;
text-align: center;
2023-02-25 02:04:30 +00:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2022-12-10 09:14:48 +00:00
}
.deck > header .header-grid.header-grid-2 {
grid-template-columns: 1fr max-content;
}
.deck > header .header-grid-2 h1 {
2022-12-10 09:14:48 +00:00
text-align: left;
padding-left: 8px;
}
.deck > header .header-grid h1:has(.ancestors-indicator) {
display: flex;
gap: 8px;
align-items: center;
max-width: fit-content;
}
.deck > header .header-grid h1:has(.ancestors-indicator) .hero-heading {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2022-12-10 09:14:48 +00:00
}
.deck h2 {
font-size: 1.45em;
}
.deck.padded-bottom .timeline > li:last-child {
2022-12-18 16:19:34 +00:00
padding-bottom: 80vh !important;
padding-bottom: 80dvh !important;
2022-12-10 09:14:48 +00:00
}
2023-04-14 07:46:11 +00:00
@keyframes indeterminate-bar {
0% {
transform: translateX(-50%);
opacity: 0.25;
}
50% {
opacity: 1;
}
100% {
transform: translateX(50%);
opacity: 0.25;
}
}
.deck > header.loading:after {
pointer-events: none;
content: '';
display: block;
height: 4px;
position: absolute;
bottom: 0;
width: 50%;
left: 25%;
background-image: radial-gradient(
2023-04-14 10:14:25 +00:00
farthest-side at bottom,
2023-04-14 07:46:11 +00:00
var(--link-color),
transparent
);
animation: indeterminate-bar 1s ease-in-out infinite alternate;
}
2023-04-17 12:52:05 +00:00
@media (min-width: 40em) {
.deck > header.loading:after {
height: 8px;
}
}
2023-04-14 07:46:11 +00:00
2022-12-10 09:14:48 +00:00
.timeline {
margin: 0 auto;
padding: 0;
2023-01-01 00:51:56 +00:00
}
.timeline.grow {
/* min-height: 100vh;
min-height: 100dvh; */
2023-01-01 04:01:39 +00:00
padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
2022-12-10 09:14:48 +00:00
}
.timeline > li {
2022-12-10 09:14:48 +00:00
list-style: none;
margin: 0;
padding: 0;
2023-01-14 14:27:02 +00:00
border-bottom: var(--hairline-width) solid var(--divider-color);
2022-12-10 09:14:48 +00:00
}
.timeline.flat > li {
2022-12-10 09:14:48 +00:00
border-bottom: none;
}
.timeline.contextual {
--thread-start: 40px;
--line-start: 40px;
--line-width: 3px;
--line-end: calc(var(--line-start) + var(--line-width));
--line-margin-end: 16px;
--line-radius: 10px;
--line-diameter: calc(var(--line-radius) * 2);
--avatar-size: 50px;
--avatar-margin-start: 16px;
--avatar-margin-end: 12px;
}
.timeline.contextual > li {
background-image: linear-gradient(
to right,
transparent,
transparent var(--line-start),
var(--comment-line-color) var(--line-start),
var(--comment-line-color) var(--line-end),
transparent var(--line-end),
transparent
);
2022-12-10 09:14:48 +00:00
background-repeat: no-repeat;
transition: opacity 0.3s ease-in-out;
2022-12-10 09:14:48 +00:00
}
.timeline.contextual > li:first-child {
2023-04-23 15:37:58 +00:00
background-position: 0 calc(16px + var(--avatar-size));
2022-12-10 09:14:48 +00:00
}
.timeline.contextual > li:last-child {
2022-12-10 09:14:48 +00:00
background-size: 100% 20px;
}
2023-03-17 09:15:24 +00:00
.timeline.contextual > li:only-child {
background-image: none;
}
.timeline.contextual > li.descendant {
2022-12-10 09:14:48 +00:00
position: relative;
}
2022-12-19 02:05:50 +00:00
.timeline.contextual > li.descendant {
padding-bottom: 1em;
}
2023-07-31 16:59:58 +00:00
.timeline.contextual
> li.descendant:not(.thread)
> :is(.status-link, .status-focus) {
padding-left: 40px;
}
.timeline.contextual .replies[data-scroll-left]:not([data-scroll-left='0']) {
background-color: var(--bg-color);
box-shadow: inset 0 -3px var(--comment-line-color),
inset 0 3px var(--comment-line-color);
}
.timeline.contextual .replies[data-comments-level='4'] {
2023-05-22 03:17:13 +00:00
overflow-x: auto;
}
.timeline.contextual .replies[data-comments-level='4']:has(.replies) {
2023-05-22 03:17:13 +00:00
overflow-x: auto;
mask-image: linear-gradient(to left, transparent, black 32px);
}
.timeline.contextual
.replies[data-comments-level='4']:has(.replies)
> .replies-summary {
border-top: 2px dashed var(--divider-color);
}
.timeline.contextual
.replies[data-comments-level='4']
.replies[data-comments-level-overflow='true']
.status {
min-width: min(20em, 80vw);
}
.timeline.contextual
> li.descendant.thread
2023-07-31 16:59:58 +00:00
> :is(.status-link, .status-focus)
+ .replies
.replies-summary {
margin-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * (var(--comments-level) - 1))
);
}
/* .timeline.contextual
> li.descendant.thread
> .status-link
+ .replies
.replies
> .replies-summary {
margin-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
var(--line-margin-end)
);
}
.timeline.contextual
> li.descendant.thread
> .status-link
+ .replies
.replies
.replies
> .replies-summary {
margin-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * 2)
);
} */
.timeline.contextual
> li.descendant.thread
2023-07-31 16:59:58 +00:00
> :is(.status-link, .status-focus)
+ .replies
2023-07-31 16:59:58 +00:00
:is(.status-link, .status-focus) {
padding-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * (var(--comments-level) - 1))
);
}
/* .timeline.contextual
> li.descendant.thread
> .status-link
+ .replies
.replies
.status-link {
padding-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
var(--line-margin-end)
);
}
.timeline.contextual
> li.descendant.thread
> .status-link
+ .replies
.replies
.replies
.status-link {
padding-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * 2)
);
} */
.timeline.contextual
> li.descendant:not(.thread)
2023-07-31 16:59:58 +00:00
> :is(.status-link, .status-focus)
+ .replies
.replies-summary {
margin-left: calc(
var(--thread-start) + var(--line-margin-end) * var(--comments-level)
);
}
/* .timeline.contextual
> li.descendant:not(.thread)
> .status-link
+ .replies
.replies
> .replies-summary {
margin-left: calc(
var(--thread-start) + var(--line-margin-end) + var(--line-margin-end)
);
}
.timeline.contextual
> li.descendant:not(.thread)
> .status-link
+ .replies
.replies
.replies
> .replies-summary {
margin-left: calc(
var(--thread-start) + var(--line-margin-end) + (var(--line-margin-end) * 2)
);
} */
.timeline.contextual
> li.descendant:not(.thread)
2023-07-31 16:59:58 +00:00
> :is(.status-link, .status-focus)
+ .replies
2023-07-31 16:59:58 +00:00
:is(.status-link, .status-focus) {
padding-left: calc(
var(--thread-start) + var(--line-margin-end) * var(--comments-level)
);
}
/* .timeline.contextual
> li.descendant:not(.thread)
> .status-link
+ .replies
.replies
.status-link {
padding-left: calc(var(--thread-start) + (var(--line-margin-end) * 2));
}
.timeline.contextual
> li.descendant:not(.thread)
> .status-link
+ .replies
.replies
.replies
.status-link {
padding-left: calc(var(--thread-start) + (var(--line-margin-end) * 3));
} */
.timeline.contextual > li.descendant:not(.thread):before {
2022-12-10 09:14:48 +00:00
content: '';
position: absolute;
top: 10px;
left: var(--line-start);
width: var(--line-diameter);
height: var(--line-diameter);
border-radius: var(--line-radius);
2022-12-10 09:14:48 +00:00
border-style: solid;
border-width: var(--line-width);
2022-12-10 09:14:48 +00:00
border-color: transparent transparent var(--comment-line-color) transparent;
transform: rotate(45deg);
}
.timeline.contextual > li .replies-link {
color: var(--text-insignificant-color);
margin-left: 16px;
margin-top: -12px;
padding-bottom: 12px;
font-size: 90%;
}
.timeline.contextual > li.ancestor .replies-link {
margin-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end)
);
}
2023-07-31 16:59:58 +00:00
.timeline.contextual
> li.thread
> :is(.status-link, .status-focus)
.replies-link {
margin-left: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end)
);
}
.timeline.contextual > li .replies-link * {
vertical-align: middle;
}
.timeline.contextual > li .replies {
2022-12-19 08:35:22 +00:00
margin-top: -12px;
}
2023-05-08 04:47:30 +00:00
.timeline.contextual > li .replies :is(ul, li):not(.content *) {
margin: 0;
padding: 0;
list-style: none;
}
.timeline.contextual > li .replies > .replies-summary {
padding: 8px;
background-color: var(--bg-faded-color);
display: inline-block;
border-radius: 8px;
cursor: pointer;
text-transform: uppercase;
font-weight: 500;
font-size: 12px;
color: var(--text-insignificant-color);
user-select: none;
2022-12-18 16:19:44 +00:00
box-shadow: 0 0 0 2px var(--bg-color);
2022-12-19 08:35:09 +00:00
position: relative;
list-style: none;
white-space: nowrap;
}
.timeline.contextual > li .replies > .replies-summary::-webkit-details-marker {
2023-01-30 16:37:55 +00:00
display: none;
}
.timeline.contextual > li .replies > .replies-summary > * {
vertical-align: middle;
}
.timeline.contextual > li .replies > .replies-summary .avatars {
margin-right: 8px;
}
.timeline.contextual > li .replies > .replies-summary:active,
.timeline.contextual > li .replies[open] > .replies-summary {
color: var(--text-color);
background-color: var(--comment-line-color);
background-image: linear-gradient(
to top right,
var(--comment-line-color),
var(--bg-faded-color)
);
}
.timeline.contextual > li .replies[open] > .replies-summary {
border-bottom-left-radius: 0;
}
.timeline.contextual > li .replies .replies-summary[hidden] {
2022-12-19 02:05:50 +00:00
display: none;
}
2023-05-08 04:47:30 +00:00
.timeline.contextual > li .replies li:not(.content li) {
2022-12-10 09:14:48 +00:00
position: relative;
}
2023-05-08 04:47:30 +00:00
.timeline.contextual > li .replies li:not(.content li) {
--line-start: calc(
var(--thread-start) + var(--line-margin-end) * var(--comments-level)
);
--line-end: calc(var(--line-start) + var(--line-width));
background-image: linear-gradient(
to right,
transparent,
transparent var(--line-start),
var(--comment-line-color) var(--line-start),
var(--comment-line-color) var(--line-end),
transparent var(--line-end),
transparent
);
background-repeat: no-repeat;
}
/* .timeline.contextual > li .replies .replies li {
--line-start: calc(var(--thread-start) + (var(--line-margin-end) * 2));
}
.timeline.contextual > li .replies .replies .replies li {
--line-start: calc(var(--thread-start) + (var(--line-margin-end) * 3));
} */
2023-05-08 04:47:30 +00:00
.timeline.contextual > li.thread .replies li:not(.content li) {
--line-start: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * (var(--comments-level) - 1))
);
}
/* .timeline.contextual > li.thread .replies .replies li {
--line-start: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
var(--line-margin-end)
);
}
.timeline.contextual > li.thread .replies .replies .replies li {
--line-start: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * 2)
);
} */
2023-05-08 14:41:35 +00:00
.timeline.contextual > li .replies li:not(.content li):last-child {
background-size: 100% 20px;
}
2023-05-08 14:41:35 +00:00
.timeline.contextual > li .replies li:not(.content li):before {
content: '';
position: absolute;
top: 10px;
left: var(--line-start);
width: var(--line-diameter);
height: var(--line-diameter);
border-radius: var(--line-radius);
border-style: solid;
border-width: var(--line-width);
border-color: transparent transparent var(--comment-line-color) transparent;
transform: rotate(45deg);
}
/* .timeline.contextual > li .replies .replies li:before {
--line-start: calc(
var(--thread-start) + var(--line-margin-end) + var(--line-margin-end)
);
}
.timeline.contextual > li .replies .replies .replies li:before {
--line-start: calc(
var(--thread-start) + var(--line-margin-end) + (var(--line-margin-end) * 2)
);
} */
2023-05-08 14:41:35 +00:00
.timeline.contextual > li.thread .replies li:not(.content li):before {
--line-start: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * (var(--comments-level) - 1))
);
}
/* .timeline.contextual > li.thread .replies .replies li:before {
--line-start: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
var(--line-margin-end)
);
}
.timeline.contextual > li.thread .replies .replies .replies li:before {
--line-start: calc(
var(--avatar-size) + var(--avatar-margin-start) + var(--avatar-margin-end) +
(var(--line-margin-end) * 2)
);
} */
.timeline.contextual.loading > li:not(.hero) {
/* opacity: 0.5; */
pointer-events: none;
}
2022-12-10 09:14:48 +00:00
.timeline-deck.compact .status {
max-height: max(25vh, 160px);
overflow: hidden;
mask-image: linear-gradient(
rgba(0, 0, 0, 1),
rgba(0, 0, 0, 1) 80%,
transparent 95%
);
2022-12-10 09:14:48 +00:00
}
.timeline-deck.compact .status .meta ~ * {
pointer-events: none;
}
.timeline-header {
padding: 0 16px;
opacity: 0.75;
}
.timeline-empty {
color: var(--text-insignificant-color);
padding: 0 16px;
margin-bottom: 3em;
}
.timeline:not(.flat) > li.timeline-item-container {
2023-04-23 15:37:58 +00:00
--avatar-size: 50px;
--line-start: 40px;
--line-width: 3px;
--line-end: calc(var(--line-start) + var(--line-width));
background-image: linear-gradient(
to right,
transparent,
transparent var(--line-start),
var(--comment-line-color) var(--line-start),
var(--comment-line-color) var(--line-end),
transparent var(--line-end),
transparent
);
background-repeat: no-repeat;
}
.timeline:not(.flat) > li.timeline-item-container-start {
margin-bottom: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-bottom: 0;
2023-04-23 15:37:58 +00:00
background-position: 0 calc(16px + var(--avatar-size));
}
.timeline:not(.flat) > li.timeline-item-container-middle {
margin-top: 0;
margin-bottom: 0;
border-radius: 0;
border-bottom: 0;
border-top: 0;
}
.timeline:not(.flat) > li.timeline-item-container-end {
margin-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-top: 0;
2023-04-23 15:37:58 +00:00
background-size: 100% 16px;
}
.timeline:not(.flat)
> li:is(.timeline-item-container-middle, .timeline-item-container-end)
2023-04-24 10:59:38 +00:00
.status-reply-to:not(.visibility-direct):not(.status-card) {
background-image: none;
}
.timeline:not(.flat)
> li.timeline-item-diff-author
2023-07-31 16:59:58 +00:00
> :is(.status-link, .status-focus)
> .status
> a
> .avatar {
transform: scale(0.8);
filter: drop-shadow(0 0 16px var(--bg-color))
drop-shadow(0 0 8px var(--bg-color)) drop-shadow(0 0 8px var(--bg-color));
}
.timeline .show-more {
padding-left: calc(var(--line-end) + var(--line-margin-end)) !important;
text-align: left;
background-color: transparent !important;
backdrop-filter: none !important;
position: relative;
border-radius: 0;
padding-block: 16px !important;
}
.timeline .show-more:hover {
filter: none !important;
color: var(--text-color) !important;
background-color: var(--bg-faded-blur-color) !important;
}
.timeline .show-more:before {
content: '';
position: absolute;
top: 10px;
left: var(--line-start);
width: var(--line-diameter);
height: var(--line-diameter);
border-radius: var(--line-radius);
border-style: solid;
border-width: var(--line-width);
border-color: transparent transparent var(--comment-line-color) transparent;
transform: rotate(45deg);
}
2022-12-10 09:14:48 +00:00
.status-loading {
text-align: center;
color: var(--text-insignificant-color);
2023-04-14 07:45:55 +00:00
max-width: var(--main-width);
2022-12-10 09:14:48 +00:00
}
2023-01-01 04:02:06 +00:00
.status-error {
text-align: center;
color: var(--text-insignificant-color);
2023-04-14 07:45:55 +00:00
max-width: var(--main-width);
2023-01-01 04:02:06 +00:00
}
2022-12-10 09:14:48 +00:00
.status-link {
display: block;
text-decoration-line: none;
color: inherit;
user-select: none;
2022-12-10 09:14:48 +00:00
transition: background-color 0.2s ease-out;
-webkit-tap-highlight-color: transparent;
animation: appear 0.2s ease-out;
2023-03-07 16:01:51 +00:00
-webkit-touch-callout: none;
2022-12-10 09:14:48 +00:00
}
@media (pointer: coarse) {
.status-focus:not(.hero .status-focus) {
/* Only the hero doesn't have context menu */
2023-08-01 01:43:25 +00:00
user-select: none;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
}
:is(.status-link, .status-focus):is(:focus, .is-active) {
2022-12-10 09:14:48 +00:00
background-color: var(--link-bg-hover-color);
2022-12-30 15:09:25 +00:00
outline-offset: -2px;
2022-12-10 09:14:48 +00:00
}
@media (hover: hover) {
.status-link:hover {
background-color: var(--link-bg-hover-color);
outline-offset: -2px;
}
}
.status-link:active:not(:has(:is(.media, button):active)) {
2022-12-30 03:03:03 +00:00
filter: brightness(0.95);
}
2022-12-10 09:14:48 +00:00
.status-carousel {
--carousel-faded-color: var(--bg-faded-color);
2023-01-14 11:42:04 +00:00
background: linear-gradient(
to bottom right,
var(--carousel-faded-color),
2023-01-14 14:17:47 +00:00
transparent 150%
2023-01-14 11:42:04 +00:00
);
position: relative;
2023-09-03 10:10:47 +00:00
container-type: inline-size;
2023-01-14 11:42:04 +00:00
}
.status-carousel:after {
2023-01-14 11:42:04 +00:00
content: '';
position: absolute;
inset: 0;
pointer-events: none;
background-image: radial-gradient(
ellipse 50% 32px at bottom center,
var(--carousel-faded-color),
2023-01-14 11:42:04 +00:00
transparent
),
linear-gradient(to top, var(--bg-color), transparent 64px);
background-repeat: no-repeat;
background-position: bottom center;
}
.status-carousel header {
2023-01-14 11:42:04 +00:00
padding: 8px 16px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.status-carousel h3 {
2023-01-14 11:42:04 +00:00
margin: 0;
padding: 0;
font-size: 14px;
text-transform: uppercase;
color: var(--carousel-color);
2023-01-14 11:42:04 +00:00
text-shadow: 0 1px var(--bg-color);
}
.status-carousel > ul {
2023-01-14 11:42:04 +00:00
display: flex;
overflow-x: auto;
overflow-y: hidden;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
margin: 0;
padding: 8px 16px;
gap: 16px;
align-items: flex-start;
counter-reset: index;
2023-09-25 02:20:32 +00:00
min-height: 160px;
2023-01-14 11:42:04 +00:00
}
.status-carousel > ul > li {
2023-01-14 11:42:04 +00:00
scroll-snap-align: center;
scroll-snap-stop: always;
flex-shrink: 0;
display: flex;
width: 100%;
max-width: min(320px, calc(100% - 16px));
list-style: none;
margin: 0;
padding: 0;
max-height: 65vh;
max-height: 65dvh;
2023-01-14 11:42:04 +00:00
counter-increment: index;
position: relative;
}
.status-carousel > ul > li:is(:empty, :has(> a:empty)) {
2023-04-30 08:53:00 +00:00
display: none;
}
2023-09-03 10:10:47 +00:00
/*
Assume that browsers that do support inline-size property also support container queries.
https://www.smashingmagazine.com/2021/05/css-container-queries-use-cases-migration-strategies/#progressive-enhancement-polyfills
*/
@supports not (contain: inline-size) {
@media (hover: hover) or (pointer: fine) or (min-width: 40em) {
.status-carousel > ul {
scroll-snap-type: none;
}
}
}
@container (min-width: 640px) {
.status-carousel > ul {
scroll-snap-type: none;
}
}
.status-carousel .content-container .content:only-child {
font-size: calc(100% + 25% * max(2 - var(--content-text-weight), 0));
}
/* .status-carousel
.content-container[data-content-text-weight='1']
.media-container.media-eq1 {
/* LOL, this is madness, reading a value from the style attribute * /
height: auto;
min-height: 160px;
2023-02-18 17:23:31 +00:00
max-height: max(160px, 50vh);
} */
.status-carousel.boosts-carousel {
--carousel-color: var(--reblog-color);
--carousel-faded-color: var(--reblog-faded-color);
}
.status-carousel.boosts-carousel .status-reblog {
background-image: none;
}
.status-carousel.boosts-carousel > ul > li:before {
2023-01-14 11:42:04 +00:00
content: counter(index);
position: absolute;
2023-01-16 12:49:26 +00:00
left: 0;
2023-01-14 11:42:04 +00:00
font-size: 10px;
color: var(--carousel-color);
2023-01-14 11:42:04 +00:00
padding: 8px;
}
2022-12-10 09:14:48 +00:00
.ui-state {
padding: 16px;
text-align: center;
}
.status-carousel-link {
2023-01-14 11:42:04 +00:00
display: block;
width: 100%;
text-decoration-line: none;
color: inherit;
user-select: none;
transition: background-color 0.2s ease-out;
-webkit-tap-highlight-color: transparent;
animation: appear 0.2s ease-out;
border: 1px solid var(--outline-color);
background-color: var(--bg-blur-color);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 1px var(--bg-color);
}
.status-carousel-link::focus {
2023-01-14 11:42:04 +00:00
background-color: var(--link-bg-hover-color);
}
@media (hover: hover) {
.status-carousel-link:hover {
background-color: var(--link-bg-hover-color);
}
}
.status-carousel-link:active:not(:has(:is(.media, button):active)) {
2023-01-14 11:42:04 +00:00
filter: brightness(0.95);
}
2022-12-10 09:14:48 +00:00
.deck-backdrop {
position: fixed;
top: 0;
right: 0;
height: 100%;
width: 100%;
z-index: 1000;
display: flex;
background-color: var(--backdrop-color);
2023-01-02 07:00:13 +00:00
animation: appear 0.2s ease-out;
2022-12-10 09:14:48 +00:00
}
.deck-backdrop > a {
flex-grow: 1;
2023-01-02 07:00:13 +00:00
/* backdrop-filter: saturate(0.75); */
2022-12-10 09:14:48 +00:00
}
@keyframes slide-in {
0% {
transform: translate3d(100%, 0, 0);
2022-12-10 09:14:48 +00:00
}
100% {
transform: translate3d(0, 0, 0);
2022-12-10 09:14:48 +00:00
}
}
.deck-backdrop .deck {
2023-02-17 12:47:09 +00:00
width: var(--main-width);
2022-12-10 09:14:48 +00:00
max-width: 100vw;
background-color: var(--bg-color);
box-shadow: -1px 0 var(--bg-color);
}
2023-04-17 11:31:11 +00:00
.deck-backdrop .deck.slide-in:not(.deck-view-full) {
animation: slide-in 0.5s var(--timing-function);
}
2022-12-10 09:14:48 +00:00
.deck-backdrop .deck .status {
2023-02-17 12:47:09 +00:00
max-width: var(--main-width);
2022-12-10 09:14:48 +00:00
}
2023-04-20 13:37:55 +00:00
.deck-backdrop .deck .menu-switch-view {
2023-04-16 16:14:09 +00:00
display: none;
}
@media (min-width: 40em) {
2023-04-20 13:37:55 +00:00
.deck-backdrop .deck .menu-switch-view {
2023-04-16 16:14:09 +00:00
display: flex;
}
.deck-backdrop .deck.deck-view-full {
/* min-width: 100%; */
width: 100%;
2023-04-16 16:14:09 +00:00
background-image: radial-gradient(
circle,
transparent 30em,
var(--bg-faded-color)
);
}
.deck-backdrop .deck.deck-view-full > * {
max-width: calc(var(--main-width) + 32px);
margin: 0 auto;
}
.deck-backdrop .deck.deck-view-full .status {
max-width: 100%;
}
}
2022-12-10 09:14:48 +00:00
.deck-close {
color: var(--text-insignificant-color) !important;
}
2022-12-29 08:11:58 +00:00
.deck-close:is(:hover, :focus) {
2022-12-10 09:14:48 +00:00
color: var(--text-color) !important;
}
:is(button, .button).plain.has-badge:after {
content: '';
2022-12-10 09:14:48 +00:00
display: inline-block;
position: absolute;
right: 10px;
width: 4px;
height: 4px;
border-radius: 50%;
background-color: var(--link-color);
opacity: 0.5;
2022-12-10 09:14:48 +00:00
}
@keyframes fade-from-top {
0% {
2023-01-07 13:03:01 +00:00
transform: translate(-50%, -200%);
2022-12-10 09:14:48 +00:00
opacity: 0;
}
100% {
transform: translate(-50%, 0);
2022-12-10 09:14:48 +00:00
opacity: 1;
}
}
.updates-button {
position: absolute;
z-index: 2;
2023-02-07 16:31:46 +00:00
top: 3em;
animation: fade-from-top 0.3s var(--timing-function);
2022-12-10 09:14:48 +00:00
left: 50%;
2023-02-07 16:31:46 +00:00
margin-top: 16px;
transform: translate(-50%, 0);
2022-12-19 11:24:51 +00:00
font-size: 90%;
pointer-events: auto;
2022-12-19 11:24:51 +00:00
}
.updates-button .icon {
vertical-align: top;
2022-12-10 09:14:48 +00:00
}
2023-02-24 17:49:40 +00:00
@media (pointer: coarse) {
.updates-button:after {
content: '';
position: absolute;
inset: -16px;
}
}
2022-12-10 09:14:48 +00:00
/* BOX */
.box {
2023-02-17 12:47:09 +00:00
width: var(--main-width);
2022-12-10 09:14:48 +00:00
max-width: 100vw;
padding: 16px;
}
/* CAROUSEL */
/* use snap, center children, max width viewport */
.media-modal-container {
position: relative;
width: 70%;
flex-grow: 1;
background-color: var(--backdrop-solid-color);
animation: appear 0.3s var(--timing-function) both;
}
.media-modal-container.loading {
display: flex;
justify-content: center;
align-items: center;
background-image: radial-gradient(
closest-side,
var(--bg-blur-color),
transparent
);
}
2022-12-10 09:14:48 +00:00
.carousel {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
/* scroll-behavior: smooth; */
scrollbar-width: none;
overscroll-behavior: contain;
2022-12-28 12:38:16 +00:00
touch-action: pan-x;
user-select: none;
width: 100%;
2022-12-10 09:14:48 +00:00
}
.carousel::-webkit-scrollbar {
display: none;
}
.carousel .carousel-item {
2022-12-10 09:14:48 +00:00
scroll-snap-align: center;
scroll-snap-stop: always;
2022-12-10 09:14:48 +00:00
flex-shrink: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
2022-12-10 09:14:48 +00:00
height: 100vh;
height: 100dvh;
background-color: var(--average-color-alpha);
background-image: radial-gradient(
closest-side,
var(--average-color) 10%,
var(--average-color-alpha) 40%,
transparent 100%
);
2022-12-10 09:14:48 +00:00
}
.carousel .carousel-item :is(img, video) {
2022-12-10 09:14:48 +00:00
width: auto;
max-width: 100%;
2022-12-10 09:14:48 +00:00
height: auto;
max-height: 100vh;
max-height: 100dvh;
2022-12-28 06:43:58 +00:00
vertical-align: middle;
2022-12-10 09:14:48 +00:00
}
.carousel .carousel-item video {
min-height: 80px;
2022-12-28 06:43:58 +00:00
max-height: 80vh; /* prevent other UI elements from obscuring video */
}
.carousel .carousel-item .media {
background-size: contain;
background-repeat: no-repeat;
background-position: center;
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0)
env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
background-origin: content-box;
}
2022-12-10 09:14:48 +00:00
.carousel-top-controls {
top: 0;
top: env(safe-area-inset-top, 0);
}
:is(.carousel-top-controls, .carousel-controls) {
/* mix-blend-mode: luminosity; */
position: absolute;
left: 0;
left: env(safe-area-inset-left, 0);
right: 0;
right: env(safe-area-inset-right, 0);
padding: 16px;
2022-12-10 09:14:48 +00:00
display: flex;
gap: 8px;
justify-content: space-between;
text-align: center;
pointer-events: none;
2022-12-10 09:14:48 +00:00
}
2022-12-28 11:31:08 +00:00
:is(.carousel-top-controls, .carousel-controls)[hidden] {
opacity: 0;
}
2023-04-17 06:41:40 +00:00
.carousel-controls {
top: 45%;
}
2023-01-01 04:28:54 +00:00
:is(.button, button).carousel-button,
button.carousel-dot {
pointer-events: auto;
2022-12-10 09:14:48 +00:00
font-weight: bold;
2023-08-14 12:32:09 +00:00
color: var(--text-color);
background-color: var(--bg-faded-blur-color);
border: 1px solid var(--outline-color);
2023-08-14 12:32:09 +00:00
box-shadow: 0 4px 32px var(--drop-shadow-color);
transition: all 0.2s ease-out;
}
button.carousel-dot {
background-color: transparent;
}
:is(.button, button).carousel-button {
2023-08-14 12:32:09 +00:00
background-color: var(--bg-blur-color);
}
:is(.button, button).carousel-button:is(:hover, :focus):not(:active) {
2023-08-14 12:32:09 +00:00
background-color: var(--bg-color);
2022-12-10 09:14:48 +00:00
}
2023-03-28 07:59:20 +00:00
.carousel-top-controls .szh-menu-container {
pointer-events: auto;
}
2023-01-01 04:28:54 +00:00
:is(.button, button).carousel-button[hidden] {
2022-12-10 09:14:48 +00:00
display: inline-block;
opacity: 0;
pointer-events: none;
}
.carousel-dots {
border-radius: 999px;
2023-08-14 12:32:09 +00:00
background-color: var(--bg-faded-blur-color);
border: 1px solid var(--outline-color);
box-shadow: 0 4px 32px var(--drop-shadow-color);
/* backdrop-filter: blur(12px) invert(0.25); */
transition: background-color 0.2s ease-out;
&:hover {
background-color: var(--bg-color);
}
2022-12-10 09:14:48 +00:00
}
button.carousel-dot {
backdrop-filter: none !important;
2023-08-14 12:32:09 +00:00
border: none;
box-shadow: none;
2022-12-10 09:14:48 +00:00
}
/* button.carousel-dot[disabled] {
pointer-events: none;
} */
2023-08-10 15:52:29 +00:00
button.carousel-dot .icon {
transition: all 0.2s;
transform: scale(0.5);
}
button.carousel-dot:not(.active) .icon {
2023-02-28 13:02:55 +00:00
opacity: 0.5;
}
2023-08-10 15:52:29 +00:00
button.carousel-dot:not(.active):is(:hover, :focus) .icon {
2023-02-28 13:02:55 +00:00
opacity: 1;
2022-12-10 09:14:48 +00:00
}
button.carousel-dot:is(.active, [disabled].active) {
opacity: 1;
2023-08-10 15:52:29 +00:00
}
button.carousel-dot:is(.active, [disabled].active) .icon {
opacity: 1;
transform: scale(1);
}
@media (hover: hover) {
.carousel-top-controls {
transform: translateY(-100%);
transition: transform 0.2s ease-in-out;
}
.carousel-controls {
transform: scale(0);
/* transition: transform 0.2s ease-in-out; */
}
.carousel-controls
:is(.button, button).carousel-button:is(:hover, :focus):not(:active) {
transform: scale(1.2);
}
.carousel-controls :is(.button, button).carousel-button:active {
transition-duration: 0s;
}
2022-12-28 11:31:08 +00:00
:is(.carousel-top-controls, .carousel-controls)[hidden] {
opacity: 1;
}
.carousel:hover + .carousel-top-controls,
.carousel:hover + .carousel-top-controls + .carousel-controls,
.carousel-top-controls:hover,
.carousel-controls:hover,
.carousel-top-controls:focus-within,
.carousel-controls:focus-within {
transform: translateY(0);
}
}
2022-12-10 09:14:48 +00:00
/* CAROUSEL + STATUS PAGE COMBO */
.media-post-link .button-label {
display: none;
}
body:has(.status-deck) .media-post-link {
display: none;
}
/* ✨ New */
body:has(.media-modal-container + .status-deck) .media-post-link {
display: inline-block;
}
.media-modal-container + .status-deck {
/* display: none; */
position: absolute;
z-index: -1;
pointer-events: none;
user-select: none;
animation: none;
}
@media (min-width: calc(40em + 350px)) {
.media-post-link .button-label {
display: inline;
}
#modal-container > div,
.status-deck {
transition: all 0.3s ease-in-out;
}
/* Don't do this if there's a modal sheet (.sheet) */
:has(#modal-container .carousel):has(.status-deck):not(
:has(.sheet, #compose-container)
)
.status-deck {
width: 350px;
min-width: 0;
}
:has(#modal-container .carousel):has(.status-deck):not(
:has(.sheet, #compose-container)
)
#modal-container
> div {
left: 0;
right: 350px;
width: auto;
}
/* ✨ New */
/* .deck-backdrop > a {
width: 100%;
flex-grow: 0;
} */
2023-04-16 16:14:09 +00:00
.deck-backdrop .media-modal-container + .status-deck:not(.deck-view-full) {
/* display: block; */
width: 30%;
/* min-width: 350px; */
position: static;
z-index: 1;
pointer-events: auto;
user-select: auto;
}
.deck-backdrop .media-modal-container + .status-deck:not(.slide-in) {
animation: appear 0.3s ease-in-out;
}
body:has(.media-modal-container + .status-deck) .media-post-link {
display: none;
}
}
2022-12-10 09:14:48 +00:00
/* COMPOSE BUTTON */
#compose-button {
position: fixed;
bottom: 16px;
bottom: max(16px, env(safe-area-inset-bottom));
2022-12-10 09:14:48 +00:00
right: 16px;
right: max(16px, env(safe-area-inset-right));
2022-12-10 09:14:48 +00:00
padding: 16px;
2023-01-01 09:19:20 +00:00
background-color: var(--button-bg-blur-color);
backdrop-filter: blur(16px);
z-index: 10;
2023-02-12 00:10:48 +00:00
box-shadow: 0 3px 8px -1px var(--drop-shadow-color),
2023-01-01 09:19:20 +00:00
0 10px 36px -4px var(--button-bg-blur-color);
transition: all 0.3s ease-in-out;
}
.deck-container:has(header[hidden]) ~ #compose-button,
#compose-button[hidden] {
2023-01-02 13:43:04 +00:00
transform: translateY(200%);
pointer-events: none;
user-select: none;
2023-02-27 15:59:41 +00:00
opacity: 0;
}
#compose-button .icon {
transition: transform 0.3s ease-in-out;
}
#compose-button[hidden] .icon {
transform: rotate3d(0, 0, 1, -25deg);
2023-01-01 09:19:20 +00:00
}
#compose-button:is(:hover, :focus) {
background-color: var(--button-bg-color);
filter: none;
}
#compose-button:active {
2023-02-17 11:31:28 +00:00
transform: scale(0.95);
transition: none;
2023-01-01 09:19:20 +00:00
}
#compose-button .icon {
filter: drop-shadow(0 1px 2px var(--button-bg-color));
2022-12-10 09:14:48 +00:00
}
2023-02-28 00:30:38 +00:00
@media (max-width: calc(40em - 1px)) {
#app[data-shortcuts-view-mode='tab-menu-bar'] #compose-button {
2023-02-28 00:30:38 +00:00
bottom: calc(16px + 52px);
bottom: calc(16px + env(safe-area-inset-bottom) + 52px);
}
2023-02-27 15:59:41 +00:00
}
2022-12-10 09:14:48 +00:00
/* SHEET */
.sheet {
align-self: flex-end;
display: flex;
flex-direction: column;
2022-12-10 09:14:48 +00:00
max-height: 90vh;
2022-12-15 04:38:30 +00:00
max-height: 90dvh;
/* overflow: hidden; */
2022-12-10 09:14:48 +00:00
background-color: var(--bg-color);
width: 100%;
2023-02-17 12:47:09 +00:00
max-width: calc(var(--main-width) - 50px - 16px);
border-radius: 16px 16px 0 0;
2023-03-06 10:19:37 +00:00
box-shadow: 0 -1px 32px var(--drop-shadow-color);
animation: slide-up 0.3s var(--timing-function);
2023-03-10 09:36:42 +00:00
/* border: 1px solid var(--outline-color); */
2023-04-20 08:10:57 +00:00
position: relative;
}
2023-01-13 09:23:18 +00:00
.sheet-max {
width: 90vw;
width: 90dvw;
max-width: none;
height: 90vh;
height: 90dvh;
}
2023-04-20 08:10:57 +00:00
.sheet .sheet-close {
position: absolute;
border-radius: 0;
padding: 0;
right: env(safe-area-inset-right);
width: 44px;
height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
z-index: 2;
background-color: transparent;
background-image: radial-gradient(
circle,
var(--close-button-bg-color) 0px 14px,
transparent 14px
);
color: var(--close-button-color);
}
.sheet .sheet-close.outer {
margin-top: -44px;
background-image: radial-gradient(
circle,
var(--bg-faded-color) 0px 14px,
transparent 14px
);
}
.sheet .sheet-close:is(:hover, :focus) {
color: var(--close-button-hover-color);
}
.sheet .sheet-close:active {
background-image: radial-gradient(
circle,
var(--close-button-bg-active-color) 0px 14px,
transparent 14px
);
}
.sheet header {
padding: 16px 16px 8px;
padding-left: max(16px, env(safe-area-inset-left));
padding-right: max(16px, env(safe-area-inset-right));
user-select: none;
}
2023-04-20 08:10:57 +00:00
.sheet .sheet-close:not(.outer) + header {
padding-right: max(44px, env(safe-area-inset-right));
}
.sheet header :is(h1, h2, h3) {
margin: 0;
}
.sheet header.header-grid {
display: grid;
grid-template-columns: 1fr auto;
grid-gap: 8px;
align-items: center;
}
.sheet main {
overflow: auto;
overflow-x: hidden;
2022-12-23 00:00:11 +00:00
overscroll-behavior: contain;
padding: 16px 16px;
padding-left: max(16px, env(safe-area-inset-left));
padding-right: max(16px, env(safe-area-inset-right));
padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.sheet header + main {
padding-top: 0;
2022-12-27 11:12:36 +00:00
mask-image: linear-gradient(to bottom, transparent 0%, black 10px);
2022-12-10 09:14:48 +00:00
}
/* ICON */
.icon {
flex-shrink: 0;
}
2022-12-10 09:14:48 +00:00
/* TAG */
.tag {
font-size: smaller;
color: var(--bg-faded-color);
background-color: var(--text-insignificant-color);
padding: 2px 4px;
border-radius: 4px;
display: inline-block;
margin: 4px;
align-self: center;
2023-09-28 07:48:32 +00:00
&.clickable {
cursor: pointer;
}
2022-12-10 09:14:48 +00:00
}
2022-12-27 09:54:48 +00:00
.tag .icon {
vertical-align: middle;
}
.tag.collapsed {
margin: 0;
}
.tag.insignificant {
border: 1px solid var(--outline-color);
color: var(--text-insignificant-color);
background-color: var(--bg-faded-color);
}
2023-06-28 15:37:05 +00:00
.tag.danger {
background-color: var(--red-color);
}
2022-12-10 09:14:48 +00:00
/* MENU POPUP */
2023-03-07 16:01:51 +00:00
.szh-menu-container {
user-select: none;
-webkit-touch-callout: none;
-webkit-user-drag: none;
}
2023-05-13 12:20:47 +00:00
body > .szh-menu-container {
position: fixed !important;
z-index: 10;
}
2023-02-28 00:12:07 +00:00
.szh-menu-container:has(.szh-menu--state-open) {
inset: 0;
inset: env(safe-area-inset-top) env(safe-area-inset-right)
env(safe-area-inset-bottom) env(safe-area-inset-left);
2023-02-28 00:12:07 +00:00
}
.szh-menu {
2023-02-16 09:51:54 +00:00
padding: 8px 0;
margin: 0;
2023-03-08 09:17:23 +00:00
font-size: var(--text-size);
2023-02-16 09:51:54 +00:00
background-color: var(--bg-color);
border: 1px solid var(--outline-color);
border-radius: 8px;
box-shadow: 0 3px 16px -3px var(--drop-shadow-color);
text-align: left;
2023-02-17 11:39:33 +00:00
animation: appear-smooth 0.15s ease-in-out;
2023-02-10 16:15:20 +00:00
width: 16em;
max-width: 90vw;
/* overflow: hidden; */
2023-02-16 09:51:54 +00:00
}
.szh-menu[aria-label='Submenu'] {
background-color: var(--bg-blur-color);
backdrop-filter: blur(4px);
box-shadow: 0 3px 24px -3px var(--drop-shadow-color);
}
.szh-menu__header {
margin: -8px 0 8px;
padding: 8px 16px;
color: var(--text-insignificant-color);
font-size: 90%;
background-color: var(--bg-faded-color);
/* background-image: linear-gradient(to top, var(--bg-faded-color), transparent); */
text-shadow: 0 1px 0 var(--bg-color);
line-height: 1.2;
/* border-bottom: 1px solid var(--outline-color); */
border-radius: 8px 8px 0 0;
}
.szh-menu__header.plain {
margin-bottom: 0;
background-color: transparent;
}
.szh-menu__header * {
vertical-align: middle;
}
.szh-menu.menu-emphasized {
border-color: var(--outline-hover-color);
box-shadow: 0 3px 16px -3px var(--drop-shadow-color),
0 3px 32px var(--drop-shadow-color), 0 3px 48px var(--drop-shadow-color);
background-color: var(--bg-color);
animation-duration: 0.3s;
animation-timing-function: ease-in-out;
width: auto;
}
.szh-menu .footer {
margin: 8px 0 -8px;
padding: 8px 16px;
color: var(--text-insignificant-color);
font-size: 90%;
background-color: var(--bg-faded-color);
text-shadow: 0 1px 0 var(--bg-color);
line-height: 1.2;
display: flex;
gap: 8px;
align-items: center;
border-radius: 0 0 8px 8px;
}
.szh-menu .szh-menu__item {
display: flex;
gap: 8px;
align-items: center;
line-height: 1.1;
padding: 8px 16px !important;
transition: all 0.1s ease-in-out;
2023-03-09 13:51:50 +00:00
text-decoration: none;
2023-02-10 16:15:20 +00:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2023-03-09 13:51:50 +00:00
}
.szh-menu .szh-menu__item--focusable {
background-color: transparent;
}
2023-03-09 13:51:50 +00:00
.szh-menu .szh-menu__item span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2023-04-09 16:30:13 +00:00
/* .szh-menu .szh-menu__item * {
vertical-align: middle;
2023-04-09 16:30:13 +00:00
} */
.szh-menu .szh-menu__item a {
flex: 1;
2023-02-10 16:15:20 +00:00
overflow: hidden;
text-overflow: ellipsis;
2023-02-16 09:51:54 +00:00
display: flex;
gap: 8px;
color: inherit;
text-decoration: none;
padding: 8px 16px !important;
margin: -8px -16px !important;
align-items: center;
user-select: none;
-webkit-touch-callout: none;
2023-02-16 09:51:54 +00:00
}
.szh-menu .szh-menu__item a.is-active {
font-weight: bold;
}
.szh-menu .szh-menu__item .icon {
opacity: 0.5;
}
.szh-menu
.szh-menu__item:not(.szh-menu__item--disabled, .szh-menu__item--hover) {
color: var(--text-color);
}
2023-02-25 02:04:30 +00:00
.szh-menu .szh-menu__item--hover:not(.menu-field) {
color: var(--button-text-color);
background-color: var(--button-bg-color);
}
2023-02-10 16:15:20 +00:00
.szh-menu__divider {
background-color: var(--divider-color);
}
2023-02-16 09:51:54 +00:00
.szh-menu .szh-menu__item .menu-grow {
flex-grow: 1;
2023-02-25 03:36:07 +00:00
text-overflow: ellipsis;
overflow: hidden;
2023-02-16 09:51:54 +00:00
}
2023-03-09 13:51:50 +00:00
.szh-menu .menu-double-lines {
white-space: normal !important;
2023-03-09 13:51:50 +00:00
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden !important;
2023-03-09 13:51:50 +00:00
}
.szh-menu .menu-double-lines span {
white-space: normal;
2023-03-09 15:46:55 +00:00
line-height: inherit;
font-size: inherit;
2023-03-09 13:51:50 +00:00
}
.szh-menu .menu-horizontal {
display: grid;
/* two columns only */
grid-template-columns: repeat(2, 1fr);
2023-03-09 13:51:50 +00:00
}
.szh-menu .menu-horizontal:has(> .szh-menu__item:only-child) {
grid-template-columns: 1fr;
}
.szh-menu .menu-horizontal > .szh-menu__item:not(:only-child):first-child,
.szh-menu .menu-horizontal > *:not(:only-child):first-child .szh-menu__item {
2023-04-09 17:21:02 +00:00
padding-right: 4px !important;
}
.szh-menu
.menu-horizontal
> .szh-menu__item:not(:only-child):not(:first-child):not(:last-child),
.szh-menu
.menu-horizontal
> *:not(:only-child):not(:first-child):not(:last-child)
.szh-menu__item {
2023-04-09 17:21:02 +00:00
padding-left: 8px !important;
padding-right: 4px !important;
}
.szh-menu .menu-horizontal > .szh-menu__item:not(:only-child):last-child,
.szh-menu .menu-horizontal > *:not(:only-child):last-child .szh-menu__item {
2023-04-09 17:21:02 +00:00
padding-left: 8px !important;
}
2023-02-16 09:51:54 +00:00
.szh-menu .szh-menu__item .menu-shortcut {
opacity: 0.5;
font-weight: normal;
}
2023-02-25 02:04:30 +00:00
.szh-menu .szh-menu__item form {
display: flex;
flex: 1;
gap: 8px;
align-items: center;
}
.szh-menu .szh-menu__item form > input[type='text'] {
flex-grow: 1;
width: 100%;
2023-02-25 02:04:30 +00:00
}
.szh-menu .szh-menu__item--hover .danger-icon {
color: var(--red-color);
opacity: 1;
}
.szh-menu
.szh-menu__item:not(.szh-menu__item--disabled):not(
.szh-menu__item--hover
).danger {
color: var(--red-color);
}
.szh-menu
.szh-menu__item:not(.szh-menu__item--disabled):not(
.szh-menu__item--hover
).danger
.icon {
opacity: 1;
}
2023-02-16 09:51:54 +00:00
.szh-menu .menu-wrap {
display: flex;
flex-wrap: wrap;
}
.szh-menu .menu-wrap > * {
flex-grow: 1;
flex-basis: 50%;
}
2023-02-16 09:51:54 +00:00
/* GLASS MENU */
.glass-menu {
background-color: var(--bg-blur-color);
backdrop-filter: blur(8px) saturate(3);
2023-02-17 11:31:28 +00:00
border: var(--hairline-width) solid var(--bg-color);
2023-02-16 09:51:54 +00:00
box-shadow: 0 3px 8px -1px var(--drop-shadow-color);
2023-02-23 02:45:28 +00:00
text-shadow: 0 var(--hairline-width) var(--bg-color), 0 0 8px var(--bg-color);
2023-02-16 09:51:54 +00:00
}
.glass-menu .szh-menu__item--hover {
background-color: var(--button-bg-blur-color);
2023-02-23 07:56:35 +00:00
text-shadow: none;
2023-02-16 09:51:54 +00:00
}
/* DONUT METER */
meter.donut {
appearance: none;
}
2022-12-26 12:34:24 +00:00
meter.donut::-webkit-meter-inner-element,
meter.donut::-webkit-meter-bar,
meter.donut::-webkit-meter-optimum-value,
meter.donut::-webkit-meter-suboptimum-value,
meter.donut::-webkit-meter-even-less-good-value {
display: none;
}
2022-12-26 12:34:24 +00:00
meter.donut::-moz-meter-bar {
background: transparent;
}
meter.donut {
position: relative;
2023-08-13 04:00:33 +00:00
--dimension: 24px;
--border-width: 2px;
--middle-circle-radius: calc(var(--dimension) / 2 - var(--border-width));
width: var(--dimension);
height: var(--dimension);
border-radius: 50%;
--fill: calc(var(--percentage) * 1%);
--color: var(--link-color);
--middle-circle: radial-gradient(
circle at 50% 50%,
2023-08-13 04:00:33 +00:00
var(--bg-color) var(--middle-circle-radius),
transparent var(--middle-circle-radius)
);
background-image: var(--middle-circle),
2023-08-13 04:00:33 +00:00
conic-gradient(var(--color) var(--fill), var(--outline-color) 0);
transform: scale(0.7);
transition: transform 0.2s ease-in-out;
}
meter.donut.warning {
--color: var(--orange-color);
2023-08-13 04:00:33 +00:00
transform: scale(1);
}
meter.donut.danger {
--color: var(--red-color);
2023-08-13 04:00:33 +00:00
transform: scale(1);
}
meter.donut.explode {
background-image: none;
2023-08-13 04:00:33 +00:00
transform: scale(1);
}
meter.donut:is(.warning, .danger, .explode):after {
content: attr(data-left);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;
color: var(--text-insignificant-color);
}
meter.donut:is(.danger, .explode):after {
color: var(--red-color);
}
2023-03-23 17:26:49 +00:00
meter.donut[hidden] {
display: inline-block;
visibility: hidden;
}
2023-02-23 07:56:58 +00:00
/* SHINY PILL */
2022-12-26 06:02:05 +00:00
:is(.shiny-pill, :root .toastify.shiny-pill) {
pointer-events: auto;
color: var(--link-text-color);
font-weight: 500;
text-shadow: 0 1px var(--bg-color);
background-color: var(--bg-color);
border: 1px solid var(--outline-color);
2023-09-23 11:16:32 +00:00
box-shadow: 0 3px 16px var(--drop-shadow-color),
0 6px 16px -3px var(--drop-shadow-color);
}
2023-09-23 11:16:32 +00:00
:is(.shiny-pill, :root .toastify.shiny-pill):hover:not(:active) {
color: var(--text-color);
border-color: var(--link-color);
2023-09-23 11:16:32 +00:00
filter: none !important;
box-shadow: 0 0 0 1px var(--link-text-color),
0 3px 16px var(--drop-shadow-color),
0 6px 16px -3px var(--drop-shadow-color),
0 6px 16px var(--drop-shadow-color);
2023-02-23 07:56:58 +00:00
}
/* TOAST */
:root .toastify {
user-select: none;
2023-02-23 07:56:58 +00:00
padding: 8px 16px;
border-radius: 999px;
pointer-events: none;
color: var(--button-text-color);
text-shadow: 0 calc(var(--hairline-width) * -1) var(--drop-shadow-color);
background-color: var(--button-bg-color);
background-image: none;
box-shadow: 0 3px 8px -1px var(--drop-shadow-color),
0 10px 36px -4px var(--button-bg-blur-color);
2022-12-26 06:02:05 +00:00
}
.toastify-bottom {
margin-bottom: env(safe-area-inset-bottom);
}
2022-12-26 06:02:05 +00:00
/* TOAST - ALERT */
:root .toastify.alert {
z-index: 1001;
box-shadow: 0 8px 32px var(--text-insignificant-color);
background-color: var(--bg-color);
color: var(--text-color);
cursor: pointer;
pointer-events: auto;
padding: 16px 32px;
font-size: max(calc(16px * 1.1), var(--text-size));
text-align: center;
line-height: 1.25;
}
:root .toastify.alert:is(:hover, :active) {
background-color: var(--bg-faded-color);
}
2023-01-06 04:51:53 +00:00
/* AVATARS STACK */
.avatars-stack {
display: flex;
flex-wrap: wrap;
gap: 4px;
}
2023-01-27 03:47:37 +00:00
/* I'm just feeling bored, so having fun here */
@media (hover: hover) {
2023-03-03 03:38:10 +00:00
.avatars-stack > * img {
2023-01-27 03:47:37 +00:00
transition: transform 0.3s ease-in-out;
}
2023-03-03 03:38:10 +00:00
.avatars-stack:hover > *:nth-of-type(odd) img {
2023-01-27 03:47:37 +00:00
transform: rotate(15deg);
}
2023-03-03 03:38:10 +00:00
.avatars-stack:hover > *:nth-of-type(even) img {
2023-01-27 03:47:37 +00:00
transform: rotate(-15deg);
}
}
2023-01-06 04:51:53 +00:00
.deck-container {
width: 100%;
flex-grow: 1;
}
2023-08-19 11:21:51 +00:00
:is(#home-page, #welcome, #columns, #loader-root) ~ .deck-container {
z-index: 10;
position: fixed;
inset: 0;
}
2023-08-19 11:21:51 +00:00
:is(#home-page, #welcome, #columns, #loader-root):has(~ .deck-container) {
display: block;
position: absolute;
user-select: none;
pointer-events: none;
opacity: 0;
2023-02-17 03:29:39 +00:00
/* This causes scrollTop to be reset to 0 when the page is hidden */
/* content-visibility: hidden; */
}
/* 404 */
#not-found-page {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
cursor: default;
color: var(--text-insignificant-color);
background-image: radial-gradient(
circle at 50% 50%,
var(--bg-color) 25%,
var(--bg-faded-color)
);
text-shadow: 0 1px var(--bg-color);
}
2023-01-31 11:08:10 +00:00
/* ACCOUNT STATUSES */
.header-account {
font-size: 90% !important;
cursor: pointer;
}
.header-account div {
font-weight: normal;
color: var(--text-insignificant-color);
}
2023-02-11 08:48:47 +00:00
/* LINK LISTS? */
ul.link-list {
list-style: none;
padding: 16px;
margin: 0;
display: flex;
flex-direction: column;
gap: 1px;
2023-02-11 08:48:47 +00:00
}
ul.link-list li {
padding: 0;
margin: 0;
}
ul.link-list li a {
--radius: 8px;
2023-02-11 08:48:47 +00:00
display: block;
background-color: var(--bg-faded-color);
line-height: 1.25;
padding: 12px;
text-decoration: none;
line-height: 1.4;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
}
ul.link-list li:first-child a {
border-top-left-radius: var(--radius);
border-top-right-radius: var(--radius);
}
ul.link-list li:last-child a {
border-bottom-left-radius: var(--radius);
border-bottom-right-radius: var(--radius);
}
ul.link-list li a:is(:hover, :focus) {
color: var(--text-color);
}
ul.link-list li a:active {
filter: brightness(0.9);
2023-02-11 08:48:47 +00:00
}
ul.link-list li a * {
vertical-align: middle;
}
ul.link-list li a .icon {
flex-shrink: 0;
}
2023-02-11 08:48:47 +00:00
@media (min-width: 40em) {
ul.link-list li a {
background-color: var(--bg-color);
}
}
/* NAV MENU BUTTON */
.nav-menu-button.with-avatar {
position: relative;
}
.nav-menu-button:is(:hover, :focus):not(:active) {
filter: none !important;
}
.nav-menu-button .avatar {
transition: box-shadow 0.3s ease-out;
}
.nav-menu-button:is(:hover, :focus, .active) .avatar {
box-shadow: 0 0 0 2px var(--bg-color), 0 0 0 4px var(--link-light-color);
}
.nav-menu-button.with-avatar .icon {
position: absolute;
bottom: 4px;
right: 8px;
background-color: var(--bg-color);
border-radius: 2px;
}
.nav-menu-button.with-avatar:hover:not(:active, .active) .icon {
transform: translateY(-1px);
}
2023-02-16 09:52:41 +00:00
/* COLUMNS */
#columns {
display: flex;
width: 100vw;
overflow-y: hidden;
2023-02-18 12:48:24 +00:00
overflow-x: scroll;
2023-02-16 09:52:41 +00:00
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
2023-02-18 12:48:24 +00:00
/* scrollbar-width: none; */
2023-02-16 09:52:41 +00:00
overscroll-behavior: contain;
2023-02-18 12:48:24 +00:00
overscroll-behavior-x: contain;
/* This `transform` fixes horizontal scrolling for pointer devices on iPad */
transform: translateZ(0);
2023-02-16 09:52:41 +00:00
}
2023-02-18 12:48:24 +00:00
/* #columns::-webkit-scrollbar {
2023-02-16 09:52:41 +00:00
display: none;
2023-02-18 12:48:24 +00:00
} */
2023-02-16 09:52:41 +00:00
#columns > * {
overscroll-behavior: auto;
scroll-snap-align: left;
scroll-snap-stop: always;
2023-02-18 12:48:24 +00:00
overscroll-behavior: auto;
flex-basis: min(100vw, 360px);
2023-02-16 09:52:41 +00:00
flex-shrink: 0;
2023-04-17 11:37:38 +00:00
box-shadow: -1px 0 var(--bg-color), -2px 0 var(--drop-shadow-color),
-3px 0 var(--bg-color);
2023-02-16 09:52:41 +00:00
}
#columns:has(> :nth-child(3)) > *:nth-child(even),
#columns:has(> :nth-child(3))
> *:nth-child(even)
.timeline-deck
> header
.header-grid {
background-color: var(--bg-blur-color);
}
2023-02-18 12:48:24 +00:00
#columns .header-grid input {
pointer-events: none;
}
#columns
.header-grid
.header-side:first-of-type
:is(button, .button)
~ :is(button, .button),
#columns .deck-container:not(:first-of-type) .header-grid .header-side > * {
display: none;
}
@media (min-width: 40em) {
#columns {
2023-04-17 11:37:38 +00:00
/* gap: 16px; */
/* padding: 0 16px; */
/* background-color: var(--bg-faded-color); */
2023-02-18 12:48:24 +00:00
height: 100vh;
height: 100dvh;
justify-content: stretch;
align-items: stretch;
}
#columns > * {
padding: 0 16px;
2023-04-17 11:37:38 +00:00
border-inline: var(--hairline-width) solid var(--bg-faded-color);
/* border-radius: 16px; */
/* box-shadow: -4px 0 16px -8px var(--drop-shadow-color); */
2023-02-18 12:48:24 +00:00
height: unset;
/* background-color: var(--bg-faded-blur-color); */
/* backdrop-filter: blur(16px) saturate(3); */
2023-04-17 11:37:38 +00:00
/* background-image: linear-gradient(
2023-02-18 12:48:24 +00:00
160deg,
transparent 20%,
var(--bg-color),
transparent 75%
2023-04-17 11:37:38 +00:00
); */
/* position: sticky;
left: 0; */
/* transition: all 0.3s ease-out; */
2023-04-17 11:37:38 +00:00
}
/* #columns > *:nth-child(2) {
left: 5%;
}
#columns > *:nth-child(3) {
left: 10%;
}
#columns > *:nth-child(4) {
left: 15%;
}
#columns > *:nth-child(5) {
left: 20%;
}
#columns > *:nth-child(6) {
left: 25%;
}
#columns > *:nth-child(7) {
left: 30%;
2023-02-18 12:48:24 +00:00
}
2023-04-17 11:37:38 +00:00
#columns > *:nth-child(8) {
left: 35%;
}
#columns > *:nth-child(9) {
left: 40%;
}
#columns > *:nth-child(10) {
left: 45%;
}
#columns > *:focus {
z-index: 1;
box-shadow: 0 0 32px var(--drop-shadow-color),
0 0 32px var(--drop-shadow-color);
} */
/* #columns:has(> *:focus) > *:not(:focus) > * {
filter: opacity(0.8);
} */
2023-02-18 12:48:24 +00:00
#columns > *:focus-visible,
#columns > *:has(:focus-visible) {
2023-04-17 11:37:38 +00:00
/* box-shadow: 0 4px 16px var(--drop-shadow-color),
0 4px 16px var(--drop-shadow-color); */
/* border-color: var(--outline-hover-color); */
z-index: 1;
box-shadow: inset 0 0 0 1px var(--outline-hover-color);
2023-02-18 12:48:24 +00:00
}
#columns .timeline:not(.flat) > li:has(.status-link.is-active),
#columns
.timeline:not(.flat)
> li:not(:has(.status-carousel)):has(+ li .status-link.is-active),
#columns
.timeline:not(.flat)
> li:not(:has(.status-carousel)):has(.status-link.is-active)
+ li {
transform: none;
}
#columns .timeline-deck > header {
margin: 0;
}
2023-04-17 11:37:38 +00:00
#columns .timeline-deck > header[hidden] {
transform: none;
pointer-events: auto;
2023-04-17 11:37:38 +00:00
}
#columns li.timeline-item-carousel {
2023-02-18 12:48:24 +00:00
width: auto;
transform: none;
}
}
2023-02-16 09:52:41 +00:00
2023-04-03 02:36:31 +00:00
/* FILTER BAR */
.filter-bar {
padding: 8px 16px;
background-color: var(--bg-faded-color);
display: flex;
gap: 8px;
overflow-x: auto;
mask-image: linear-gradient(
to right,
transparent,
black 16px,
black calc(100% - 16px),
transparent
);
align-items: center;
}
.filter-bar.centered {
justify-content: center;
}
2023-04-03 02:36:31 +00:00
@media (min-width: 40em) {
.filter-bar {
background-color: transparent;
}
}
.filter-bar > a:not(.filter-clear) {
2023-04-03 02:36:31 +00:00
padding: 8px 16px;
border-radius: 999px;
background-color: var(--bg-color);
color: var(--link-color);
text-decoration: none;
white-space: nowrap;
border: 2px solid transparent;
transition: all 0.3s ease-out;
display: inline-flex;
align-items: center;
gap: 8px;
}
.filter-bar > a:is(:hover, :focus) {
border-color: var(--link-light-color);
}
.filter-bar > a > * {
vertical-align: middle;
}
.filter-bar > a.is-active {
border-color: var(--link-color);
box-shadow: inset 0 0 8px var(--link-faded-color);
}
.filter-bar > a > .filter-count {
font-size: 80%;
display: inline-block;
color: var(--text-insignificant-color);
min-width: 16px;
min-height: 16px;
padding: 4px;
margin: -4px -8px -4px 0;
background-color: var(--bg-faded-color);
border-radius: 999px;
}
2023-08-01 01:43:25 +00:00
/* NOTIFICATION PEEK */
.notification-peek .notification {
padding-inline: 0 !important;
}
2023-02-11 08:48:47 +00:00
/* OTHERS */
2022-12-10 09:14:48 +00:00
@media (min-width: 40em) {
html,
body {
background-color: var(--bg-faded-color);
}
.deck-container {
background-color: var(--bg-faded-color);
}
2022-12-10 09:14:48 +00:00
#app {
display: flex;
}
2023-01-22 09:19:37 +00:00
.deck-container {
transition: transform 0.4s var(--timing-function);
}
.deck-container:has(~ .deck-backdrop .deck) {
2023-01-22 09:19:37 +00:00
transition: transform 0.4s ease-out;
transform: translate3d(-5vw, 0, 0);
}
2022-12-10 09:14:48 +00:00
.deck-backdrop .deck {
/* width: 50%;
min-width: var(--main-width); */
2022-12-24 15:17:13 +00:00
border-left: 1px solid var(--divider-color);
2022-12-10 09:14:48 +00:00
}
.timeline-deck {
border: 0;
background-color: transparent;
}
2023-01-14 11:42:04 +00:00
.timeline-deck > header {
2023-01-29 11:11:58 +00:00
--margin-top: 8px;
2023-01-29 02:17:29 +00:00
top: var(--margin-top);
2023-02-08 11:11:33 +00:00
margin-inline: 8px;
}
.timeline-deck > header .header-grid {
2022-12-10 09:14:48 +00:00
border-bottom: 0;
2023-02-08 11:11:33 +00:00
border-radius: 16px;
2022-12-10 09:14:48 +00:00
background-color: var(--bg-faded-blur-color);
2023-01-29 02:17:29 +00:00
background-image: none;
border-radius: 16px;
2023-02-08 11:11:33 +00:00
min-height: 4em;
2023-01-29 02:17:29 +00:00
}
.timeline-deck > header[hidden] {
transform: translate3d(0, calc((100% + var(--margin-top)) * -1), 0);
2022-12-10 09:14:48 +00:00
}
2023-09-23 11:16:44 +00:00
.deck > header {
text-shadow: 0 1px var(--bg-color);
}
2023-01-14 11:42:04 +00:00
.deck > header h1 {
2022-12-10 09:14:48 +00:00
font-size: 1.5em;
}
2023-01-29 02:17:29 +00:00
.updates-button {
margin-top: 24px;
}
.timeline:not(.flat) > li {
--item-radius: 16px;
2022-12-10 09:14:48 +00:00
border: 1px solid var(--divider-color);
margin: 16px 0;
background-color: var(--bg-color);
border-radius: var(--item-radius);
2022-12-10 09:14:48 +00:00
overflow: hidden;
box-shadow: 0px 1px var(--bg-blur-color);
transition: transform 0.4s var(--timing-function);
--back-transition: transform 0.4s ease-out;
}
.timeline:not(.flat) > li > a {
border-radius: inherit;
}
.timeline:not(.flat) > li:not(:has(.status-carousel)) {
transform: translate3d(0, 0, 0);
}
2023-04-02 08:16:27 +00:00
.timeline:not(.flat)
> li:not(.timeline-item-container-end, .timeline-item-container-middle):has(
.status-badge:not(:empty)
) {
border-top-right-radius: 8px;
}
.timeline:not(.flat) > li:has(.status-link.is-active) {
transition: var(--back-transition);
transform: translate3d(-2.5vw, 0, 0);
}
2023-09-09 15:55:11 +00:00
.timeline:not(.flat)
> li.timeline-item-container:has(.status-link.is-active) {
border-top-left-radius: var(--item-radius);
border-bottom-left-radius: var(--item-radius);
}
.timeline:not(.flat)
> li:not(:has(.status-carousel)):has(+ li .status-link.is-active),
.timeline:not(.flat)
> li:not(:has(.status-carousel)):has(.status-link.is-active)
+ li {
transition: var(--back-transition);
transform: translate3d(-1.25vw, 0, 0);
2022-12-10 09:14:48 +00:00
}
2023-09-09 15:55:11 +00:00
.timeline:not(.flat)
> li.timeline-item-container:not(:has(.status-carousel)):has(
+ li .status-link.is-active
) {
border-top-left-radius: var(--item-radius);
}
.timeline:not(.flat)
> li.timeline-item-container:not(:has(.status-carousel)):has(
.status-link.is-active
)
+ li.timeline-item-container {
border-bottom-left-radius: var(--item-radius);
}
2022-12-10 09:14:48 +00:00
.box {
padding: 32px;
}
/* :is(.carousel-top-controls, .carousel-controls) {
padding: 32px;
} */
li.timeline-item-carousel {
width: 95vw;
max-width: calc(320px * 3.3);
transform: translateX(calc(-50% + var(--main-width) / 2));
}
}