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

432 lines
7.2 KiB
SCSS
Raw Normal View History

2020-07-27 19:49:57 +00:00
@import '../../_variables.scss';
$status-margin: 0.75em;
2020-07-27 22:27:11 +00:00
.Status {
2020-07-27 19:49:57 +00:00
min-width: 0;
&:hover {
--still-image-img: visible;
--still-image-canvas: 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-10-01 13:01:57 +00:00
&.-conversation {
border-left-width: 4px;
border-left-style: solid;
}
2020-09-08 06:32:43 +00:00
.gravestone {
padding: $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;
padding: $status-margin;
&.-repeat {
padding-top: 0;
}
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.pin {
padding: $status-margin $status-margin 0;
display: flex;
align-items: center;
justify-content: flex-end;
}
.left-side {
margin-right: $status-margin;
}
.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 {
2020-07-27 19:49:57 +00:00
margin-bottom: $status-margin;
}
2020-08-04 16:08:49 +00:00
.status-username {
2020-07-27 19:49:57 +00:00
white-space: nowrap;
font-size: 14px;
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
2020-07-27 22:27:11 +00:00
.emoji {
2020-07-27 19:49:57 +00:00
width: 14px;
height: 14px;
vertical-align: middle;
2020-07-27 22:27:11 +00:00
object-fit: contain;
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;
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: 18px;
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;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.heading-right {
display: flex;
flex-shrink: 0;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.timeago {
margin-right: 0.2em;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.heading-reply-row {
position: relative;
align-content: baseline;
font-size: 12px;
line-height: 18px;
max-width: 100%;
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.reply-to-and-accountname {
display: flex;
height: 18px;
margin-right: 0.5em;
max-width: 100%;
2020-07-27 19:49:57 +00:00
2020-08-17 21:26:31 +00:00
.reply-to-link {
white-space: nowrap;
word-break: break-word;
text-overflow: ellipsis;
overflow-x: hidden;
}
2020-07-27 22:27:11 +00:00
.icon-reply {
// mirror the icon
transform: scaleX(-1);
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
2020-08-04 16:08:49 +00:00
& .reply-to-popover,
& .reply-to-no-popover {
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
}
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
2020-07-27 22:27:11 +00:00
.reply-to {
display: flex;
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
2020-07-27 22:27:11 +00:00
.reply-to-text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-left: 0.2em;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.replies-separator {
margin-left: 0.4em;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.replies {
line-height: 18px;
font-size: 12px;
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 {
padding: 0.4em $status-margin;
line-height: 22px;
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
.right-side {
2020-07-27 19:49:57 +00:00
display: flex;
align-content: center;
flex-wrap: wrap;
2020-07-27 22:27:11 +00:00
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
i {
padding: 0 0.2em;
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;
margin-top: $status-margin;
> * {
max-width: 4em;
flex: 1;
}
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.button-reply {
&:not(.-disabled) {
cursor: pointer;
}
2020-07-27 19:49:57 +00:00
2020-07-27 22:27:11 +00:00
&:not(.-disabled):hover,
&.-active {
color: $fallback--cBlue;
color: var(--cBlue, $fallback--cBlue);
}
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
2020-07-27 22:27:11 +00:00
.favs-repeated-users {
margin-top: $status-margin;
}
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 {
margin-right: $status-margin;
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);
font-size: 12px;
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;
font-size: 16px;
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 {
margin-left: 20px;
2020-07-27 19:49:57 +00:00
}
2020-07-27 22:27:11 +00:00
.avatar:not(.repeater-avatar) {
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
&.avatar-compact {
width: 32px;
height: 32px;
}
2020-07-27 19:49:57 +00:00
}
}
}