2020-07-28 10:23:15 -07:00
|
|
|
.status__content {
|
2020-07-28 11:36:10 -07:00
|
|
|
p,
|
|
|
|
li {
|
2020-07-28 10:23:15 -07:00
|
|
|
strong {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-28 11:36:10 -07:00
|
|
|
p,
|
|
|
|
li {
|
2020-07-28 10:23:15 -07:00
|
|
|
em {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-28 11:36:10 -07:00
|
|
|
ul,
|
2020-08-11 16:04:17 -07:00
|
|
|
ol {
|
2020-08-15 15:54:52 -07:00
|
|
|
margin-left: 20px;
|
2020-07-28 10:23:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2020-08-15 15:54:52 -07:00
|
|
|
list-style: disc outside none;
|
2020-07-28 10:23:15 -07:00
|
|
|
}
|
|
|
|
|
2020-08-15 15:54:52 -07:00
|
|
|
ol {
|
|
|
|
list-style: decimal outside none;
|
2020-08-10 13:20:09 -07:00
|
|
|
}
|
|
|
|
|
2020-08-12 13:09:21 -07:00
|
|
|
blockquote {
|
|
|
|
padding: 5px 0 5px 15px;
|
2020-08-11 16:04:17 -07:00
|
|
|
border-left: 3px solid hsla(var(--primary-text-color_hsl), 0.4);
|
|
|
|
color: var(--primary-text-color--faint);
|
2020-07-28 10:23:15 -07:00
|
|
|
}
|
2020-07-30 10:33:41 -07:00
|
|
|
|
|
|
|
code {
|
|
|
|
font-family: 'Roboto Mono', monospace;
|
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Inline code */
|
|
|
|
p > code {
|
|
|
|
padding: 2px 4px;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Code block */
|
|
|
|
pre {
|
|
|
|
line-height: 1.6em;
|
|
|
|
overflow-x: auto;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
word-break: break-all;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
}
|
2020-10-01 10:07:04 -07:00
|
|
|
|
2020-10-05 19:20:39 -07:00
|
|
|
/* Markdown images */
|
|
|
|
img:not(.emojione) {
|
2020-10-01 10:07:04 -07:00
|
|
|
width: 100%;
|
|
|
|
height: 285.188px;
|
|
|
|
object-fit: contain;
|
|
|
|
background: var(--background-color);
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 20px 0;
|
2020-10-05 19:20:39 -07:00
|
|
|
display: block;
|
2020-10-01 10:07:04 -07:00
|
|
|
}
|
2020-07-28 10:23:15 -07:00
|
|
|
}
|
|
|
|
|
2020-08-15 15:54:52 -07:00
|
|
|
.status__content > ul,
|
|
|
|
.status__content > ol {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2020-08-12 13:09:21 -07:00
|
|
|
.status__content > blockquote {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2020-06-02 19:11:01 -07:00
|
|
|
.status__content--with-action {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content.status__content--collapsed {
|
|
|
|
max-height: 20px * 15; // 15 lines is roughly above 500 characters
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__read-more-button {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: var(--highlight-text-color);
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
padding-top: 8px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__spoiler-link {
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 2px;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 11px;
|
|
|
|
padding: 0 6px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
line-height: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__wrapper--filtered {
|
|
|
|
color: var(--primary-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;
|
2020-06-06 20:55:00 -07:00
|
|
|
border-bottom: 1px solid var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__prepend-icon-wrapper {
|
|
|
|
left: -26px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status {
|
|
|
|
padding: 8px 10px;
|
|
|
|
padding-left: 68px;
|
|
|
|
position: relative;
|
|
|
|
min-height: 54px;
|
2020-06-06 20:55:00 -07:00
|
|
|
border-bottom: 1px solid var(--brand-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
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.
|
|
|
|
padding-right: 26px; // 10px + 16px
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fade {
|
|
|
|
0% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
opacity: 1;
|
|
|
|
animation: fade 150ms linear;
|
|
|
|
|
2020-06-24 19:53:25 -07:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2020-06-02 19:11:01 -07:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.status-direct:not(.read) {
|
2020-06-06 20:55:00 -07:00
|
|
|
background: var(--brand-color--med);
|
|
|
|
border-bottom-color: var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
.status__content a {
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--brand-color--hicontrast);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.light {
|
|
|
|
.status__relative-time {
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
strong {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--highlight-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
a.status__content__spoiler-link {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
background: var(--brand-color);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--brand-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
font-size: 14px;
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--brand-color);
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__info .status__display-name {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__info {
|
|
|
|
font-size: 15px;
|
|
|
|
z-index: 4;
|
|
|
|
}
|
|
|
|
|
2020-06-16 05:06:44 -07:00
|
|
|
.status__profile,
|
|
|
|
.detailed-status__profile {
|
2020-08-02 20:06:57 -07:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__profile {
|
|
|
|
padding-right: 25px;
|
2020-06-16 05:06:44 -07:00
|
|
|
}
|
|
|
|
|
2020-06-02 19:11:01 -07:00
|
|
|
.status-check-box {
|
|
|
|
border-bottom: 1px solid var(--background-color);
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.status-check-box__status {
|
|
|
|
margin: 10px 0 10px 10px;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
.media-gallery {
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
padding: 0;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2020-06-24 19:53:25 -07:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2020-06-02 19:11:01 -07:00
|
|
|
margin-top: 8px;
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-check-box-toggle {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__prepend {
|
|
|
|
margin-left: 68px;
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
padding: 8px 0;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.status__display-name strong {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__action-bar {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-top: 25px;
|
|
|
|
z-index: 4;
|
|
|
|
|
|
|
|
&__counter {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-right: 22px;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.status__action-bar-button {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--brand-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__action-bar-button {
|
|
|
|
margin-right: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__action-bar-dropdown {
|
|
|
|
height: 23.15px;
|
|
|
|
width: 23.15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
|
|
|
height: 48px;
|
|
|
|
left: 10px;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
width: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__expand {
|
|
|
|
width: 68px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.reply-indicator__content {
|
|
|
|
position: relative;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
padding-top: 2px;
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.status__content--with-spoiler {
|
|
|
|
white-space: normal;
|
|
|
|
|
|
|
|
.status__content__text {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin: -3px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--highlight-text-color);
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__spoiler-link {
|
2020-06-06 20:55:00 -07:00
|
|
|
background: var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
transition: 0.2s;
|
|
|
|
|
|
|
|
&:hover {
|
2020-06-06 20:55:00 -07:00
|
|
|
background: hsla(var(--brand-color_hsl), 0.5);
|
2020-06-02 19:11:01 -07:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__text {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.status__content__text--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.focusable {
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
2020-06-06 20:55:00 -07:00
|
|
|
background: var(--brand-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
.status.status-direct {
|
2020-06-06 20:55:00 -07:00
|
|
|
background: var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
&.muted {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
2020-06-06 20:55:00 -07:00
|
|
|
background: var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card {
|
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
2020-06-06 20:55:00 -07:00
|
|
|
border: 1px solid var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
border-radius: 4px;
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
margin-top: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
& > div {
|
2021-03-07 10:45:04 -08:00
|
|
|
background: var(--background-color);
|
2020-06-02 19:11:01 -07:00
|
|
|
border-radius: 8px;
|
|
|
|
padding: 12px 9px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
a {
|
|
|
|
display: inline;
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0 8px;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 19px;
|
|
|
|
position: relative;
|
|
|
|
bottom: -1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.status-card {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
2020-06-06 20:55:00 -07:00
|
|
|
background: var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card-photo {
|
|
|
|
cursor: zoom-in;
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-06-24 19:53:25 -07:00
|
|
|
.status-card-video,
|
|
|
|
.status-card-audio {
|
2020-06-02 19:11:01 -07:00
|
|
|
iframe {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 5px;
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 14px 14px 14px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__description {
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__host {
|
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
font-size: 13px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
flex: 0 0 100px;
|
2020-06-06 20:55:00 -07:00
|
|
|
background: var(--brand-color--med);
|
2020-06-02 19:11:01 -07:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
& > .fa {
|
|
|
|
font-size: 21px;
|
|
|
|
position: absolute;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card.compact {
|
2020-06-06 20:55:00 -07:00
|
|
|
border-color: var(--brand-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
|
|
|
|
&.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 {
|
2020-06-06 20:55:00 -07:00
|
|
|
background-color: var(--brand-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__image-image {
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
|
|
|
}
|
2020-09-02 18:49:40 -07:00
|
|
|
|
|
|
|
.status__favicon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
float: right;
|
|
|
|
margin-right: 4px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
}
|
2021-04-21 12:47:39 -07:00
|
|
|
|
|
|
|
.tombstone {
|
2021-04-21 13:46:28 -07:00
|
|
|
padding: 10px;
|
2021-04-21 12:47:39 -07:00
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
border-bottom: 1px solid var(--brand-color--faint);
|
|
|
|
color: var(--primary-text-color--faint);
|
2021-04-21 13:46:28 -07:00
|
|
|
|
|
|
|
p {
|
|
|
|
padding: 10px;
|
|
|
|
background: var(--background-color);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2021-04-21 12:47:39 -07:00
|
|
|
}
|