Federated social network node, running on kosmos.social
https://kosmos.social
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5963 lines
101 KiB
5963 lines
101 KiB
.app-body { |
|
-webkit-overflow-scrolling: touch; |
|
-ms-overflow-style: -ms-autohiding-scrollbar; |
|
} |
|
|
|
.button { |
|
background-color: $ui-highlight-color; |
|
border: 10px none; |
|
border-radius: 4px; |
|
box-sizing: border-box; |
|
color: $primary-text-color; |
|
cursor: pointer; |
|
display: inline-block; |
|
font-family: inherit; |
|
font-size: 14px; |
|
font-weight: 500; |
|
height: 36px; |
|
letter-spacing: 0; |
|
line-height: 36px; |
|
overflow: hidden; |
|
padding: 0 16px; |
|
position: relative; |
|
text-align: center; |
|
text-transform: uppercase; |
|
text-decoration: none; |
|
text-overflow: ellipsis; |
|
transition: all 100ms ease-in; |
|
white-space: nowrap; |
|
width: auto; |
|
|
|
&:active, |
|
&:focus, |
|
&:hover { |
|
background-color: lighten($ui-highlight-color, 10%); |
|
transition: all 200ms ease-out; |
|
} |
|
|
|
&--destructive { |
|
transition: none; |
|
|
|
&:active, |
|
&:focus, |
|
&:hover { |
|
background-color: $error-red; |
|
transition: none; |
|
} |
|
} |
|
|
|
&:disabled, |
|
&.disabled { |
|
background-color: $ui-primary-color; |
|
cursor: default; |
|
} |
|
|
|
&::-moz-focus-inner { |
|
border: 0; |
|
} |
|
|
|
&::-moz-focus-inner, |
|
&:focus, |
|
&:active { |
|
outline: 0 !important; |
|
} |
|
|
|
&.button-primary, |
|
&.button-alternative, |
|
&.button-secondary, |
|
&.button-alternative-2 { |
|
font-size: 16px; |
|
line-height: 36px; |
|
height: auto; |
|
text-transform: none; |
|
padding: 4px 16px; |
|
} |
|
|
|
&.button-alternative { |
|
color: $inverted-text-color; |
|
background: $ui-primary-color; |
|
|
|
&:active, |
|
&:focus, |
|
&:hover { |
|
background-color: lighten($ui-primary-color, 4%); |
|
} |
|
} |
|
|
|
&.button-alternative-2 { |
|
background: $ui-base-lighter-color; |
|
|
|
&:active, |
|
&:focus, |
|
&:hover { |
|
background-color: lighten($ui-base-lighter-color, 4%); |
|
} |
|
} |
|
|
|
&.button-secondary { |
|
color: $darker-text-color; |
|
background: transparent; |
|
padding: 3px 15px; |
|
border: 1px solid $ui-primary-color; |
|
|
|
&:active, |
|
&:focus, |
|
&:hover { |
|
border-color: lighten($ui-primary-color, 4%); |
|
color: lighten($darker-text-color, 4%); |
|
} |
|
|
|
&:disabled { |
|
opacity: 0.5; |
|
} |
|
} |
|
|
|
&.button--block { |
|
display: block; |
|
width: 100%; |
|
} |
|
} |
|
|
|
.column__wrapper { |
|
display: flex; |
|
flex: 1 1 auto; |
|
position: relative; |
|
} |
|
|
|
.icon-button { |
|
display: inline-block; |
|
padding: 0; |
|
color: $action-button-color; |
|
border: 0; |
|
background: transparent; |
|
cursor: pointer; |
|
transition: color 100ms ease-in; |
|
|
|
&:hover, |
|
&:active, |
|
&:focus { |
|
color: lighten($action-button-color, 7%); |
|
transition: color 200ms ease-out; |
|
} |
|
|
|
&.disabled { |
|
color: darken($action-button-color, 13%); |
|
cursor: default; |
|
} |
|
|
|
&.active { |
|
color: $highlight-text-color; |
|
} |
|
|
|
&::-moz-focus-inner { |
|
border: 0; |
|
} |
|
|
|
&::-moz-focus-inner, |
|
&:focus, |
|
&:active { |
|
outline: 0 !important; |
|
} |
|
|
|
&.inverted { |
|
color: $lighter-text-color; |
|
|
|
&:hover, |
|
&:active, |
|
&:focus { |
|
color: darken($lighter-text-color, 7%); |
|
} |
|
|
|
&.disabled { |
|
color: lighten($lighter-text-color, 7%); |
|
} |
|
|
|
&.active { |
|
color: $highlight-text-color; |
|
|
|
&.disabled { |
|
color: lighten($highlight-text-color, 13%); |
|
} |
|
} |
|
} |
|
|
|
&.overlayed { |
|
box-sizing: content-box; |
|
background: rgba($base-overlay-background, 0.6); |
|
color: rgba($primary-text-color, 0.7); |
|
border-radius: 4px; |
|
padding: 2px; |
|
|
|
&:hover { |
|
background: rgba($base-overlay-background, 0.9); |
|
} |
|
} |
|
} |
|
|
|
.text-icon-button { |
|
color: $lighter-text-color; |
|
border: 0; |
|
background: transparent; |
|
cursor: pointer; |
|
font-weight: 600; |
|
font-size: 11px; |
|
padding: 0 3px; |
|
line-height: 27px; |
|
outline: 0; |
|
transition: color 100ms ease-in; |
|
|
|
&:hover, |
|
&:active, |
|
&:focus { |
|
color: darken($lighter-text-color, 7%); |
|
transition: color 200ms ease-out; |
|
} |
|
|
|
&.disabled { |
|
color: lighten($lighter-text-color, 20%); |
|
cursor: default; |
|
} |
|
|
|
&.active { |
|
color: $highlight-text-color; |
|
} |
|
|
|
&::-moz-focus-inner { |
|
border: 0; |
|
} |
|
|
|
&::-moz-focus-inner, |
|
&:focus, |
|
&:active { |
|
outline: 0 !important; |
|
} |
|
} |
|
|
|
.dropdown-menu { |
|
position: absolute; |
|
} |
|
|
|
.invisible { |
|
font-size: 0; |
|
line-height: 0; |
|
display: inline-block; |
|
width: 0; |
|
height: 0; |
|
position: absolute; |
|
|
|
img, |
|
svg { |
|
margin: 0 !important; |
|
border: 0 !important; |
|
padding: 0 !important; |
|
width: 0 !important; |
|
height: 0 !important; |
|
} |
|
} |
|
|
|
.ellipsis { |
|
&::after { |
|
content: "…"; |
|
} |
|
} |
|
|
|
.compose-form { |
|
padding: 10px; |
|
|
|
&__sensitive-button { |
|
padding: 10px; |
|
padding-top: 0; |
|
|
|
font-size: 14px; |
|
font-weight: 500; |
|
|
|
&.active { |
|
color: $highlight-text-color; |
|
} |
|
|
|
input[type=checkbox] { |
|
display: none; |
|
} |
|
|
|
.checkbox { |
|
display: inline-block; |
|
position: relative; |
|
border: 1px solid $ui-primary-color; |
|
box-sizing: border-box; |
|
width: 18px; |
|
height: 18px; |
|
flex: 0 0 auto; |
|
margin-right: 10px; |
|
top: -1px; |
|
border-radius: 4px; |
|
vertical-align: middle; |
|
|
|
&.active { |
|
border-color: $highlight-text-color; |
|
background: $highlight-text-color; |
|
} |
|
} |
|
} |
|
|
|
.compose-form__warning { |
|
color: $inverted-text-color; |
|
margin-bottom: 10px; |
|
background: $ui-primary-color; |
|
box-shadow: 0 2px 6px rgba($base-shadow-color, 0.3); |
|
padding: 8px 10px; |
|
border-radius: 4px; |
|
font-size: 13px; |
|
font-weight: 400; |
|
|
|
strong { |
|
color: $inverted-text-color; |
|
font-weight: 500; |
|
|
|
@each $lang in $cjk-langs { |
|
&:lang(#{$lang}) { |
|
font-weight: 700; |
|
} |
|
} |
|
} |
|
|
|
a { |
|
color: $lighter-text-color; |
|
font-weight: 500; |
|
text-decoration: underline; |
|
|
|
&:hover, |
|
&:active, |
|
&:focus { |
|
text-decoration: none; |
|
} |
|
} |
|
} |
|
|
|
.emoji-picker-dropdown { |
|
position: absolute; |
|
top: 5px; |
|
right: 5px; |
|
z-index: 1; |
|
} |
|
|
|
.compose-form__autosuggest-wrapper { |
|
position: relative; |
|
} |
|
|
|
.autosuggest-textarea, |
|
.autosuggest-input, |
|
.spoiler-input { |
|
position: relative; |
|
} |
|
|
|
.spoiler-input { |
|
height: 0; |
|
transform-origin: bottom; |
|
opacity: 0; |
|
|
|
&.spoiler-input--visible { |
|
height: 36px; |
|
margin-bottom: 11px; |
|
opacity: 1; |
|
} |
|
} |
|
|
|
.autosuggest-textarea__textarea, |
|
.spoiler-input__input { |
|
display: block; |
|
box-sizing: border-box; |
|
width: 100%; |
|
margin: 0; |
|
color: $inverted-text-color; |
|
background: $simple-background-color; |
|
padding: 10px; |
|
font-family: inherit; |
|
font-size: 14px; |
|
resize: vertical; |
|
border: 0; |
|
outline: 0; |
|
|
|
&:focus { |
|
outline: 0; |
|
} |
|
|
|
@media screen and (max-width: 600px) { |
|
font-size: 16px; |
|
} |
|
} |
|
|
|
.spoiler-input__input { |
|
border-radius: 4px; |
|
} |
|
|
|
.autosuggest-textarea__textarea { |
|
min-height: 100px; |
|
border-radius: 4px 4px 0 0; |
|
padding-bottom: 0; |
|
padding-right: 10px + 22px; |
|
resize: none; |
|
scrollbar-color: initial; |
|
|
|
&::-webkit-scrollbar { |
|
all: unset; |
|
} |
|
|
|
@media screen and (max-width: 600px) { |
|
height: 100px !important; // prevent auto-resize textarea |
|
resize: vertical; |
|
} |
|
} |
|
|
|
.autosuggest-textarea__suggestions-wrapper { |
|
position: relative; |
|
height: 0; |
|
} |
|
|
|
.emoji-picker-wrapper { |
|
position: relative; |
|
height: 0; |
|
|
|
&.emoji-picker-wrapper--hidden { |
|
display: none; |
|
} |
|
} |
|
|
|
.autosuggest-textarea__suggestions { |
|
box-sizing: border-box; |
|
display: none; |
|
position: absolute; |
|
top: 100%; |
|
width: 100%; |
|
z-index: 99; |
|
box-shadow: 4px 4px 6px rgba($base-shadow-color, 0.4); |
|
background: $ui-secondary-color; |
|
border-radius: 0 0 4px 4px; |
|
color: $inverted-text-color; |
|
font-size: 14px; |
|
padding: 6px; |
|
|
|
&.autosuggest-textarea__suggestions--visible { |
|
display: block; |
|
} |
|
} |
|
|
|
.autosuggest-textarea__suggestions__item { |
|
padding: 10px; |
|
cursor: pointer; |
|
border-radius: 4px; |
|
|
|
&:hover, |
|
&:focus, |
|
&:active, |
|
&.selected { |
|
background: darken($ui-secondary-color, 10%); |
|
} |
|
} |
|
|
|
.autosuggest-account, |
|
.autosuggest-emoji { |
|
display: flex; |
|
flex-direction: row; |
|
align-items: center; |
|
justify-content: flex-start; |
|
line-height: 18px; |
|
font-size: 14px; |
|
} |
|
|
|
.autosuggest-account-icon, |
|
.autosuggest-emoji img { |
|
display: block; |
|
margin-right: 8px; |
|
width: 16px; |
|
height: 16px; |
|
} |
|
|
|
.autosuggest-account .display-name__account { |
|
color: $lighter-text-color; |
|
} |
|
|
|
.compose-form__modifiers { |
|
color: $inverted-text-color; |
|
font-family: inherit; |
|
font-size: 14px; |
|
background: $simple-background-color; |
|
|
|
.compose-form__upload-wrapper { |
|
overflow: hidden; |
|
} |
|
|
|
.compose-form__uploads-wrapper { |
|
display: flex; |
|
flex-direction: row; |
|
padding: 5px; |
|
flex-wrap: wrap; |
|
} |
|
|
|
.compose-form__upload { |
|
flex: 1 1 0; |
|
min-width: 40%; |
|
margin: 5px; |
|
|
|
&__actions { |
|
background: linear-gradient(180deg, rgba($base-shadow-color, 0.8) 0, rgba($base-shadow-color, 0.35) 80%, transparent); |
|
display: flex; |
|
align-items: flex-start; |
|
justify-content: space-between; |
|
opacity: 0; |
|
transition: opacity .1s ease; |
|
|
|
.icon-button { |
|
flex: 0 1 auto; |
|
color: $secondary-text-color; |
|
font-size: 14px; |
|
font-weight: 500; |
|
padding: 10px; |
|
font-family: inherit; |
|
|
|
&:hover, |
|
&:focus, |
|
&:active { |
|
color: lighten($secondary-text-color, 7%); |
|
} |
|
} |
|
|
|
&.active { |
|
opacity: 1; |
|
} |
|
} |
|
|
|
&-description { |
|
position: absolute; |
|
z-index: 2; |
|
bottom: 0; |
|
left: 0; |
|
right: 0; |
|
box-sizing: border-box; |
|
background: linear-gradient(0deg, rgba($base-shadow-color, 0.8) 0, rgba($base-shadow-color, 0.35) 80%, transparent); |
|
padding: 10px; |
|
opacity: 0; |
|
transition: opacity .1s ease; |
|
|
|
textarea { |
|
background: transparent; |
|
color: $secondary-text-color; |
|
border: 0; |
|
padding: 0; |
|
margin: 0; |
|
width: 100%; |
|
font-family: inherit; |
|
font-size: 14px; |
|
font-weight: 500; |
|
|
|
&:focus { |
|
color: $white; |
|
} |
|
|
|
&::placeholder { |
|
opacity: 0.75; |
|
color: $secondary-text-color; |
|
} |
|
} |
|
|
|
&.active { |
|
opacity: 1; |
|
} |
|
} |
|
} |
|
|
|
.compose-form__upload-thumbnail { |
|
border-radius: 4px; |
|
background-position: center; |
|
background-size: cover; |
|
background-repeat: no-repeat; |
|
height: 140px; |
|
width: 100%; |
|
overflow: hidden; |
|
} |
|
} |
|
|
|
.compose-form__buttons-wrapper { |
|
padding: 10px; |
|
background: darken($simple-background-color, 8%); |
|
border-radius: 0 0 4px 4px; |
|
display: flex; |
|
justify-content: space-between; |
|
flex: 0 0 auto; |
|
|
|
.compose-form__buttons { |
|
display: flex; |
|
|
|
.compose-form__upload-button-icon { |
|
line-height: 27px; |
|
} |
|
|
|
.compose-form__sensitive-button { |
|
display: none; |
|
|
|
&.compose-form__sensitive-button--visible { |
|
display: block; |
|
} |
|
|
|
.compose-form__sensitive-button__icon { |
|
line-height: 27px; |
|
} |
|
} |
|
} |
|
|
|
.icon-button { |
|
box-sizing: content-box; |
|
padding: 0 3px; |
|
} |
|
|
|
.character-counter__wrapper { |
|
align-self: center; |
|
margin-right: 4px; |
|
|
|
.character-counter { |
|
cursor: default; |
|
font-family: $font-sans-serif, sans-serif; |
|
font-size: 14px; |
|
font-weight: 600; |
|
color: $lighter-text-color; |
|
|
|
&.character-counter--over { |
|
color: $warning-red; |
|
} |
|
} |
|
} |
|
} |
|
|
|
.compose-form__publish { |
|
display: flex; |
|
justify-content: flex-end; |
|
min-width: 0; |
|
flex: 0 0 auto; |
|
|
|
.compose-form__publish-button-wrapper { |
|
overflow: hidden; |
|
padding-top: 10px; |
|
} |
|
} |
|
} |
|
|
|
.no-reduce-motion .spoiler-input { |
|
transition: height 0.4s ease, opacity 0.4s ease; |
|
} |
|
|
|
.emojione { |
|
font-size: inherit; |
|
vertical-align: middle; |
|
object-fit: contain; |
|
margin: -.2ex .15em .2ex; |
|
width: 16px; |
|
height: 16px; |
|
|
|
img { |
|
width: auto; |
|
} |
|
} |
|
|
|
.reply-indicator { |
|
border-radius: 4px; |
|
margin-bottom: 10px; |
|
background: $ui-primary-color; |
|
padding: 10px; |
|
min-height: 23px; |
|
overflow-y: auto; |
|
flex: 0 2 auto; |
|
} |
|
|
|
.reply-indicator__header { |
|
margin-bottom: 5px; |
|
overflow: hidden; |
|
} |
|
|
|
.reply-indicator__cancel { |
|
float: right; |
|
line-height: 24px; |
|
} |
|
|
|
.reply-indicator__display-name { |
|
color: $inverted-text-color; |
|
display: block; |
|
max-width: 100%; |
|
line-height: 24px; |
|
overflow: hidden; |
|
padding-right: 25px; |
|
text-decoration: none; |
|
} |
|
|
|
.reply-indicator__display-avatar { |
|
float: left; |
|
margin-right: 5px; |
|
} |
|
|
|
.status__content--with-action { |
|
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: $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: $secondary-text-color; |
|
text-decoration: none; |
|
|
|
&:hover { |
|
text-decoration: underline; |
|
|
|
.fa { |
|
color: lighten($dark-text-color, 7%); |
|
} |
|
} |
|
|
|
&.mention { |
|
&:hover { |
|
text-decoration: none; |
|
|
|
span { |
|
text-decoration: underline; |
|
} |
|
} |
|
} |
|
|
|
.fa { |
|
color: $dark-text-color; |
|
} |
|
} |
|
|
|
.status__content__spoiler-link { |
|
background: $action-button-color; |
|
|
|
&:hover { |
|
background: lighten($action-button-color, 7%); |
|
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; |
|
} |
|
} |
|
} |
|
|
|
.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: lighten($ui-highlight-color, 8%); |
|
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: $inverted-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: $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%); |
|
} |
|
|
|
.status__prepend-icon-wrapper { |
|
left: -26px; |
|
position: absolute; |
|
} |
|
|
|
.focusable { |
|
&:focus { |
|
outline: 0; |
|
background: lighten($ui-base-color, 4%); |
|
|
|
.status.status-direct { |
|
background: lighten($ui-base-color, 12%); |
|
|
|
&.muted { |
|
background: transparent; |
|
} |
|
} |
|
|
|
.detailed-status, |
|
.detailed-status__action-bar { |
|
background: lighten($ui-base-color, 8%); |
|
} |
|
} |
|
} |
|
|
|
.status { |
|
padding: 8px 10px; |
|
padding-left: 68px; |
|
position: relative; |
|
min-height: 54px; |
|
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. |
|
padding-right: 26px; // 10px + 16px |
|
} |
|
|
|
@keyframes fade { |
|
0% { opacity: 0; } |
|
100% { opacity: 1; } |
|
} |
|
|
|
opacity: 1; |
|
animation: fade 150ms linear; |
|
|
|
.video-player { |
|
margin-top: 8px; |
|
} |
|
|
|
&.status-direct:not(.read) { |
|
background: lighten($ui-base-color, 8%); |
|
border-bottom-color: lighten($ui-base-color, 12%); |
|
} |
|
|
|
&.light { |
|
.status__relative-time { |
|
color: $light-text-color; |
|
} |
|
|
|
.status__display-name { |
|
color: $inverted-text-color; |
|
} |
|
|
|
.display-name { |
|
strong { |
|
color: $inverted-text-color; |
|
} |
|
|
|
span { |
|
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-primary-color; |
|
|
|
&:hover { |
|
background: lighten($ui-primary-color, 8%); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
.notification-favourite { |
|
.status.status-direct { |
|
background: transparent; |
|
|
|
.icon-button.disabled { |
|
color: lighten($action-button-color, 13%); |
|
} |
|
} |
|
} |
|
|
|
.status__relative-time, |
|
.notification__relative_time { |
|
color: $dark-text-color; |
|
float: right; |
|
font-size: 14px; |
|
} |
|
|
|
.status__display-name { |
|
color: $dark-text-color; |
|
} |
|
|
|
.status__info .status__display-name { |
|
display: block; |
|
max-width: 100%; |
|
padding-right: 25px; |
|
} |
|
|
|
.status__info { |
|
font-size: 15px; |
|
} |
|
|
|
.status-check-box { |
|
border-bottom: 1px solid $ui-secondary-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; |
|
} |
|
|
|
.video-player { |
|
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: $dark-text-color; |
|
padding: 8px 0; |
|
padding-bottom: 2px; |
|
font-size: 14px; |
|
position: relative; |
|
|
|
.status__display-name strong { |
|
color: $dark-text-color; |
|
} |
|
|
|
> span { |
|
display: block; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
} |
|
} |
|
|
|
.status__action-bar { |
|
align-items: center; |
|
display: flex; |
|
margin-top: 8px; |
|
|
|
&__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; |
|
} |
|
} |
|
} |
|
|
|
.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; |
|
|
|
&--flex { |
|
display: flex; |
|
flex-wrap: wrap; |
|
justify-content: space-between; |
|
align-items: flex-start; |
|
|
|
.status__content, |
|
.detailed-status__meta { |
|
flex: 100%; |
|
} |
|
} |
|
|
|
.status__content { |
|
font-size: 19px; |
|
line-height: 24px; |
|
|
|
.emojione { |
|
width: 24px; |
|
height: 24px; |
|
margin: -1px 0 0; |
|
} |
|
|
|
.status__content__spoiler-link { |
|
line-height: 24px; |
|
margin: -1px 0 0; |
|
} |
|
} |
|
|
|
.video-player { |
|
margin-top: 8px; |
|
} |
|
} |
|
|
|
.detailed-status__meta { |
|
margin-top: 15px; |
|
color: $dark-text-color; |
|
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; |
|
} |
|
|
|
.reply-indicator__content { |
|
color: $inverted-text-color; |
|
font-size: 14px; |
|
|
|
a { |
|
color: $lighter-text-color; |
|
} |
|
} |
|
|
|
.domain { |
|
padding: 10px; |
|
border-bottom: 1px solid lighten($ui-base-color, 8%); |
|
|
|
.domain__domain-name { |
|
flex: 1 1 auto; |
|
display: block; |
|
color: $primary-text-color; |
|
text-decoration: none; |
|
font-size: 14px; |
|
font-weight: 500; |
|
} |
|
} |
|
|
|
.domain__wrapper { |
|
display: flex; |
|
} |
|
|
|
.domain_buttons { |
|
height: 18px; |
|
padding: 10px; |
|
white-space: nowrap; |
|
} |
|
|
|
.account { |
|
padding: 10px; |
|
border-bottom: 1px solid lighten($ui-base-color, 8%); |
|
|
|
&.compact { |
|
padding: 0; |
|
border-bottom: 0; |
|
|
|
.account__avatar-wrapper { |
|
margin-left: 0; |
|
} |
|
} |
|
|
|
.account__display-name { |
|
flex: 1 1 auto; |
|
display: block; |
|
color: $darker-text-color; |
|
overflow: hidden; |
|
text-decoration: none; |
|
font-size: 14px; |
|
} |
|
} |
|
|
|
.account__wrapper { |
|
display: flex; |
|
} |
|
|
|
.account__avatar-wrapper { |
|
float: left; |
|
margin-left: 12px; |
|
margin-right: 12px; |
|
} |
|
|
|
.account__avatar { |
|
@include avatar-radius; |
|
position: relative; |
|
|
|
&-inline { |
|
display: inline-block; |
|
vertical-align: middle; |
|
margin-right: 5px; |
|
} |
|
|
|
&-composite { |
|
@include avatar-radius; |
|
overflow: hidden; |
|
|
|
& > div { |
|
@include avatar-radius; |
|
float: left; |
|
position: relative; |
|
box-sizing: border-box; |
|
} |
|
} |
|
} |
|
|
|
a .account__avatar { |
|
cursor: pointer; |
|
} |
|
|
|
.account__avatar-overlay { |
|
@include avatar-size(48px); |
|
|
|
&-base { |
|
@include avatar-radius; |
|
@include avatar-size(36px); |
|
} |
|
|
|
&-overlay { |
|
@include avatar-radius; |
|
@include avatar-size(24px); |
|
|
|
position: absolute; |
|
bottom: 0; |
|
right: 0; |
|
z-index: 1; |
|
} |
|
} |
|
|
|
.account__relationship { |
|
height: 18px; |
|
padding: 10px; |
|
white-space: nowrap; |
|
} |
|
|
|
.account__disclaimer { |
|
padding: 10px; |
|
border-top: 1px solid lighten($ui-base-color, 8%); |
|
color: $dark-text-color; |
|
|
|
strong { |
|
font-weight: 500; |
|
|
|
@each $lang in $cjk-langs { |
|
&:lang(#{$lang}) { |
|
font-weight: 700; |
|
} |
|
} |
|
} |
|
|
|
a { |
|
font-weight: 500; |
|
color: inherit; |
|
text-decoration: underline; |
|
|
|
&:hover, |
|
&:focus, |
|
&:active { |
|
text-decoration: none; |
|
} |
|
} |
|
} |
|
|
|
.account__action-bar { |
|
border-top: 1px solid lighten($ui-base-color, 8%); |
|
border-bottom: 1px solid lighten($ui-base-color, 8%); |
|
line-height: 36px; |
|
overflow: hidden; |
|
flex: 0 0 auto; |
|
display: flex; |
|
} |
|
|
|
.account__action-bar-dropdown { |
|
padding: 10px; |
|
|
|
.icon-button { |
|
vertical-align: middle; |
|
} |
|
|
|
.dropdown--active { |
|
.dropdown__content.dropdown__right { |
|
left: 6px; |
|
right: initial; |
|
} |
|
|
|
&::after { |
|
bottom: initial; |
|
margin-left: 11px; |
|
margin-top: -7px; |
|
right: initial; |
|
} |
|
} |
|
} |
|
|
|
.account__action-bar-links { |
|
display: flex; |
|
flex: 1 1 auto; |
|
line-height: 18px; |
|
text-align: center; |
|
} |
|
|
|
.account__action-bar__tab { |
|
text-decoration: none; |
|
overflow: hidden; |
|
flex: 0 1 100%; |
|
border-right: 1px solid lighten($ui-base-color, 8%); |
|
padding: 10px 0; |
|
border-bottom: 4px solid transparent; |
|
|
|
&.active { |
|
border-bottom: 4px solid $ui-highlight-color; |
|
} |
|
|
|
& > span { |
|
display: block; |
|
text-transform: uppercase; |
|
font-size: 11px; |
|
color: $darker-text-color; |
|
} |
|
|
|
strong { |
|
display: block; |
|
font-size: 15px; |
|
font-weight: 500; |
|
color: $primary-text-color; |
|
|
|
@each $lang in $cjk-langs { |
|
&:lang(#{$lang}) { |
|
font-weight: 700; |
|
} |
|
} |
|
} |
|
} |
|
|
|
.account-authorize { |
|
padding: 14px 10px; |
|
|
|
.detailed-status__display-name { |
|
display: block; |
|
margin-bottom: 15px; |
|
overflow: hidden; |
|
} |
|
} |
|
|
|
.account-authorize__avatar { |
|
float: left; |
|
margin-right: 10px; |
|
} |
|
|
|
.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; |
|
} |
|
} |
|
|
|
.status__display-name, |
|
.reply-indicator__display-name, |
|
.detailed-status__display-name, |
|
a.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; |
|
} |
|
|
|
.detailed-status__display-name { |
|
color: $secondary-text-color; |
|
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 { |
|
height: 48px; |
|
left: 10px; |
|
position: absolute; |
|
top: 10px; |
|
width: 48px; |
|
} |
|
|
|
.status__expand { |
|
width: 68px; |
|
position: absolute; |
|
left: 0; |
|
top: 0; |
|
height: 100%; |
|
cursor: pointer; |
|
} |
|
|
|
.muted { |
|
.status__content p, |
|
.status__content a { |
|
color: $dark-text-color; |
|
} |
|
|
|
.status__display-name strong { |
|
color: $dark-text-color; |
|
} |
|
|
|
.status__avatar { |
|
opacity: 0.5; |
|
} |
|
|
|
a.status__content__spoiler-link { |
|
background: $ui-base-lighter-color; |
|
color: $inverted-text-color; |
|
|
|
&:hover { |
|
background: lighten($ui-base-lighter-color, 7%); |
|
text-decoration: none; |
|
} |
|
} |
|
} |
|
|
|
.notification__message { |
|
margin: 0 10px 0 68px; |
|
padding: 8px 0 0; |
|
cursor: default; |
|
color: $darker-text-color; |
|
font-size: 15px; |
|
line-height: 22px; |
|
position: relative; |
|
|
|
.fa { |
|
color: $highlight-text-color; |
|
} |
|
|
|
> span { |
|
display: inline; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
} |
|
} |
|
|
|
.notification__favourite-icon-wrapper { |
|
left: -26px; |
|
position: absolute; |
|
|
|
.star-icon { |
|
color: $gold-star; |
|
} |
|
} |
|
|
|
.star-icon.active { |
|
color: $gold-star; |
|
} |
|
|
|
.notification__display-name { |
|
color: inherit; |
|
font-weight: 500; |
|
text-decoration: none; |
|
|
|
&:hover { |
|
color: $primary-text-color; |
|
text-decoration: underline; |
|
} |
|
} |
|
|
|
.notification__relative_time { |
|
float: right; |
|
} |
|
|
|
.display-name { |
|
display: block; |
|
max-width: 100%; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
white-space: nowrap; |
|
} |
|
|
|
.display-name__html { |
|
font-weight: 500; |
|
} |
|
|
|
.display-name__account { |
|
font-size: 14px; |
|
} |
|
|
|
.status__relative-time, |
|
.detailed-status__datetime { |
|
&:hover { |
|
text-decoration: underline; |
|
} |
|
} |
|
|
|
.image-loader { |
|
position: relative; |
|
width: 100%; |
|
height: 100%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
flex-direction: column; |
|
|
|
.image-loader__preview-canvas { |
|
max-width: $media-modal-media-max-width; |
|
max-height: $media-modal-media-max-height; |
|
background: url('../images/void.png') repeat; |
|
object-fit: contain; |
|
} |
|
|
|
.loading-bar { |
|
position: relative; |
|
} |
|
|
|
&.image-loader--amorphous .image-loader__preview-canvas { |
|
display: none; |
|
} |
|
} |
|
|
|
.zoomable-image { |
|
position: relative; |
|
width: 100%; |
|
height: 100%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
|
|
img { |
|
max-width: $media-modal-media-max-width; |
|
max-height: $media-modal-media-max-height; |
|
width: auto; |
|
height: auto; |
|
object-fit: contain; |
|
} |
|
} |
|
|
|
.navigation-bar { |
|
padding: 10px; |
|
display: flex; |
|
align-items: center; |
|
flex-shrink: 0; |
|
cursor: default; |
|
color: $darker-text-color; |
|
|
|
strong { |
|
color: $secondary-text-color; |
|
} |
|
|
|
a { |
|
color: inherit; |
|
} |
|
|
|
.permalink { |
|
text-decoration: none; |
|
} |
|
|
|
.navigation-bar__actions { |
|
position: relative; |
|
|
|
.icon-button.close { |
|
position: absolute; |
|
pointer-events: none; |
|
transform: scale(0, 1) translate(-100%, 0); |
|
opacity: 0; |
|
} |
|
|
|
.compose__action-bar .icon-button { |
|
pointer-events: auto; |
|
transform: scale(1, 1) translate(0, 0); |
|
opacity: 1; |
|
} |
|
} |
|
} |
|
|
|
.navigation-bar__profile { |
|
flex: 1 1 auto; |
|
margin-left: 8px; |
|
line-height: 20px; |
|
margin-top: -1px; |
|
overflow: hidden; |
|
} |
|
|
|
.navigation-bar__profile-account { |
|
display: block; |
|
font-weight: 500; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
} |
|
|
|
.navigation-bar__profile-edit { |
|
color: inherit; |
|
text-decoration: none; |
|
} |
|
|
|
.dropdown { |
|
display: inline-block; |
|
} |
|
|
|
.dropdown__content { |
|
display: none; |
|
position: absolute; |
|
} |
|
|
|
.dropdown-menu__separator { |
|
border-bottom: 1px solid darken($ui-secondary-color, 8%); |
|
margin: 5px 7px 6px; |
|
height: 0; |
|
} |
|
|
|
.dropdown-menu { |
|
background: $ui-secondary-color; |
|
padding: 4px 0; |
|
border-radius: 4px; |
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4); |
|
z-index: 9999; |
|
|
|
ul { |
|
list-style: none; |
|
} |
|
|
|
&.left { |
|
transform-origin: 100% 50%; |
|
} |
|
|
|
&.top { |
|
transform-origin: 50% 100%; |
|
} |
|
|
|
&.bottom { |
|
transform-origin: 50% 0; |
|
} |
|
|
|
&.right { |
|
transform-origin: 0 50%; |
|
} |
|
} |
|
|
|
.dropdown-menu__arrow { |
|
position: absolute; |
|
width: 0; |
|
height: 0; |
|
border: 0 solid transparent; |
|
|
|
&.left { |
|
right: -5px; |
|
margin-top: -5px; |
|
border-width: 5px 0 5px 5px; |
|
border-left-color: $ui-secondary-color; |
|
} |
|
|
|
&.top { |
|
bottom: -5px; |
|
margin-left: -7px; |
|
border-width: 5px 7px 0; |
|
border-top-color: $ui-secondary-color; |
|
} |
|
|
|
&.bottom { |
|
top: -5px; |
|
margin-left: -7px; |
|
border-width: 0 7px 5px; |
|
border-bottom-color: $ui-secondary-color; |
|
} |
|
|
|
&.right { |
|
left: -5px; |
|
margin-top: -5px; |
|
border-width: 5px 5px 5px 0; |
|
border-right-color: $ui-secondary-color; |
|
} |
|
} |
|
|
|
.dropdown-menu__item { |
|
a { |
|
font-size: 13px; |
|
line-height: 18px; |
|
display: block; |
|
padding: 4px 14px; |
|
box-sizing: border-box; |
|
text-decoration: none; |
|
background: $ui-secondary-color; |
|
color: $inverted-text-color; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
white-space: nowrap; |
|
|
|
&:focus, |
|
&:hover, |
|
&:active { |
|
background: $ui-highlight-color; |
|
color: $secondary-text-color; |
|
outline: 0; |
|
} |
|
} |
|
} |
|
|
|
.dropdown--active .dropdown__content { |
|
display: block; |
|
line-height: 18px; |
|
max-width: 311px; |
|
right: 0; |
|
text-align: left; |
|
z-index: 9999; |
|
|
|
& > ul { |
|
list-style: none; |
|
background: $ui-secondary-color; |
|
padding: 4px 0; |
|
border-radius: 4px; |
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.4); |
|
min-width: 140px; |
|
position: relative; |
|
} |
|
|
|
&.dropdown__right { |
|
right: 0; |
|
} |
|
|
|
&.dropdown__left { |
|
& > ul { |
|
left: -98px; |
|
} |
|
} |
|
|
|
& > ul > li > a { |
|
font-size: 13px; |
|
line-height: 18px; |
|
display: block; |
|
padding: 4px 14px; |
|
box-sizing: border-box; |
|
text-decoration: none; |
|
background: $ui-secondary-color; |
|
color: $inverted-text-color; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
white-space: nowrap; |
|
|
|
&:focus { |
|
outline: 0; |
|
} |
|
|
|
&:hover { |
|
background: $ui-highlight-color; |
|
color: $secondary-text-color; |
|
} |
|
} |
|
} |
|
|
|
.dropdown__icon { |
|
vertical-align: middle; |
|
} |
|
|
|
.columns-area { |
|
display: flex; |
|
flex: 1 1 auto; |
|
flex-direction: row; |
|
justify-content: flex-start; |
|
overflow-x: auto; |
|
position: relative; |
|
|
|
&.unscrollable { |
|
overflow-x: hidden; |
|
} |
|
|
|
&__panels { |
|
display: flex; |
|
justify-content: center; |
|
width: 100%; |
|
height: 100%; |
|
|
|
&__pane { |
|
height: 100%; |
|
overflow: hidden; |
|
pointer-events: none; |
|
display: flex; |
|
justify-content: flex-end; |
|
|
|
&--start { |
|
justify-content: flex-start; |
|
} |
|
|
|
&__inner { |
|
width: 285px; |
|
pointer-events: auto; |
|
height: 100%; |
|
} |
|
} |
|
|
|
&__main { |
|
box-sizing: border-box; |
|
width: 100%; |
|
max-width: 600px; |
|
display: flex; |
|
flex-direction: column; |
|
|
|
@media screen and (min-width: 360px) { |
|
padding: 0 10px; |
|
} |
|
} |
|
} |
|
} |
|
|
|
.react-swipeable-view-container { |
|
&, |
|
.columns-area, |
|
.drawer, |
|
.column { |
|
height: 100%; |
|
} |
|
} |
|
|
|
.react-swipeable-view-container > * { |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
height: 100%; |
|
} |
|
|
|
.column { |
|
width: 350px; |
|
position: relative; |
|
box-sizing: border-box; |
|
display: flex; |
|
flex-direction: column; |
|
|
|
> .scrollable { |
|
background: $ui-base-color; |
|
} |
|
} |
|
|
|
.ui { |
|
flex: 0 0 auto; |
|
display: flex; |
|
flex-direction: column; |
|
width: 100%; |
|
height: 100%; |
|
background: darken($ui-base-color, 7%); |
|
} |
|
|
|
.drawer { |
|
width: 300px; |
|
box-sizing: border-box; |
|
display: flex; |
|
flex-direction: column; |
|
overflow-y: hidden; |
|
} |
|
|
|
.drawer__tab { |
|
display: block; |
|
flex: 1 1 auto; |
|
padding: 15px 5px 13px; |
|
color: $darker-text-color; |
|
text-decoration: none; |
|
text-align: center; |
|
font-size: 16px; |
|
border-bottom: 2px solid transparent; |
|
} |
|
|
|
.column, |
|
.drawer { |
|
flex: 1 1 100%; |
|
overflow: hidden; |
|
} |
|
|
|
@media screen and (min-width: 631px) { |
|
.columns-area { |
|
padding: 0; |
|
} |
|
|
|
.column, |
|
.drawer { |
|
flex: 0 0 auto; |
|
padding: 10px; |
|
padding-left: 5px; |
|
padding-right: 5px; |
|
|
|
&:first-child { |
|
padding-left: 10px; |
|
} |
|
|
|
&:last-child { |
|
padding-right: 10px; |
|
} |
|
} |
|
|
|
.columns-area > div { |
|
.column, |
|
.drawer { |
|
padding-left: 5px; |
|
padding-right: 5px; |
|
} |
|
} |
|
} |
|
|
|
.tabs-bar { |
|
box-sizing: border-box; |
|
display: flex; |
|
background: lighten($ui-base-color, 8%); |
|
flex: 0 0 auto; |
|
overflow-y: auto; |
|
} |
|
|
|
.tabs-bar__link { |
|
display: block; |
|
flex: 1 1 auto; |
|
padding: 15px 10px; |
|
padding-bottom: 13px; |
|
color: $primary-text-color; |
|
text-decoration: none; |
|
text-align: center; |
|
font-size: 14px; |
|
font-weight: 500; |
|
border-bottom: 2px solid lighten($ui-base-color, 8%); |
|
transition: all 50ms linear; |
|
transition-property: border-bottom, background, color; |
|
|
|
.fa { |
|
font-weight: 400; |
|
font-size: 16px; |
|
} |
|
|
|
&.active { |
|
border-bottom: 2px solid $highlight-text-color; |
|
color: $highlight-text-color; |
|
} |
|
|
|
&:hover, |
|
&:focus, |
|
&:active { |
|
@media screen and (min-width: 631px) { |
|
background: lighten($ui-base-color, 14%); |
|
border-bottom-color: lighten($ui-base-color, 14%); |
|
} |
|
} |
|
|
|
span { |
|
margin-left: 5px; |
|
display: none; |
|
} |
|
} |
|
|
|
@media screen and (min-width: 600px) { |
|
.tabs-bar__link { |
|
span { |
|
display: inline; |
|
} |
|
} |
|
} |
|
|
|
.columns-area--mobile { |
|
flex-direction: column; |
|
width: 100%; |
|
height: 100%; |
|
margin: 0 auto; |
|
|
|
.column, |
|
.drawer { |
|
width: 100%; |
|
height: 100%; |
|
padding: 0; |
|
} |
|
|
|
.autosuggest-textarea__textarea { |
|
font-size: 16px; |
|
} |
|
|
|
.search__input { |
|
line-height: 18px; |
|
font-size: 16px; |
|
padding: 15px; |
|
padding-right: 30px; |
|
} |
|
|
|
.search__icon .fa { |
|
top: 15px; |
|
} |
|
|
|
@media screen and (min-width: 360px) { |
|
padding: 10px 0; |
|
} |
|
|
|
@media screen and (min-width: 630px) { |
|
.detailed-status { |
|
padding: 15px; |
|
|
|
.media-gallery, |
|
.video-player { |
|
margin-top: 15px; |
|
} |
|
} |
|
|
|
.account__header__bar { |
|
padding: 5px 10px; |
|
} |
|
|
|
.navigation-bar, |
|
.compose-form { |
|
padding: 15px; |
|
} |
|
|
|
.compose-form .compose-form__publish .compose-form__publish-button-wrapper { |
|
padding-top: 15px; |
|
} |
|
|
|
.status { |
|
padding: 15px 15px 15px (48px + 15px * 2); |
|
min-height: 48px + 2px; |
|
|
|
&__avatar { |
|
left: 15px; |
|
top: 17px; |
|
} |
|
|
|
&__content { |
|
padding-top: 5px; |
|
} |
|
|
|
&__prepend { |
|
margin-left: 48px + 15px * 2; |
|
padding-top: 15px; |
|
} |
|
|
|
&__prepend-icon-wrapper { |
|
left: -32px; |
|
} |
|
|
|
.media-gallery, |
|
&__action-bar, |
|
.video-player { |
|
margin-top: 10px; |
|
} |
|
} |
|
|
|
.account { |
|
padding: 15px 10px; |
|
|
|
&__header__bio { |
|
margin: 0 -10px; |
|
} |
|
} |
|
|
|
.notification { |
|
&__message { |
|
margin-left: 48px + 15px * 2; |
|
padding-top: 15px; |
|
} |
|
|
|
&__favourite-icon-wrapper { |
|
left: -32px; |
|
} |
|
|
|
.status { |
|
padding-top: 8px; |
|
} |
|
|
|
.account { |
|
padding-top: 8px; |
|
} |
|
|
|
.account__avatar-wrapper { |
|
margin-left: 17px; |
|
margin-right: 15px; |
|
} |
|
} |
|
} |
|
} |
|
|
|
.floating-action-button { |
|
position: fixed; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
width: 3.9375rem; |
|
height: 3.9375rem; |
|
bottom: 1.3125rem; |
|
right: 1.3125rem; |
|
background: darken($ui-highlight-color, 3%); |
|
color: $white; |
|
border-radius: 50%; |
|
font-size: 21px; |
|
line-height: 21px; |
|
text-decoration: none; |
|
box-shadow: 2px 3px 9px rgba($base-shadow-color, 0.4); |
|
|
|
&:hover, |
|
&:focus, |
|
&:active { |
|
background: lighten($ui-highlight-color, 7%); |
|
} |
|
} |
|
|
|
@media screen and (min-width: 360px) { |
|
.tabs-bar { |
|
margin: 10px auto; |
|
margin-bottom: 0; |
|
width: 100%; |
|
} |
|
|
|
.react-swipeable-view-container .columns-area--mobile { |
|
height: calc(100% - 20px) !important; |
|
} |
|
|
|
.getting-started__wrapper, |
|
.getting-started__trends, |
|
.search { |
|
margin-bottom: 10px; |
|
} |
|
} |
|
|
|
@media screen and (max-width: 600px + (285px * 1) + (10px * 1)) { |
|
.columns-area__panels__pane--compositional { |
|
display: none; |
|
} |
|
} |
|
|
|
@media screen and (min-width: 600px + (285px * 1) + (10px * 1)) { |
|
.floating-action-button, |
|
.tabs-bar__link.optional { |
|
display: none; |
|
} |
|
|
|
.search-page .search { |
|
display: none; |
|
} |
|
} |
|
|
|
@media screen and (max-width: 600px + (285px * 2) + (10px * 2)) { |
|
.columns-area__panels__pane--navigational { |
|
display: none; |
|
} |
|
} |
|
|
|
@media screen and (min-width: 600px + (285px * 2) + (10px * 2)) { |
|
.tabs-bar { |
|
display: none; |
|
} |
|
} |
|
|
|
.icon-with-badge { |
|
position: relative; |
|
|
|
&__badge { |
|
position: absolute; |
|
left: 9px; |
|
top: -13px; |
|
background: $ui-highlight-color; |
|
border: 2px solid lighten($ui-base-color, 8%); |
|
padding: 1px 6px; |
|
border-radius: 6px; |
|
font-size: 10px; |
|
font-weight: 500; |
|
line-height: 14px; |
|
color: $primary-text-color; |
|
} |
|
} |
|
|
|
.column-link--transparent .icon-with-badge__badge { |
|
border-color: darken($ui-base-color, 8%); |
|
} |
|
|
|
.compose-panel { |
|
width: 285px; |
|
margin-top: 10px; |
|
display: flex; |
|
flex-direction: column; |
|
height: calc(100% - 10px); |
|
overflow-y: hidden; |
|
|
|
.search__input { |
|
line-height: 18px; |
|
font-size: 16px; |
|
padding: 15px; |
|
padding-right: 30px; |
|
} |
|
|
|
.search__icon .fa { |
|
top: 15px; |
|
} |
|
|
|
.navigation-bar { |
|
padding-top: 20px; |
|
padding-bottom: 20px; |
|
flex: 0 1 48px; |
|
min-height: 20px; |
|
} |
|
|
|
.flex-spacer { |
|
background: transparent; |
|
} |
|
|
|
.compose-form { |
|
flex: 1; |
|
overflow-y: hidden; |
|
display: flex; |
|
flex-direction: column; |
|
min-height: 310px; |
|
padding-bottom: 71px; |
|
margin-bottom: -71px; |
|
} |
|
|
|
.compose-form__autosuggest-wrapper { |
|
overflow-y: auto; |
|
background-color: $white; |
|
border-radius: 4px 4px 0 0; |
|
flex: 0 1 auto; |
|
} |
|
|
|
.autosuggest-textarea__textarea { |
|
overflow-y: hidden; |
|
} |
|
|
|
.compose-form__upload-thumbnail { |
|
height: 80px; |
|
} |
|
} |
|
|
|
.navigation-panel { |
|
margin-top: 10px; |
|
margin-bottom: 10px; |
|
height: calc(100% - 20px); |
|
overflow-y: auto; |
|
|
|
hr { |
|
border: 0; |
|
background: transparent; |
|
border-top: 1px solid lighten($ui-base-color, 4%); |
|
margin: 10px 0; |
|
} |
|
} |
|
|
|
.drawer__pager { |
|
box-sizing: border-box; |
|
padding: 0; |
|
flex-grow: 1; |
|
position: relative; |
|
overflow: hidden; |
|
display: flex; |
|
} |
|
|
|
.drawer__inner { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
background: lighten($ui-base-color, 13%); |
|
box-sizing: border-box; |
|
padding: 0; |
|
display: flex; |
|
flex-direction: column; |
|
overflow: hidden; |
|
overflow-y: auto; |
|
width: 100%; |
|
height: 100%; |
|
|
|
&.darker { |
|
background: $ui-base-color; |
|
} |
|
} |
|
|
|
.drawer__inner__mastodon { |
|
background: lighten($ui-base-color, 13%) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 234.80078 31.757813" width="234.80078" height="31.757812"><path d="M19.599609 0c-1.05 0-2.10039.375-2.90039 1.125L0 16.925781v14.832031h234.80078V17.025391l-16.5-15.900391c-1.6-1.5-4.20078-1.5-5.80078 0l-13.80078 13.099609c-1.6 1.5-4.19883 1.5-5.79883 0L179.09961 1.125c-1.6-1.5-4.19883-1.5-5.79883 0L159.5 14.224609c-1.6 1.5-4.20078 1.5-5.80078 0L139.90039 1.125c-1.6-1.5-4.20078-1.5-5.80078 0l-13.79883 13.099609c-1.6 1.5-4.20078 1.5-5.80078 0L100.69922 1.125c-1.600001-1.5-4.198829-1.5-5.798829 0l-13.59961 13.099609c-1.6 1.5-4.200781 1.5-5.800781 0L61.699219 1.125c-1.6-1.5-4.198828-1.5-5.798828 0L42.099609 14.224609c-1.6 1.5-4.198828 1.5-5.798828 0L22.5 1.125C21.7.375 20.649609 0 19.599609 0z" fill="#{hex-color($ui-base-color)}"/></svg>') no-repeat bottom / 100% auto; |
|
flex: 1; |
|
min-height: 47px; |
|
display: none; |
|
|
|
> img { |
|
display: block; |
|
object-fit: contain; |
|
object-position: bottom left; |
|
width: 100%; |
|
height: 100%; |
|
pointer-events: none; |
|
user-drag: none; |
|
user-select: none; |
|
} |
|
|
|
@media screen and (min-height: 640px) { |
|
display: block; |
|
} |
|
} |
|
|
|
.pseudo-drawer { |
|
background: lighten($ui-base-color, 13%); |
|
font-size: 13px; |
|
text-align: left; |
|
} |
|
|
|
.drawer__header { |
|
flex: 0 0 auto; |
|
font-size: 16px; |
|
background: lighten($ui-base-color, 8%); |
|
margin-bottom: 10px; |
|
display: flex; |
|
flex-direction: row; |
|
|
|
a { |
|
transition: background 100ms ease-in; |
|
|
|
&:hover { |
|
background: lighten($ui-base-color, 3%); |
|
transition: background 200ms ease-out; |
|
} |
|
} |
|
} |
|
|
|
.scrollable { |
|
overflow-y: scroll; |
|
overflow-x: hidden; |
|
flex: 1 1 auto; |
|
-webkit-overflow-scrolling: touch; |
|
will-change: transform; // improves perf in mobile Chrome |
|
|
|
&.optionally-scrollable { |
|
overflow-y: auto; |
|
} |
|
|
|
@supports(display: grid) { // hack to fix Chrome <57 |
|
contain: strict; |
|
} |
|
|
|
&--flex { |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
&__append { |
|
flex: 1 1 auto; |
|
position: relative; |
|
min-height: 120px; |
|
} |
|
} |
|
|
|
.scrollable.fullscreen { |
|
@supports(display: grid) { // hack to fix Chrome <57 |
|
contain: none; |
|
} |
|
} |
|
|
|
.column-back-button { |
|
background: lighten($ui-base-color, 4%); |
|
color: $highlight-text-color; |
|
cursor: pointer; |
|
flex: 0 0 auto; |
|
font-size: 16px; |
|
line-height: inherit; |
|
border: 0; |
|
text-align: unset; |
|
padding: 15px; |
|
margin: 0; |
|
z-index: 3; |
|
outline: 0; |
|
|
|
&:hover { |
|
text-decoration: underline; |
|
} |
|
} |
|
|
|
.column-header__back-button { |
|
background: lighten($ui-base-color, 4%); |
|
border: 0; |
|
font-family: inherit; |
|
color: $highlight-text-color; |
|
cursor: pointer; |
|
white-space: nowrap; |
|
font-size: 16px; |
|
padding: 0 5px 0 0; |
|
z-index: 3; |
|
|
|
&:hover { |
|
text-decoration: underline; |
|
} |
|
|
|
&:last-child { |
|
padding: 0 15px 0 0; |
|
} |
|
} |
|
|
|
.column-back-button__icon { |
|
display: inline-block; |
|
margin-right: 5px; |
|
} |
|
|
|
.column-back-button--slim { |
|
position: relative; |
|
} |
|
|
|
.column-back-button--slim-button { |
|
cursor: pointer; |
|
flex: 0 0 auto; |
|
font-size: 16px; |
|
padding: 15px; |
|
position: absolute; |
|
right: 0; |
|
top: -48px; |
|
} |
|
|
|
.react-toggle { |
|
display: inline-block; |
|
position: relative; |
|
cursor: pointer; |
|
background-color: transparent; |
|
border: 0; |
|
padding: 0; |
|
user-select: none; |
|
-webkit-tap-highlight-color: rgba($base-overlay-background, 0); |
|
-webkit-tap-highlight-color: transparent; |
|
} |
|
|
|
.react-toggle-screenreader-only { |
|
border: 0; |
|
clip: rect(0 0 0 0); |
|
height: 1px; |
|
margin: -1px; |
|
overflow: hidden; |
|
padding: 0; |
|
position: absolute; |
|
width: 1px; |
|
} |
|
|
|
.react-toggle--disabled { |
|
cursor: not-allowed; |
|
opacity: 0.5; |
|
transition: opacity 0.25s; |
|
} |
|
|
|
.react-toggle-track { |
|
width: 50px; |
|
height: 24px; |
|
padding: 0; |
|
border-radius: 30px; |
|
background-color: $ui-base-color; |
|
transition: background-color 0.2s ease; |
|
} |
|
|
|
.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track { |
|
background-color: darken($ui-base-color, 10%); |
|
} |
|
|
|
.react-toggle--checked .react-toggle-track { |
|
background-color: $ui-highlight-color; |
|
} |
|
|
|
.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track { |
|
background-color: lighten($ui-highlight-color, 10%); |
|
} |
|
|
|
.react-toggle-track-check { |
|
position: absolute; |
|
width: 14px; |
|
height: 10px; |
|
top: 0; |
|
bottom: 0; |
|
margin-top: auto; |
|
margin-bottom: auto; |
|
line-height: 0; |
|
left: 8px; |
|
opacity: 0; |
|
transition: opacity 0.25s ease; |
|
} |
|
|
|
.react-toggle--checked .react-toggle-track-check { |
|
opacity: 1; |
|
transition: opacity 0.25s ease; |
|
} |
|
|
|
.react-toggle-track-x { |
|
position: absolute; |
|
width: 10px; |
|
height: 10px; |
|
top: 0; |
|
bottom: 0; |
|
margin-top: auto; |
|
margin-bottom: auto; |
|
line-height: 0; |
|
right: 10px; |
|
opacity: 1; |
|
transition: opacity 0.25s ease; |
|
} |
|
|
|
.react-toggle--checked .react-toggle-track-x { |
|
opacity: 0; |
|
} |
|
|
|
.react-toggle-thumb { |
|
position: absolute; |
|
top: 1px; |
|
left: 1px; |
|
width: 22px; |
|
height: 22px; |
|
border: 1px solid $ui-base-color; |
|
border-radius: 50%; |
|
background-color: darken($simple-background-color, 2%); |
|
box-sizing: border-box; |
|
transition: all 0.25s ease; |
|
transition-property: border-color, left; |
|
} |
|
|
|
.react-toggle--checked .react-toggle-thumb { |
|
left: 27px; |
|
border-color: $ui-highlight-color; |
|
} |
|
|
|
.column-link { |
|
background: lighten($ui-base-color, 8%); |
|
color: $primary-text-color; |
|
display: block; |
|
font-size: 16px; |
|
padding: 15px; |
|
text-decoration: none; |
|
|
|
&:hover, |
|
&:focus, |
|
&:active { |
|
background: lighten($ui-base-color, 11%); |
|
} |
|
|
|
&:focus { |
|
outline: 0; |
|
} |
|
|
|
&--transparent { |
|
background: transparent; |
|
color: $ui-secondary-color; |
|
|
|
&:hover, |
|
&:focus, |
|
&:active { |
|
background: transparent; |
|
color: $primary-text-color; |
|
} |
|
|
|
&.active { |
|
color: $ui-highlight-color; |
|
} |
|
} |
|
} |
|
|
|
.column-link__icon { |
|
display: inline-block; |
|
margin-right: 5px; |
|
} |
|
|
|
.column-link__badge { |
|
display: inline-block; |
|
border-radius: 4px; |
|
font-size: 12px; |
|
line-height: 19px; |
|
font-weight: 500; |
|
background: $ui-base-color; |
|
padding: 4px 8px; |
|
margin: -6px 10px; |
|
} |
|
|
|
.column-subheading { |
|
background: $ui-base-color; |
|
color: $dark-text-color; |
|
padding: 8px 20px; |
|
font-size: 12px; |
|
font-weight: 500; |
|
text-transform: uppercase; |
|
cursor: default; |
|
} |
|
|
|
.getting-started__wrapper, |
|
.getting-started, |
|
.flex-spacer { |
|
background: $ui-base-color; |
|
} |
|
|
|
.getting-started__wrapper { |
|
flex: 0 0 auto; |
|
} |
|
|
|
.flex-spacer { |
|
flex: 1 1 auto; |
|
} |
|
|
|
.getting-started { |
|
color: $dark-text-color; |
|
overflow: auto; |
|
|
|
&__footer { |
|
flex: 0 0 auto; |
|
padding: 10px; |
|
padding-top: 20px; |
|
|
|
ul { |
|
margin-bottom: 10px; |
|
} |
|
|
|
ul li { |
|
display: inline; |
|
} |
|
|
|
p { |
|
color: $dark-text-color; |
|
font-size: 13px; |
|
margin-bottom: 20px; |
|
|
|
a { |
|
color: $dark-text-color; |
|
text-decoration: underline; |
|
} |
|
} |
|
|
|
a { |
|
text-decoration: none; |
|
color: $darker-text-color; |
|
|
|
&:hover, |
|
&:focus, |
|
&:active { |
|
text-decoration: underline; |
|
} |
|
} |
|
} |
|
|
|
&__trends { |
|
background: $ui-base-color; |
|
flex: 0 1 auto; |
|
|
|
@media screen and (max-height: 810px) { |
|
.trends__item:nth-child(3) { |
|
display: none; |
|
} |
|
} |
|
|
|
@media screen and (max-height: 720px) { |
|
.trends__item:nth-child(2) { |
|
display: none; |
|
} |
|
} |
|
|
|