2022-12-24 17:26:43 +03:00
|
|
|
.status-deck header h1 {
|
|
|
|
grid-column: 1 / 3;
|
|
|
|
}
|
|
|
|
.status-deck header {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.status-deck header h1 {
|
|
|
|
min-width: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-deck header.inview h1 {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-heading {
|
2023-03-08 12:17:23 +03:00
|
|
|
font-size: var(--text-size);
|
2022-12-24 17:26:43 +03:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2022-12-29 06:47:10 +03:00
|
|
|
.hero-heading .icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
color: var(--text-insignificant-color);
|
|
|
|
}
|
2022-12-24 17:26:43 +03:00
|
|
|
.hero-heading .insignificant {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2023-01-10 05:44:16 +03:00
|
|
|
|
|
|
|
.ancestors-indicator {
|
|
|
|
font-size: 70% !important;
|
|
|
|
}
|
|
|
|
.ancestors-indicator[hidden] {
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2023-02-17 12:37:31 +03:00
|
|
|
|
2023-02-19 09:49:53 +03:00
|
|
|
.post-status-banner {
|
2023-02-17 12:37:31 +03:00
|
|
|
position: sticky;
|
2023-02-17 20:28:10 +03:00
|
|
|
bottom: 16px;
|
|
|
|
bottom: max(16px, env(safe-area-inset-bottom));
|
2023-02-17 12:37:31 +03:00
|
|
|
font-size: 90%;
|
2023-02-19 09:49:53 +03:00
|
|
|
background-color: var(--bg-faded-color);
|
2023-02-17 12:37:31 +03:00
|
|
|
padding: 16px;
|
2023-02-19 09:49:53 +03:00
|
|
|
margin: 0 16px;
|
2023-02-17 20:28:10 +03:00
|
|
|
border-radius: 16px;
|
2023-02-17 12:37:31 +03:00
|
|
|
white-space: pre-wrap;
|
|
|
|
line-height: 1.2;
|
2023-02-17 20:28:10 +03:00
|
|
|
max-width: var(--main-width);
|
2023-02-17 12:37:31 +03:00
|
|
|
}
|
2023-02-19 09:49:53 +03:00
|
|
|
.post-status-banner > p:first-of-type {
|
2023-02-17 12:37:31 +03:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|