2018-01-13 17:48:18 -05:00
|
|
|
.status__content--with-action {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
2018-01-13 18:47:59 -05:00
|
|
|
position: relative;
|
|
|
|
margin: 10px 0;
|
2018-01-13 17:48:18 -05:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-weight: 400;
|
2018-01-13 18:47:59 -05:00
|
|
|
overflow: visible;
|
|
|
|
padding-top: 5px;
|
2018-01-13 17:48:18 -05:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin: -3px 0 0;
|
|
|
|
}
|
|
|
|
|
Accept richer text from remote statuses
Support abbr, del, pre, blockquote, code, strong, b, em, i, and h1…h5
HTML elements in remote statuses, add corresponding CSS.
2019-04-17 08:23:36 -04:00
|
|
|
p, pre, blockquote {
|
2018-01-13 17:48:18 -05:00
|
|
|
margin-bottom: 20px;
|
2018-01-14 18:31:00 -05:00
|
|
|
white-space: pre-wrap;
|
2018-01-13 17:48:18 -05:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 09:01:00 -04:00
|
|
|
.status__content__text,
|
|
|
|
.e-content {
|
2019-10-25 17:11:49 -04:00
|
|
|
overflow: hidden;
|
2019-06-17 15:01:22 -04:00
|
|
|
|
|
|
|
& > ul,
|
|
|
|
& > ol {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2019-04-21 15:44:31 -04:00
|
|
|
h1, h2, h3, h4, h5 {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
Accept richer text from remote statuses
Support abbr, del, pre, blockquote, code, strong, b, em, i, and h1…h5
HTML elements in remote statuses, add corresponding CSS.
2019-04-17 08:23:36 -04:00
|
|
|
|
2019-04-21 15:44:31 -04:00
|
|
|
h1, h2 {
|
2019-04-24 12:31:50 -04:00
|
|
|
font-weight: 700;
|
2019-05-21 07:11:06 -04:00
|
|
|
font-size: 1.2em;
|
2019-04-21 15:44:31 -04:00
|
|
|
}
|
Accept richer text from remote statuses
Support abbr, del, pre, blockquote, code, strong, b, em, i, and h1…h5
HTML elements in remote statuses, add corresponding CSS.
2019-04-17 08:23:36 -04:00
|
|
|
|
2019-04-21 15:44:31 -04:00
|
|
|
h2 {
|
2019-05-21 07:11:06 -04:00
|
|
|
font-size: 1.1em;
|
2019-04-21 15:44:31 -04:00
|
|
|
}
|
Accept richer text from remote statuses
Support abbr, del, pre, blockquote, code, strong, b, em, i, and h1…h5
HTML elements in remote statuses, add corresponding CSS.
2019-04-17 08:23:36 -04:00
|
|
|
|
2019-04-24 12:31:50 -04:00
|
|
|
h3, h4, h5 {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2019-04-21 15:44:31 -04:00
|
|
|
blockquote {
|
2019-04-24 12:42:17 -04:00
|
|
|
padding-left: 10px;
|
|
|
|
border-left: 3px solid $darker-text-color;
|
|
|
|
color: $darker-text-color;
|
|
|
|
white-space: normal;
|
2019-04-24 12:30:55 -04:00
|
|
|
|
|
|
|
p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-04-21 15:44:31 -04:00
|
|
|
}
|
Accept richer text from remote statuses
Support abbr, del, pre, blockquote, code, strong, b, em, i, and h1…h5
HTML elements in remote statuses, add corresponding CSS.
2019-04-17 08:23:36 -04:00
|
|
|
|
2019-04-21 15:44:31 -04:00
|
|
|
b, strong {
|
2019-04-24 12:29:25 -04:00
|
|
|
font-weight: 700;
|
2019-04-21 15:44:31 -04:00
|
|
|
}
|
Accept richer text from remote statuses
Support abbr, del, pre, blockquote, code, strong, b, em, i, and h1…h5
HTML elements in remote statuses, add corresponding CSS.
2019-04-17 08:23:36 -04:00
|
|
|
|
2019-04-21 15:44:31 -04:00
|
|
|
em, i {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2019-04-21 16:04:19 -04:00
|
|
|
|
2019-04-29 13:00:27 -04:00
|
|
|
sub {
|
|
|
|
font-size: smaller;
|
|
|
|
text-align: sub;
|
|
|
|
}
|
|
|
|
|
2019-08-14 16:26:30 -04:00
|
|
|
sup {
|
|
|
|
font-size: smaller;
|
2019-08-20 15:43:29 -04:00
|
|
|
vertical-align: super;
|
2019-08-14 16:26:30 -04:00
|
|
|
}
|
|
|
|
|
2019-04-21 16:04:19 -04:00
|
|
|
ul, ol {
|
|
|
|
margin-left: 1em;
|
2019-04-24 12:28:33 -04:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-04-21 16:04:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-type: disc;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol {
|
|
|
|
list-style-type: decimal;
|
|
|
|
}
|
Accept richer text from remote statuses
Support abbr, del, pre, blockquote, code, strong, b, em, i, and h1…h5
HTML elements in remote statuses, add corresponding CSS.
2019-04-17 08:23:36 -04:00
|
|
|
}
|
|
|
|
|
2018-01-13 17:48:18 -05:00
|
|
|
a {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
.fa {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: lighten($dark-text-color, 7%);
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 18:47:59 -05:00
|
|
|
.status__content__spoiler {
|
2018-01-14 18:31:00 -05:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.status__content__spoiler--visible {
|
|
|
|
display: block;
|
2018-01-13 18:47:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 00:00:51 -04:00
|
|
|
a.unhandled-link {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
2019-08-01 09:01:09 -04:00
|
|
|
|
|
|
|
.link-origin-tag {
|
|
|
|
color: $gold-star;
|
2019-08-01 10:29:45 -04:00
|
|
|
font-size: 0.8em;
|
2019-08-01 09:01:09 -04:00
|
|
|
}
|
2019-07-28 00:00:51 -04:00
|
|
|
}
|
|
|
|
|
2018-01-13 17:48:18 -05:00
|
|
|
.status__content__spoiler-link {
|
|
|
|
background: lighten($ui-base-color, 30%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 33%);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__spoiler-link {
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 2px;
|
2018-01-13 18:47:59 -05:00
|
|
|
background: lighten($ui-base-color, 30%);
|
|
|
|
border: none;
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 11px;
|
2018-01-13 18:47:59 -05:00
|
|
|
padding: 0 5px;
|
2018-01-13 17:48:18 -05:00
|
|
|
text-transform: uppercase;
|
|
|
|
line-height: inherit;
|
|
|
|
cursor: pointer;
|
2018-01-13 18:47:59 -05:00
|
|
|
vertical-align: bottom;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 33%);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__spoiler-icon {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 0 0 5px;
|
|
|
|
border-left: 1px solid currentColor;
|
|
|
|
padding: 0 0 0 4px;
|
|
|
|
font-size: 16px;
|
|
|
|
vertical-align: -2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.notif-cleaning {
|
|
|
|
.status, .notification-follow {
|
|
|
|
padding-right: ($dismiss-overlay-width + 0.5rem);
|
|
|
|
}
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
2018-07-08 14:04:53 -04:00
|
|
|
.status__wrapper--filtered {
|
|
|
|
color: $dark-text-color;
|
|
|
|
border: 0;
|
|
|
|
font-size: inherit;
|
|
|
|
text-align: center;
|
|
|
|
line-height: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 17:48:18 -05:00
|
|
|
.status__prepend-icon-wrapper {
|
2019-07-17 14:05:53 -04:00
|
|
|
left: -26px;
|
|
|
|
position: absolute;
|
2018-01-13 18:47:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.notification-follow {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
// same like Status
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
.account {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.focusable {
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
|
2019-06-09 06:07:23 -04:00
|
|
|
&.status.status-direct:not(.read) {
|
2018-01-13 17:48:18 -05:00
|
|
|
background: lighten($ui-base-color, 12%);
|
|
|
|
|
|
|
|
&.muted {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status {
|
2018-06-21 15:40:34 -04:00
|
|
|
padding: 10px 14px;
|
2018-01-13 17:48:18 -05:00
|
|
|
position: relative;
|
2018-01-13 18:47:59 -05:00
|
|
|
height: auto;
|
2018-01-13 17:48:18 -05:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
@supports (-ms-overflow-style: -ms-autohiding-scrollbar) {
|
|
|
|
// Add margin to avoid Edge auto-hiding scrollbar appearing over content.
|
|
|
|
// On Edge 16 this is 16px and Edge <=15 it's 12px, so aim for 16px.
|
2018-06-21 15:40:34 -04:00
|
|
|
padding-right: 28px; // 12px + 16px
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fade {
|
|
|
|
0% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
opacity: 1;
|
|
|
|
animation: fade 150ms linear;
|
|
|
|
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2018-01-13 17:48:18 -05:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
2019-06-09 06:07:23 -04:00
|
|
|
&.status-direct:not(.read) {
|
2018-01-13 17:48:18 -05:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2019-06-09 06:07:23 -04:00
|
|
|
border-bottom-color: lighten($ui-base-color, 12%);
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.light {
|
|
|
|
.status__relative-time {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $lighter-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
strong {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $lighter-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
|
|
|
|
a {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $highlight-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a.status__content__spoiler-link {
|
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-primary-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-primary-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 21:13:55 -05:00
|
|
|
}
|
2018-01-13 18:47:59 -05:00
|
|
|
|
2018-01-13 21:13:55 -05:00
|
|
|
&.collapsed {
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
&.has-background::before {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-image: linear-gradient(to bottom, rgba($base-shadow-color, .75), rgba($base-shadow-color, .65) 24px, rgba($base-shadow-color, .8));
|
2018-06-21 15:33:00 -04:00
|
|
|
pointer-events: none;
|
2018-01-13 21:13:55 -05:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name:hover .display-name__html {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
height: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-03-22 10:10:04 -04:00
|
|
|
padding-top: 0;
|
2018-01-13 21:13:55 -05:00
|
|
|
|
2018-04-22 11:29:01 -04:00
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0; bottom: 0;
|
|
|
|
left: 0; right: 0;
|
|
|
|
background: linear-gradient(rgba($ui-base-color, 0), rgba($ui-base-color, 1));
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2018-01-13 21:13:55 -05:00
|
|
|
a:hover {
|
2018-01-13 18:47:59 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2018-04-24 11:31:26 -04:00
|
|
|
&:focus > .status__content:after {
|
|
|
|
background: linear-gradient(rgba(lighten($ui-base-color, 4%), 0), rgba(lighten($ui-base-color, 4%), 1));
|
|
|
|
}
|
2019-06-09 06:07:23 -04:00
|
|
|
&.status-direct:not(.read)> .status__content:after {
|
2018-04-24 11:31:26 -04:00
|
|
|
background: linear-gradient(rgba(lighten($ui-base-color, 8%), 0), rgba(lighten($ui-base-color, 8%), 1));
|
|
|
|
}
|
2018-03-22 10:10:04 -04:00
|
|
|
|
|
|
|
.notification__message {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__info .notification__message > span {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-01-13 21:13:55 -05:00
|
|
|
}
|
2018-01-13 18:47:59 -05:00
|
|
|
|
2018-01-13 21:13:55 -05:00
|
|
|
.notification__message {
|
2018-03-12 20:57:28 -04:00
|
|
|
margin: -10px 0px 10px 0;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-favourite {
|
|
|
|
.status.status-direct {
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
.icon-button.disabled {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: lighten($action-button-color, 13%);
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__relative-time {
|
2018-01-13 18:47:59 -05:00
|
|
|
display: inline-block;
|
2019-07-17 11:55:09 -04:00
|
|
|
flex-grow: 1;
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
font-size: 14px;
|
2018-01-13 18:47:59 -05:00
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 18:47:59 -05:00
|
|
|
overflow: hidden;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
2018-03-12 20:57:28 -04:00
|
|
|
.status__info__account .status__display-name {
|
2018-01-13 17:48:18 -05:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__info {
|
2018-03-18 13:42:28 -04:00
|
|
|
display: flex;
|
2019-07-17 11:55:09 -04:00
|
|
|
justify-content: space-between;
|
2018-01-13 17:48:18 -05:00
|
|
|
font-size: 15px;
|
2018-03-18 23:49:30 -04:00
|
|
|
|
|
|
|
> span {
|
2018-03-22 10:10:04 -04:00
|
|
|
text-overflow: ellipsis;
|
2018-03-18 23:49:30 -04:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
2018-03-22 10:10:04 -04:00
|
|
|
|
|
|
|
.notification__message > span {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2018-01-13 18:47:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__info__icons {
|
2018-03-18 23:49:30 -04:00
|
|
|
display: flex;
|
2018-03-22 10:10:04 -04:00
|
|
|
align-items: center;
|
|
|
|
height: 1em;
|
2018-05-06 05:31:05 -04:00
|
|
|
color: $action-button-color;
|
2018-01-13 18:47:59 -05:00
|
|
|
|
2019-07-17 11:55:09 -04:00
|
|
|
.status__media-icon,
|
|
|
|
.status__visibility-icon,
|
|
|
|
.status__reply-icon {
|
|
|
|
padding-left: 2px;
|
|
|
|
padding-right: 2px;
|
2018-01-13 18:47:59 -05:00
|
|
|
}
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
2018-03-12 20:57:28 -04:00
|
|
|
.status__info__account {
|
|
|
|
display: flex;
|
2019-03-28 09:51:40 -04:00
|
|
|
align-items: center;
|
2019-07-17 11:55:09 -04:00
|
|
|
justify-content: flex-start;
|
2018-03-12 20:57:28 -04:00
|
|
|
}
|
|
|
|
|
2018-01-13 17:48:18 -05:00
|
|
|
.status-check-box {
|
|
|
|
border-bottom: 1px solid $ui-secondary-color;
|
|
|
|
display: flex;
|
|
|
|
|
2018-03-12 14:43:31 -04:00
|
|
|
.status-check-box__status {
|
|
|
|
margin: 10px 0 10px 10px;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
.media-gallery {
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
2018-01-13 18:47:59 -05:00
|
|
|
|
|
|
|
.status__content {
|
2018-03-12 14:43:31 -04:00
|
|
|
padding: 0;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2018-03-12 14:43:31 -04:00
|
|
|
margin-top: 8px;
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail {
|
|
|
|
cursor: default;
|
2018-01-13 18:47:59 -05:00
|
|
|
}
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-check-box-toggle {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__prepend {
|
2019-07-17 15:20:55 -04:00
|
|
|
margin-top: -10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-left: 58px;
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2019-07-17 14:05:53 -04:00
|
|
|
padding: 8px 0;
|
|
|
|
padding-bottom: 2px;
|
2018-01-13 17:48:18 -05:00
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.status__display-name strong {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__action-bar {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-top: 8px;
|
2018-08-20 05:56:34 -04:00
|
|
|
|
|
|
|
&__counter {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-right: 11px;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.status__action-bar-button {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $action-button-color;
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__action-bar-button {
|
|
|
|
margin-right: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__action-bar-dropdown {
|
|
|
|
height: 23.15px;
|
|
|
|
width: 23.15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__action-bar-dropdown {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 14px 10px;
|
|
|
|
|
2018-07-31 16:54:18 -04:00
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.detailed-status__meta {
|
|
|
|
flex: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 17:48:18 -05:00
|
|
|
.status__content {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin: -1px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2018-01-13 17:48:18 -05:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__meta {
|
|
|
|
margin-top: 15px;
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__link {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__favorites,
|
|
|
|
.detailed-status__reblogs {
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 12px;
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name,
|
|
|
|
.status__relative-time,
|
|
|
|
.detailed-status__display-name,
|
|
|
|
.detailed-status__datetime,
|
|
|
|
.detailed-status__application,
|
|
|
|
.account__display-name {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name,
|
|
|
|
.account__display-name {
|
|
|
|
strong {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.muted {
|
|
|
|
.emojione {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-09 06:07:23 -04:00
|
|
|
a.status__display-name,
|
2018-01-13 17:48:18 -05:00
|
|
|
.reply-indicator__display-name,
|
|
|
|
.detailed-status__display-name,
|
|
|
|
.account__display-name {
|
|
|
|
&:hover strong {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__display-name strong {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__application,
|
|
|
|
.detailed-status__datetime {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2019-10-02 21:17:29 -04:00
|
|
|
.detailed-status .button.logo-button {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2018-01-13 17:48:18 -05:00
|
|
|
.detailed-status__display-name {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
display: block;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
strong,
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 16px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-avatar {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
2018-01-13 18:47:59 -05:00
|
|
|
flex: none;
|
|
|
|
margin: 0 10px 0 0;
|
2018-01-13 17:48:18 -05:00
|
|
|
height: 48px;
|
|
|
|
width: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.muted {
|
2019-09-29 10:54:24 -04:00
|
|
|
.status__content,
|
2018-01-13 17:48:18 -05:00
|
|
|
.status__content p,
|
2019-04-24 14:30:02 -04:00
|
|
|
.status__content a,
|
2019-05-12 13:11:08 -04:00
|
|
|
.status__content__text {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name strong {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.status__content__spoiler-link {
|
|
|
|
background: $ui-base-lighter-color;
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 29%);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__relative-time,
|
|
|
|
.detailed-status__datetime {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card {
|
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-radius: 4px;
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
margin-top: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2018-09-10 11:53:28 -04:00
|
|
|
&__actions {
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
background: rgba($base-shadow-color, 0.6);
|
2019-04-26 21:24:09 -04:00
|
|
|
border-radius: 8px;
|
2018-09-10 11:53:28 -04:00
|
|
|
padding: 12px 9px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
a {
|
|
|
|
display: inline;
|
2019-04-26 21:24:09 -04:00
|
|
|
color: $secondary-text-color;
|
2018-09-10 11:53:28 -04:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2019-04-26 21:24:09 -04:00
|
|
|
padding: 0 8px;
|
2018-09-10 11:53:28 -04:00
|
|
|
text-decoration: none;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2019-04-26 21:24:09 -04:00
|
|
|
color: $primary-text-color;
|
2018-09-10 11:53:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 19px;
|
|
|
|
position: relative;
|
|
|
|
bottom: -1px;
|
|
|
|
}
|
2018-09-10 12:07:27 -04:00
|
|
|
|
|
|
|
a .fa, a:hover .fa {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 11:53:28 -04:00
|
|
|
a.status-card {
|
|
|
|
cursor: pointer;
|
2018-01-13 17:48:18 -05:00
|
|
|
|
2018-09-10 11:53:28 -04:00
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card-photo {
|
|
|
|
cursor: zoom-in;
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card-video {
|
|
|
|
iframe {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 5px;
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $darker-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-09-10 11:53:28 -04:00
|
|
|
text-decoration: none;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 14px 14px 14px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__description {
|
2018-05-05 11:58:46 -04:00
|
|
|
color: $darker-text-color;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__host {
|
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
font-size: 13px;
|
2018-10-29 09:44:04 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
flex: 0 0 100px;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-09-10 11:53:28 -04:00
|
|
|
position: relative;
|
2019-01-10 14:19:45 -05:00
|
|
|
|
2019-01-10 14:21:20 -05:00
|
|
|
& > .fa {
|
2019-01-10 14:19:45 -05:00
|
|
|
font-size: 21px;
|
|
|
|
position: absolute;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-card.horizontal {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__image-image {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
white-space: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 09:44:04 -04:00
|
|
|
.status-card.compact {
|
|
|
|
border-color: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
&.interactive {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__content {
|
|
|
|
padding: 8px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
flex: 0 0 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.status-card.compact:hover {
|
|
|
|
background-color: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 17:48:18 -05:00
|
|
|
.status-card__image-image {
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2018-09-10 11:53:28 -04:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
2018-01-13 17:48:18 -05:00
|
|
|
}
|
|
|
|
|
2018-05-05 15:06:46 -04:00
|
|
|
.attachment-list {
|
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-top: 14px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
color: $dark-text-color;
|
|
|
|
padding: 8px 18px;
|
|
|
|
cursor: default;
|
|
|
|
border-right: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 26px;
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__list {
|
|
|
|
list-style: none;
|
|
|
|
padding: 4px 0;
|
|
|
|
padding-left: 8px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $dark-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.compact {
|
|
|
|
border: 0;
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
.attachment-list__list {
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-12 10:01:33 -04:00
|
|
|
|
|
|
|
.status__wrapper--filtered__button {
|
2019-07-14 15:39:07 -04:00
|
|
|
display: inline;
|
2019-07-12 10:01:33 -04:00
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
2019-07-14 15:39:07 -04:00
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2019-07-12 10:01:33 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|