parent
c1c514ca70
commit
d894cdc93f
@ -1,38 +1,140 @@ |
|||||||
.footer { |
.public-layout { |
||||||
text-align: center; |
.footer { |
||||||
margin-top: 30px; |
text-align: left; |
||||||
font-size: 12px; |
padding-top: 20px; |
||||||
color: $darker-text-color; |
padding-bottom: 60px; |
||||||
|
font-size: 12px; |
||||||
|
color: lighten($ui-base-color, 34%); |
||||||
|
|
||||||
.footer__domain { |
@media screen and (max-width: $no-gap-breakpoint) { |
||||||
font-weight: 500; |
padding-left: 20px; |
||||||
|
padding-right: 20px; |
||||||
a { |
|
||||||
color: inherit; |
|
||||||
text-decoration: none; |
|
||||||
} |
} |
||||||
} |
|
||||||
|
|
||||||
.powered-by, |
.grid { |
||||||
.single-user-login { |
display: grid; |
||||||
font-weight: 400; |
grid-gap: 10px; |
||||||
|
grid-template-columns: 1fr 1fr 2fr 1fr 1fr; |
||||||
|
|
||||||
|
.column-0 { |
||||||
|
grid-column: 1; |
||||||
|
grid-row: 1; |
||||||
|
min-width: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.column-1 { |
||||||
|
grid-column: 2; |
||||||
|
grid-row: 1; |
||||||
|
min-width: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.column-2 { |
||||||
|
grid-column: 3; |
||||||
|
grid-row: 1; |
||||||
|
min-width: 0; |
||||||
|
text-align: center; |
||||||
|
|
||||||
|
h4 a { |
||||||
|
color: lighten($ui-base-color, 34%); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.column-3 { |
||||||
|
grid-column: 4; |
||||||
|
grid-row: 1; |
||||||
|
min-width: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.column-4 { |
||||||
|
grid-column: 5; |
||||||
|
grid-row: 1; |
||||||
|
min-width: 0; |
||||||
|
} |
||||||
|
|
||||||
|
@media screen and (max-width: 690px) { |
||||||
|
grid-template-columns: 1fr 2fr 1fr; |
||||||
|
|
||||||
|
.column-0, |
||||||
|
.column-1 { |
||||||
|
grid-column: 1; |
||||||
|
} |
||||||
|
|
||||||
|
.column-1 { |
||||||
|
grid-row: 2; |
||||||
|
} |
||||||
|
|
||||||
|
.column-2 { |
||||||
|
grid-column: 2; |
||||||
|
} |
||||||
|
|
||||||
a { |
.column-3, |
||||||
color: inherit; |
.column-4 { |
||||||
text-decoration: underline; |
grid-column: 3; |
||||||
font-weight: 500; |
} |
||||||
|
|
||||||
&:hover { |
.column-4 { |
||||||
|
grid-row: 2; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@media screen and (max-width: 600px) { |
||||||
|
.column-1 { |
||||||
|
display: block; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@media screen and (max-width: $no-gap-breakpoint) { |
||||||
|
.column-0, |
||||||
|
.column-1, |
||||||
|
.column-3, |
||||||
|
.column-4 { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
h4 { |
||||||
|
text-transform: uppercase; |
||||||
|
font-weight: 700; |
||||||
|
margin-bottom: 8px; |
||||||
|
color: $darker-text-color; |
||||||
|
|
||||||
|
a { |
||||||
|
color: inherit; |
||||||
text-decoration: none; |
text-decoration: none; |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
img { |
ul a { |
||||||
margin: 0 4px; |
text-decoration: none; |
||||||
position: relative; |
color: lighten($ui-base-color, 34%); |
||||||
bottom: -1px; |
|
||||||
height: 18px; |
&:hover, |
||||||
vertical-align: top; |
&:active, |
||||||
|
&:focus { |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.brand { |
||||||
|
svg { |
||||||
|
display: block; |
||||||
|
height: 36px; |
||||||
|
width: auto; |
||||||
|
margin: 0 auto; |
||||||
|
|
||||||
|
path { |
||||||
|
fill: lighten($ui-base-color, 34%); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&:hover, |
||||||
|
&:focus, |
||||||
|
&:active { |
||||||
|
svg path { |
||||||
|
fill: lighten($ui-base-color, 38%); |
||||||
|
} |
||||||
|
} |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -1,111 +0,0 @@ |
|||||||
.landing-strip, |
|
||||||
.memoriam-strip { |
|
||||||
background: rgba(darken($ui-base-color, 7%), 0.8); |
|
||||||
color: $darker-text-color; |
|
||||||
font-weight: 400; |
|
||||||
padding: 14px; |
|
||||||
border-radius: 4px; |
|
||||||
margin-bottom: 20px; |
|
||||||
display: flex; |
|
||||||
align-items: center; |
|
||||||
|
|
||||||
strong, |
|
||||||
a { |
|
||||||
font-weight: 500; |
|
||||||
|
|
||||||
@each $lang in $cjk-langs { |
|
||||||
&:lang(#{$lang}) { |
|
||||||
font-weight: 700; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
a { |
|
||||||
color: inherit; |
|
||||||
text-decoration: underline; |
|
||||||
} |
|
||||||
|
|
||||||
.logo { |
|
||||||
width: 30px; |
|
||||||
height: 30px; |
|
||||||
flex: 0 0 auto; |
|
||||||
margin-right: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
@media screen and (max-width: 740px) { |
|
||||||
margin-bottom: 0; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.memoriam-strip { |
|
||||||
background: rgba($base-shadow-color, 0.7); |
|
||||||
} |
|
||||||
|
|
||||||
.moved-strip { |
|
||||||
padding: 14px; |
|
||||||
border-radius: 4px; |
|
||||||
background: rgba(darken($ui-base-color, 7%), 0.8); |
|
||||||
color: $secondary-text-color; |
|
||||||
font-weight: 400; |
|
||||||
margin-bottom: 20px; |
|
||||||
|
|
||||||
strong, |
|
||||||
a { |
|
||||||
font-weight: 500; |
|
||||||
|
|
||||||
@each $lang in $cjk-langs { |
|
||||||
&:lang(#{$lang}) { |
|
||||||
font-weight: 700; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
a { |
|
||||||
color: inherit; |
|
||||||
text-decoration: underline; |
|
||||||
|
|
||||||
&.mention { |
|
||||||
text-decoration: none; |
|
||||||
|
|
||||||
span { |
|
||||||
text-decoration: none; |
|
||||||
} |
|
||||||
|
|
||||||
&:focus, |
|
||||||
&:hover, |
|
||||||
&:active { |
|
||||||
text-decoration: none; |
|
||||||
|
|
||||||
span { |
|
||||||
text-decoration: underline; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
&__message { |
|
||||||
margin-bottom: 15px; |
|
||||||
|
|
||||||
.fa { |
|
||||||
margin-right: 5px; |
|
||||||
color: $darker-text-color; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
&__card { |
|
||||||
.detailed-status__display-avatar { |
|
||||||
position: relative; |
|
||||||
cursor: pointer; |
|
||||||
} |
|
||||||
|
|
||||||
.detailed-status__display-name { |
|
||||||
margin-bottom: 0; |
|
||||||
text-decoration: none; |
|
||||||
|
|
||||||
span { |
|
||||||
color: $highlight-text-color; |
|
||||||
font-weight: 400; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -1,368 +1,145 @@ |
|||||||
.activity-stream { |
.activity-stream { |
||||||
clear: both; |
|
||||||
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2); |
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2); |
||||||
|
border-radius: 4px; |
||||||
|
overflow: hidden; |
||||||
|
margin-bottom: 10px; |
||||||
|
|
||||||
|
@media screen and (max-width: $no-gap-breakpoint) { |
||||||
|
margin-bottom: 0; |
||||||
|
border-radius: 0; |
||||||
|
box-shadow: none; |
||||||
|
} |
||||||
|
|
||||||
|
&--headless { |
||||||
|
border-radius: 0; |
||||||
|
margin: 0; |
||||||
|
box-shadow: none; |
||||||
|
|
||||||
|
.detailed-status, |
||||||
|
.status { |
||||||
|
border-radius: 0 !important; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
div[data-component] { |
div[data-component] { |
||||||
width: 100%; |
width: 100%; |
||||||
} |
} |
||||||
|
|
||||||
.entry { |
.entry { |
||||||
background: $simple-background-color; |
background: $ui-base-color; |
||||||
|
|
||||||
.detailed-status.light, |
.detailed-status, |
||||||
.status.light, |
.status, |
||||||
.more.light { |
.load-more { |
||||||
border-bottom: 1px solid $ui-secondary-color; |
|
||||||
animation: none; |
animation: none; |
||||||
} |
} |
||||||
|
|
||||||
&:last-child { |
&:last-child { |
||||||
&, |
.detailed-status, |
||||||
.detailed-status.light, |
.status { |
||||||
.status.light { |
|
||||||
border-bottom: 0; |
border-bottom: 0; |
||||||
border-radius: 0 0 4px 4px; |
border-radius: 0 0 4px 4px; |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
&:first-child { |
&:first-child { |
||||||
&, |
.detailed-status, |
||||||
.detailed-status.light, |
.status { |
||||||
.status.light { |
|
||||||
border-radius: 4px 4px 0 0; |
border-radius: 4px 4px 0 0; |
||||||
} |
} |
||||||
|
|
||||||
&:last-child { |
&:last-child { |
||||||
&, |
.detailed-status, |
||||||
.detailed-status.light, |
.status { |
||||||
.status.light { |
|
||||||
border-radius: 4px; |
border-radius: 4px; |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
@media screen and (max-width: 740px) { |
@media screen and (max-width: 740px) { |
||||||
&, |
.detailed-status, |
||||||
.detailed-status.light, |
.status { |
||||||
.status.light { |
|
||||||
border-radius: 0 !important; |
border-radius: 0 !important; |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
} |
||||||
|
|
||||||
&.with-header { |
.button.logo-button { |
||||||
.entry { |
flex: 0 auto; |
||||||
&:first-child { |
font-size: 14px; |
||||||
&, |
background: $ui-highlight-color; |
||||||
.detailed-status.light, |
color: $primary-text-color; |
||||||
.status.light { |
text-transform: none; |
||||||
border-radius: 0; |
line-height: 36px; |
||||||
} |
height: auto; |
||||||
|
padding: 3px 15px; |
||||||
&:last-child { |
border: 0; |
||||||
&, |
|
||||||
.detailed-status.light, |
|
||||||
.status.light { |
|
||||||
border-radius: 0 0 4px 4px; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.media-gallery__gifv__label { |
|
||||||
bottom: 9px; |
|
||||||
} |
|
||||||
|
|
||||||
.status.light { |
|
||||||
padding: 14px 14px 14px (48px + 14px * 2); |
|
||||||
position: relative; |
|
||||||
min-height: 48px; |
|
||||||
cursor: default; |
|
||||||
|
|
||||||
.status__header { |
|
||||||
font-size: 15px; |
|
||||||
|
|
||||||
.status__meta { |
|
||||||
float: right; |
|
||||||
font-size: 14px; |
|
||||||
|
|
||||||
.status__relative-time { |
|
||||||
color: $lighter-text-color; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.status__display-name { |
|
||||||
display: block; |
|
||||||
max-width: 100%; |
|
||||||
padding-right: 25px; |
|
||||||
color: $inverted-text-color; |
|
||||||
} |
|
||||||
|
|
||||||
.status__avatar { |
|
||||||
position: absolute; |
|
||||||
left: 14px; |
|
||||||
top: 14px; |
|
||||||
width: 48px; |
|
||||||
height: 48px; |
|
||||||
@include avatar-size(48px); |
|
||||||
|
|
||||||
& > div { |
|
||||||
width: 48px; |
|
||||||
height: 48px; |
|
||||||
@include avatar-size(48px); |
|
||||||
} |
|
||||||
|
|
||||||
img { |
|
||||||
display: block; |
|
||||||
border-radius: 4px; |
|
||||||
@include avatar-radius(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.display-name { |
|
||||||
display: block; |
|
||||||
max-width: 100%; |
|
||||||
//overflow: hidden; |
|
||||||
//white-space: nowrap; |
|
||||||
//text-overflow: ellipsis; |
|
||||||
|
|
||||||
strong { |
|
||||||
font-weight: 500; |
|
||||||
color: $inverted-text-color; |
|
||||||
|
|
||||||
@each $lang in $cjk-langs { |
|
||||||
&:lang(#{$lang}) { |
|
||||||
font-weight: 700; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
span { |
|
||||||
font-size: 14px; |
|
||||||
color: $light-text-color; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.status__content { |
|
||||||
color: $inverted-text-color; |
|
||||||
|
|
||||||
a { |
|
||||||
color: $highlight-text-color; |
|
||||||
} |
|
||||||
|
|
||||||
a.status__content__spoiler-link { |
|
||||||
color: $primary-text-color; |
|
||||||
background: $ui-base-color; |
|
||||||
|
|
||||||
&:hover { |
|
||||||
background: lighten($ui-base-color, 8%); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.detailed-status.light { |
|
||||||
padding: 14px; |
|
||||||
background: $simple-background-color; |
|
||||||
cursor: default; |
|
||||||
|
|
||||||
.detailed-status__display-name { |
|
||||||
display: block; |
|
||||||
overflow: hidden; |
|
||||||
margin-bottom: 15px; |
|
||||||
|
|
||||||
& > div { |
|
||||||
float: left; |
|
||||||
margin-right: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
.display-name { |
|
||||||
display: block; |
|
||||||
max-width: 100%; |
|
||||||
overflow: hidden; |
|
||||||
white-space: nowrap; |
|
||||||
text-overflow: ellipsis; |
|
||||||
|
|
||||||
strong { |
|
||||||
font-weight: 500; |
|
||||||
color: $inverted-text-color; |
|
||||||
|
|
||||||
@each $lang in $cjk-langs { |
|
||||||
&:lang(#{$lang}) { |
|
||||||
font-weight: 700; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
span { |
|
||||||
font-size: 14px; |
|
||||||
color: $light-text-color; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.avatar { |
|
||||||
width: 48px; |
|
||||||
height: 48px; |
|
||||||
@include avatar-size(48px); |
|
||||||
|
|
||||||
img { |
|
||||||
display: block; |
|
||||||
border-radius: 4px; |
|
||||||
@include avatar-radius(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.status__content { |
|
||||||
color: $inverted-text-color; |
|
||||||
|
|
||||||
a { |
|
||||||
color: $highlight-text-color; |
|
||||||
} |
|
||||||
|
|
||||||
a.status__content__spoiler-link { |
|
||||||
color: $primary-text-color; |
|
||||||
background: $ui-base-color; |
|
||||||
|
|
||||||
&:hover { |
|
||||||
background: lighten($ui-base-color, 8%); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.detailed-status__meta { |
|
||||||
margin-top: 15px; |
|
||||||
color: $light-text-color; |
|
||||||
font-size: 14px; |
|
||||||
line-height: 18px; |
|
||||||
|
|
||||||
a { |
|
||||||
color: inherit; |
|
||||||
} |
|
||||||
|
|
||||||
span > span { |
|
||||||
font-weight: 500; |
|
||||||
font-size: 12px; |
|
||||||
margin-left: 6px; |
|
||||||
display: inline-block; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.status-card { |
|
||||||
border-color: lighten($ui-secondary-color, 4%); |
|
||||||
color: $lighter-text-color; |
|
||||||
|
|
||||||
&:hover { |
|
||||||
background: lighten($ui-secondary-color, 4%); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.status-card__title, |
|
||||||
.status-card__description { |
|
||||||
color: $inverted-text-color; |
|
||||||
} |
|
||||||
|
|
||||||
.status-card__image { |
|
||||||
background: $ui-secondary-color; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
.media-spoiler { |
|
||||||
background: $ui-base-color; |
|
||||||
color: $darker-text-color; |
|
||||||
} |
|
||||||
|
|
||||||
.pre-header { |
svg { |
||||||
padding: 14px 0; |
width: 20px; |
||||||
padding-left: (48px + 14px * 2); |
height: auto; |
||||||
padding-bottom: 0; |
vertical-align: middle; |
||||||
margin-bottom: -4px; |
margin-right: 5px; |
||||||
color: $light-text-color; |
|
||||||
font-size: 14px; |
|
||||||
position: relative; |
|
||||||
|
|
||||||
.pre-header__icon { |
path:first-child { |
||||||
position: absolute; |
fill: $primary-text-color; |
||||||
left: (48px + 14px * 2 - 30px); |
|
||||||
} |
} |
||||||
|
|
||||||
.status__display-name.muted strong { |
path:last-child { |
||||||
color: $light-text-color; |
fill: $ui-highlight-color; |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
.open-in-web-link { |
&:active, |
||||||
text-decoration: none; |
&:focus, |
||||||
|
&:hover { |
||||||
|
background: lighten($ui-highlight-color, 10%); |
||||||
|
|
||||||
&:hover { |
svg path:last-child { |
||||||
text-decoration: underline; |
fill: lighten($ui-highlight-color, 10%); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
.more { |
@media screen and (max-width: $no-gap-breakpoint) { |
||||||
color: $darker-text-color; |
svg { |
||||||
display: block; |
display: none; |
||||||
padding: 14px; |
|
||||||
text-align: center; |
|
||||||
|
|
||||||
&:not(:hover) { |
|
||||||
text-decoration: none; |
|
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
.embed { |
.embed, |
||||||
.activity-stream { |
.public-layout { |
||||||
box-shadow: none; |
.detailed-status { |
||||||
|
padding: 15px; |
||||||
} |
} |
||||||
} |
|
||||||
|
|
||||||
.entry { |
|
||||||
|
|
||||||
.detailed-status.light { |
.status { |
||||||
display: flex; |
padding: 15px 15px 15px (48px + 15px * 2); |
||||||
flex-wrap: wrap; |
min-height: 48px + 2px; |
||||||
justify-content: space-between; |
|
||||||
align-items: flex-start; |
|
||||||
|
|
||||||
.detailed-status__display-name { |
&__avatar { |
||||||
flex: 1; |
left: 15px; |
||||||
margin: 0 5px 15px 0; |
top: 17px; |
||||||
} |
} |
||||||
|
|
||||||
.button.button-secondary.logo-button { |
&__content { |
||||||
flex: 0 auto; |
padding-top: 5px; |
||||||
font-size: 14px; |
} |
||||||
|
|
||||||
svg { |
|
||||||
width: 20px; |
|
||||||
height: auto; |
|
||||||
vertical-align: middle; |
|
||||||
margin-right: 5px; |
|
||||||
|
|
||||||
path:first-child { |
|
||||||
fill: $ui-primary-color; |
|
||||||
} |
|
||||||
|
|
||||||
path:last-child { |
&__prepend { |
||||||
fill: $simple-background-color; |
margin-left: 48px + 15px * 2; |
||||||
} |
padding-top: 15px; |
||||||
} |
} |
||||||
|
|
||||||
&:active, |
&__prepend-icon-wrapper { |
||||||
&:focus, |
left: -32px; |
||||||
&:hover { |
|
||||||
svg path:first-child { |
|
||||||
fill: lighten($ui-primary-color, 4%); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
} |
||||||
|
|
||||||
.status__content, |
.media-gallery, |
||||||
.detailed-status__meta { |
&__action-bar, |
||||||
flex: 100%; |
.video-player { |
||||||
|
margin-top: 10px; |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,123 @@ |
|||||||
|
.hero-widget { |
||||||
|
margin-bottom: 10px; |
||||||
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2); |
||||||
|
|
||||||
|
&__img { |
||||||
|
width: 100%; |
||||||
|
height: 167px; |
||||||
|
position: relative; |
||||||
|
overflow: hidden; |
||||||
|
border-radius: 4px 4px 0 0; |
||||||
|
background: $base-shadow-color; |
||||||
|
|
||||||
|
img { |
||||||
|
object-fit: cover; |
||||||
|
display: block; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
margin: 0; |
||||||
|
border-radius: 4px 4px 0 0; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&__text { |
||||||
|
background: $ui-base-color; |
||||||
|
padding: 20px; |
||||||
|
border-radius: 0 0 4px 4px; |
||||||
|
font-size: 14px; |
||||||
|
color: $darker-text-color; |
||||||
|
} |
||||||
|
|
||||||
|
@media screen and (max-width: $no-gap-breakpoint) { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.moved-account-widget { |
||||||
|
padding: 15px; |
||||||
|
padding-bottom: 20px; |
||||||
|
border-radius: 4px; |
||||||
|
background: $ui-base-color; |
||||||
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2); |
||||||
|
color: $secondary-text-color; |
||||||
|
font-weight: 400; |
||||||
|
margin-bottom: 10px; |
||||||
|
|
||||||
|
strong, |
||||||
|
a { |
||||||
|
font-weight: 500; |
||||||
|
|
||||||
|
@each $lang in $cjk-langs { |
||||||
|
&:lang(#{$lang}) { |
||||||
|
font-weight: 700; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
a { |
||||||
|
color: inherit; |
||||||
|
text-decoration: underline; |
||||||
|
|
||||||
|
&.mention { |
||||||
|
text-decoration: none; |
||||||
|
|
||||||
|
span { |
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
|
||||||
|
&:focus, |
||||||
|
&:hover, |
||||||
|
&:active { |
||||||
|
text-decoration: none; |
||||||
|
|
||||||
|
span { |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&__message { |
||||||
|
margin-bottom: 15px; |
||||||
|
|
||||||
|
.fa { |
||||||
|
margin-right: 5px; |
||||||
|
color: $darker-text-color; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
&__card { |
||||||
|
.detailed-status__display-avatar { |
||||||
|
position: relative; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
.detailed-status__display-name { |
||||||
|
margin-bottom: 0; |
||||||
|
text-decoration: none; |
||||||
|
|
||||||
|
span { |
||||||
|
font-weight: 400; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.memoriam-widget { |
||||||
|
padding: 20px; |
||||||
|
border-radius: 4px; |
||||||
|
background: $base-shadow-color; |
||||||
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2); |
||||||
|
font-size: 14px; |
||||||
|
color: $darker-text-color; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
.moved-account-widget, |
||||||
|
.memoriam-widget { |
||||||
|
@media screen and (max-width: $no-gap-breakpoint) { |
||||||
|
margin-bottom: 0; |
||||||
|
box-shadow: none; |
||||||
|
border-radius: 0; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue