akkoma-fe/src/components/status/status.scss

448 lines
7.6 KiB
SCSS
Raw Normal View History

2020-07-27 19:49:57 +00:00
@import '../../_variables.scss';
2020-07-27 22:27:11 +00:00
.Status {
2020-07-27 19:49:57 +00:00
min-width: 0;
white-space: normal;
2022-02-04 12:20:56 +00:00
word-wrap: break-word;
word-break: break-word;
2020-07-27 19:49:57 +00:00
&:hover {
2020-10-29 19:39:36 +00:00
--_still-image-img-visibility: visible;
--_still-image-canvas-visibility: hidden;
--_still-image-label-visibility: hidden;
2020-07-27 22:27:11 +00:00
}
&.-focused {
2020-07-27 19:49:57 +00:00
background-color: $fallback--lightBg;
background-color: var(--selectedPost, $fallback--lightBg);
color: $fallback--text;
color: var(--selectedPostText, $fallback--text);
2020-07-27 22:27:11 +00:00
2020-07-27 19:49:57 +00:00
--lightText: var(--selectedPostLightText, $fallback--light);
--faint: var(--selectedPostFaintText, $fallback--faint);
--faintLink: var(--selectedPostFaintLink, $fallback--faint);
--postLink: var(--selectedPostPostLink, $fallback--faint);
--postFaintLink: var(--selectedPostFaintPostLink, $fallback--faint);
--icon: var(--selectedPostIcon, $fallback--icon);
}
2020-09-08 06:32:43 +00:00
.gravestone {
2022-03-08 00:28:38 +00:00
padding: var(--status-margin, $status-margin);
color: $fallback--faint;
color: var(--faint, $fallback--faint);
display: flex;
2020-09-08 06:31:02 +00:00
.deleted-text {
margin: 0.5em 0;
align-items: center;
}
}
2020-07-27 22:27:11 +00:00
.status-container {
display: flex;
2022-03-08 00:28:38 +00:00
padding: var(--status-margin, $status-margin);
2020-07-27 22:27:11 +00:00
> * {
min-width: 0;
}
2020-07-27 22:27:11 +00:00
&.-repeat {
padding-top: 0;
}
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.pin {
2022-03-08 00:28:38 +00:00
padding: var(--status-margin, $status-margin) var(--status-margin, $status-margin) 0;
2020-07-27 22:27:11 +00:00
display: flex;
align-items: center;
justify-content: flex-end;
}
._misclick-prevention & {
pointer-events: none;
.attachments {
pointer-events: initial;
cursor: initial;
}
}
2020-07-27 22:27:11 +00:00
.left-side {
2022-03-08 00:28:38 +00:00
margin-right: var(--status-margin, $status-margin);
2020-07-27 22:27:11 +00:00
}
.right-side {
2020-07-27 19:49:57 +00:00
flex: 1;
2020-07-27 22:27:11 +00:00
min-width: 0;
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.usercard {
2022-03-08 00:28:38 +00:00
margin-bottom: var(--status-margin, $status-margin);
2020-07-27 19:49:57 +00:00
}
2020-08-04 16:08:49 +00:00
.status-username {
2020-07-27 19:49:57 +00:00
white-space: nowrap;
overflow: hidden;
max-width: 85%;
font-weight: bold;
2020-07-27 22:27:11 +00:00
flex-shrink: 1;
margin-right: 0.4em;
text-overflow: ellipsis;
2020-07-27 19:49:57 +00:00
--_still_image-label-scale: 0.25;
--emoji-size: 14px;
2020-07-27 19:49:57 +00:00
}
.status-favicon {
height: 18px;
width: 18px;
margin-right: 0.4em;
}
2020-07-27 22:27:11 +00:00
.status-heading {
2020-07-27 19:49:57 +00:00
margin-bottom: 0.5em;
.emoji {
--emoji-size: 16px;
}
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.heading-name-row {
display: flex;
justify-content: space-between;
line-height: 1.3;
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
a {
display: inline-block;
word-break: break-all;
}
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.account-name {
min-width: 1.6em;
margin-right: 0.4em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1 1 0;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.heading-left {
display: flex;
min-width: 0;
flex-wrap: wrap;
img {
aspect-ratio: 1 / 1;
}
.nowrap{
white-space: nowrap;
}
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.heading-right {
display: flex;
flex-shrink: 0;
.button-unstyled {
padding: 5px;
margin: -5px;
height: min-content;
&:hover svg {
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
}
}
.svg-inline--fa {
margin-left: 0.25em;
}
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
2021-06-10 11:01:26 +00:00
.glued-label {
display: inline-flex;
white-space: nowrap;
}
2020-07-27 22:27:11 +00:00
.timeago {
margin-right: 0.2em;
}
2020-07-27 19:49:57 +00:00
& .heading-reply-row,
& .heading-edited-row {
2020-07-27 22:27:11 +00:00
position: relative;
align-content: baseline;
2022-04-20 20:44:33 +00:00
font-size: 0.85em;
2022-02-03 20:10:45 +00:00
margin-top: 0.2em;
line-height: 130%;
2020-07-27 22:27:11 +00:00
max-width: 100%;
align-items: stretch;
}
2020-07-27 19:49:57 +00:00
2020-08-04 16:08:49 +00:00
& .reply-to-popover,
2022-02-03 20:10:45 +00:00
& .reply-to-no-popover,
& .mentions {
2020-07-27 22:27:11 +00:00
min-width: 0;
margin-right: 0.4em;
2020-08-17 21:26:31 +00:00
flex-shrink: 0;
2020-08-04 16:08:49 +00:00
}
2022-02-03 20:41:38 +00:00
2022-02-03 20:10:45 +00:00
.reply-glued-label {
margin-right: 0.5em;
}
2020-07-27 19:49:57 +00:00
2020-08-04 16:08:49 +00:00
.reply-to-popover {
2020-08-17 21:26:31 +00:00
.reply-to:hover::before {
content: '';
display: block;
position: absolute;
bottom: 0;
width: 100%;
2020-07-27 22:27:11 +00:00
border-bottom: 1px solid var(--faint);
2020-08-17 21:26:31 +00:00
pointer-events: none;
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.faint-link:hover {
// override default
text-decoration: none;
2020-07-27 19:49:57 +00:00
}
2020-08-04 16:41:03 +00:00
&.-strikethrough {
2020-08-19 09:14:00 +00:00
.reply-to::after {
2020-08-04 16:41:03 +00:00
content: '';
display: block;
position: absolute;
top: 50%;
width: 100%;
border-bottom: 1px solid var(--faint);
2020-08-17 21:26:31 +00:00
pointer-events: none;
2020-08-04 16:41:03 +00:00
}
}
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
& .mentions,
& .reply-to {
white-space: nowrap;
2020-08-18 21:38:54 +00:00
position: relative;
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
& .mentions-text,
& .reply-to-text {
color: var(--faint);
2020-07-27 22:27:11 +00:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2020-07-27 19:49:57 +00:00
.mentions-line {
2021-06-10 11:01:26 +00:00
display: inline;
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.replies {
margin-top: 0.25em;
line-height: 1.3;
2022-04-20 20:44:33 +00:00
font-size: 0.85em;
2020-07-27 22:27:11 +00:00
display: flex;
flex-wrap: wrap;
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
& > * {
margin-right: 0.4em;
2020-07-27 19:49:57 +00:00
}
}
2020-07-27 22:27:11 +00:00
.reply-link {
height: 17px;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.repeat-info {
2022-03-08 00:28:38 +00:00
padding: 0.4em var(--status-margin, $status-margin);
2020-07-27 19:49:57 +00:00
.repeat-icon {
color: $fallback--cGreen;
color: var(--cGreen, $fallback--cGreen);
2020-07-27 19:49:57 +00:00
}
}
2020-07-27 22:27:11 +00:00
.repeater-avatar {
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
margin-left: 28px;
width: 20px;
height: 20px;
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.repeater-name {
text-overflow: ellipsis;
margin-right: 0;
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.emoji {
width: 14px;
height: 14px;
vertical-align: middle;
object-fit: contain;
}
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.status-fadein {
animation-duration: 0.4s;
animation-name: fadein;
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
@keyframes fadein {
from {
opacity: 0;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
to {
opacity: 1;
}
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.status-actions {
position: relative;
width: 100%;
display: flex;
2022-03-08 00:28:38 +00:00
margin-top: var(--status-margin, $status-margin);
2020-07-27 22:27:11 +00:00
> * {
max-width: 4em;
flex: 1;
}
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.muted {
padding: 0.25em 0.6em;
height: 1.2em;
line-height: 1.2em;
2020-07-27 19:49:57 +00:00
text-overflow: ellipsis;
overflow: hidden;
2020-07-27 22:27:11 +00:00
display: flex;
flex-wrap: nowrap;
2020-07-27 19:49:57 +00:00
2020-08-04 16:08:49 +00:00
& .status-username,
2020-07-27 22:27:11 +00:00
& .mute-thread,
& .mute-words {
word-wrap: normal;
word-break: normal;
white-space: nowrap;
}
2020-07-27 19:49:57 +00:00
2020-08-04 16:08:49 +00:00
& .status-username,
2020-07-27 22:27:11 +00:00
& .mute-words {
text-overflow: ellipsis;
overflow: hidden;
}
2020-07-27 19:49:57 +00:00
2020-08-04 16:08:49 +00:00
.status-username {
2020-07-27 22:27:11 +00:00
font-weight: normal;
flex: 0 1 auto;
margin-right: 0.2em;
2020-08-04 16:08:49 +00:00
font-size: smaller;
2020-07-27 22:27:11 +00:00
}
.mute-thread {
flex: 0 0 auto;
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.mute-words {
flex: 1 0 5em;
margin-left: 0.2em;
&::before {
content: ' ';
}
}
.unmute {
flex: 0 0 auto;
margin-left: auto;
display: block;
}
2020-07-27 19:49:57 +00:00
}
2020-08-04 16:08:49 +00:00
.reply-form {
padding-top: 0;
padding-bottom: 0;
}
2020-07-27 22:27:11 +00:00
.reply-body {
flex: 1;
}
2020-07-27 19:49:57 +00:00
.quote-form {
padding-top: 0;
padding-bottom: 0;
}
.quote-body {
flex: 1;
}
2020-07-27 22:27:11 +00:00
.favs-repeated-users {
2022-03-08 00:28:38 +00:00
margin-top: var(--status-margin, $status-margin);
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
.stats {
width: 100%;
display: flex;
line-height: 1em;
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.avatar-row {
flex: 1;
overflow: hidden;
position: relative;
display: flex;
align-items: center;
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
&::before {
content: '';
position: absolute;
height: 100%;
width: 1px;
left: 0;
background-color: var(--faint, $fallback--faint);
}
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.stat-count {
2022-03-08 00:28:38 +00:00
margin-right: var(--status-margin, $status-margin);
2020-07-27 22:27:11 +00:00
user-select: none;
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.stat-title {
color: var(--faint, $fallback--faint);
2022-04-20 20:44:33 +00:00
font-size: 0.85em;
2020-07-27 22:27:11 +00:00
text-transform: uppercase;
position: relative;
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.stat-number {
font-weight: bolder;
2022-04-20 20:44:33 +00:00
font-size: 1.1em;
2020-07-27 22:27:11 +00:00
line-height: 1em;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
&:hover .stat-title {
text-decoration: underline;
2020-07-27 19:49:57 +00:00
}
}
2020-07-27 22:27:11 +00:00
@media all and (max-width: 800px) {
.repeater-avatar {
2020-07-27 22:27:11 +00:00
margin-left: 20px;
2020-07-27 19:49:57 +00:00
}
2022-03-22 09:43:51 +00:00
.post-avatar {
2020-07-27 22:27:11 +00:00
width: 40px;
height: 40px;
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
// TODO define those other way somehow?
// stylelint-disable rscss/class-format
2022-03-22 08:20:45 +00:00
&.-compact {
2020-07-27 22:27:11 +00:00
width: 32px;
height: 32px;
}
2020-07-27 19:49:57 +00:00
}
}
}