@import 'variables';
.app-body {
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: -ms-autohiding-scrollbar;
+ -webkit-overflow-scrolling: touch;
+ -ms-overflow-style: -ms-autohiding-scrollbar;
}
.button {
- background-color: darken($color4, 3%);
+ background-color: darken($ui-highlight-color, 3%);
border: 10px none;
border-radius: 4px;
box-sizing: border-box;
- color: $color5;
+ color: $primary-text-color;
cursor: pointer;
display: inline-block;
font-family: inherit;
text-overflow: ellipsis;
transition: all 100ms ease-in;
white-space: nowrap;
+ width: auto;
&:active,
&:focus,
&:hover {
- background-color: lighten($color4, 7%);
+ background-color: lighten($ui-highlight-color, 7%);
transition: all 200ms ease-out;
}
&:disabled {
- background-color: $color3;
+ background-color: $ui-primary-color;
cursor: default;
}
+ &.button-alternative {
+ font-size: 16px;
+ line-height: 36px;
+ height: auto;
+ color: $ui-base-color;
+ background: $ui-primary-color;
+ text-transform: none;
+ padding: 4px 16px;
+
+ &:active,
+ &:focus,
+ &:hover {
+ background-color: lighten($ui-primary-color, 4%);
+ }
+ }
+
&.button-secondary {
- //
+ font-size: 16px;
+ line-height: 36px;
+ height: auto;
+ color: $ui-primary-color;
+ text-transform: none;
+ background: transparent;
+ padding: 3px 15px;
+ border: 1px solid $ui-primary-color;
+
+ &:active,
+ &:focus,
+ &:hover {
+ border-color: lighten($ui-primary-color, 4%);
+ color: lighten($ui-primary-color, 4%);
+ }
+ }
+
+ &.button--block {
+ display: block;
+ width: 100%;
}
}
-.column-collapsable {
+.column__wrapper {
+ display: flex;
+ flex: 1 1 auto;
position: relative;
}
.column-icon {
- background: lighten($color1, 4%);
- color: $color3;
+ background: lighten($ui-base-color, 4%);
+ color: $ui-primary-color;
cursor: pointer;
font-size: 16px;
padding: 15px;
z-index: 3;
&:hover {
- color: lighten($color3, 7%);
- }
-}
-
-.column-icon-clear {
- font-size: 16px;
- padding: 15px;
- position: absolute;
- right: 48px;
- top: 0;
- cursor: pointer;
- z-index: 2;
-}
-
-@media screen and (min-width: 1025px) {
- .column-icon-clear {
- top: 10px;
+ color: lighten($ui-primary-color, 7%);
}
}
.icon-button {
display: inline-block;
padding: 0;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
border: none;
background: transparent;
cursor: pointer;
transition: color 100ms ease-in;
- &:hover, &:active, &:focus {
- color: lighten($color1, 33%);
+ &:hover,
+ &:active,
+ &:focus {
+ color: lighten($ui-base-color, 33%);
transition: color 200ms ease-out;
}
&.disabled {
- color: lighten($color1, 13%);
+ color: lighten($ui-base-color, 13%);
cursor: default;
}
&.active {
- color: $color4;
+ color: $ui-highlight-color;
}
&::-moz-focus-inner {
border: 0;
}
- &::-moz-focus-inner, &:focus, &:active {
+ &::-moz-focus-inner,
+ &:focus,
+ &:active {
outline: 0 !important;
}
&.inverted {
- color: lighten($color1, 33%);
+ color: lighten($ui-base-color, 33%);
- &:hover, &:active, &:focus {
- color: lighten($color1, 26%);
+ &:hover,
+ &:active,
+ &:focus {
+ color: $ui-base-lighter-color;
}
&.active {
- color: $color4;
+ color: $ui-highlight-color;
}
&.disabled {
- color: $color3;
+ color: $ui-primary-color;
}
}
&.overlayed {
box-sizing: content-box;
- background: rgba($color8, 0.6);
- color: rgba($color5, 0.7);
+ background: rgba($base-overlay-background, 0.6);
+ color: rgba($primary-text-color, 0.7);
border-radius: 4px;
padding: 2px;
&:hover {
- background: rgba($color8, 0.9);
+ background: rgba($base-overlay-background, 0.9);
}
}
}
.text-icon-button {
- color: lighten($color1, 33%);
+ color: lighten($ui-base-color, 33%);
border: none;
background: transparent;
cursor: pointer;
outline: 0;
transition: color 100ms ease-in;
- &:hover, &:active, &:focus {
- color: lighten($color1, 26%);
+ &:hover,
+ &:active,
+ &:focus {
+ color: $ui-base-lighter-color;
transition: color 200ms ease-out;
}
&.disabled {
- color: lighten($color1, 13%);
+ color: lighten($ui-base-color, 13%);
cursor: default;
}
&.active {
- color: $color4;
+ color: $ui-highlight-color;
}
&::-moz-focus-inner {
border: 0;
}
- &::-moz-focus-inner, &:focus, &:active {
+ &::-moz-focus-inner,
+ &:focus,
+ &:active {
outline: 0 !important;
}
}
.dropdown--active .icon-button {
- color: $color4;
+ color: $ui-highlight-color;
}
-.dropdown--active:after {
- content: "";
- display: block;
- position: absolute;
- width: 0;
- height: 0;
- border-style: solid;
- border-width: 0 4.5px 7.8px 4.5px;
- border-color: transparent transparent $color2 transparent;
- bottom: 8px;
- right: 104px;
+.dropdown--active::after {
+ @media screen and (min-width: 1025px) {
+ content: "";
+ display: block;
+ position: absolute;
+ width: 0;
+ height: 0;
+ border-style: solid;
+ border-width: 0 4.5px 7.8px;
+ border-color: transparent transparent $ui-secondary-color;
+ bottom: 8px;
+ right: 104px;
+ }
}
.invisible {
}
.ellipsis {
- &:after {
+ &::after {
content: "…";
}
}
.lightbox .icon-button {
- color: $color1;
+ color: $ui-base-color;
}
.compose-form {
}
.compose-form__warning {
- color: darken($color3, 33%);
+ color: darken($ui-secondary-color, 65%);
margin-bottom: 15px;
- background: $color3;
- box-shadow: 0 2px 6px rgba($color8, 0.3);
+ 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: darken($color3, 33%);
+ color: darken($ui-secondary-color, 65%);
font-weight: 500;
}
a {
- color: darken($color3, 33%);
+ color: darken($ui-primary-color, 33%);
font-weight: 500;
text-decoration: underline;
- &:hover, &:active, &:focus {
+ &:hover,
+ &:active,
+ &:focus {
text-decoration: none;
}
}
}
.compose-form__modifiers {
- color: $color1;
+ color: $ui-base-color;
font-family: inherit;
font-size: 14px;
- background: $color5;
- border-radius: 0 0 4px 0;
+ background: $simple-background-color;
+ border-radius: 0 0 4px;
}
.compose-form__buttons-wrapper {
.compose-form__buttons {
padding: 10px;
- background: darken($color5, 8%);
- box-shadow: inset 0 5px 5px rgba($color8, 0.05);
+ background: darken($simple-background-color, 8%);
+ box-shadow: inset 0 5px 5px rgba($base-shadow-color, 0.05);
border-radius: 0 0 4px 4px;
display: flex;
line-height: 27px;
}
+.compose-form__sensitive-button {
+ display: none;
+
+ &.compose-form__sensitive-button--visible {
+ display: block;
+ }
+
+ .compose-form__sensitive-button__icon {
+ line-height: 27px;
+ }
+}
+
.compose-form__upload-wrapper {
overflow: hidden;
}
vertical-align: middle;
&.with-border {
- border-top: 1px solid $color1;
+ border-top: 1px solid $ui-base-color;
padding-top: 10px;
}
vertical-align: middle;
margin-bottom: 14px;
margin-left: 8px;
- color: $color3;
+ color: $ui-primary-color;
}
}
-.compose-form__textarea, .follow-form__input {
- background: $color5;
+.compose-form__textarea,
+.follow-form__input {
+ background: $simple-background-color;
&:disabled {
- background: $color2;
+ background: $ui-secondary-color;
}
}
.compose-form__autosuggest-wrapper {
position: relative;
- .dropdown--active:after {
- border-color: transparent transparent $color5 transparent;
- bottom: -1px;
- right: 8px;
+ .emoji-picker__dropdown {
+ position: absolute;
+ right: 5px;
+ top: 5px;
+
+ &.dropdown--active::after {
+ border-color: transparent transparent $base-border-color;
+ bottom: -1px;
+ right: 8px;
+ }
}
}
border-radius: 4px 4px 0 0;
position: relative;
bottom: -2px;
- background: $color3;
+ background: $ui-primary-color;
padding: 10px;
}
}
.reply-indicator__display-name {
- color: $color1;
+ color: $ui-base-color;
display: block;
max-width: 100%;
line-height: 24px;
margin-right: 5px;
}
-.status__content {
+.status__content--with-action {
cursor: pointer;
}
-.status__content--no-action {
- cursor: default;
-}
-
.status__content,
.reply-indicator__content {
font-size: 15px;
overflow: hidden;
white-space: pre-wrap;
+ &:focus {
+ outline: rgba($ui-highlight-color, 0.7) solid 2px;
+ }
+
.emojione {
width: 18px;
height: 18px;
}
a {
- color: $color2;
+ color: $ui-secondary-color;
text-decoration: none;
&:hover {
text-decoration: underline;
.fa {
- color: lighten($color1, 40%);
+ color: lighten($ui-base-color, 40%);
}
}
}
.fa {
- color: lighten($color1, 30%);
+ color: lighten($ui-base-color, 30%);
}
}
.status__content__spoiler-link {
- background: lighten($color1, 30%);
+ background: lighten($ui-base-color, 30%);
&:hover {
- background: lighten($color1, 33%);
+ background: lighten($ui-base-color, 33%);
text-decoration: none;
}
}
+
+ .status__content__text {
+ display: none;
+
+ &.status__content__text--visible {
+ display: block;
+ }
+ }
}
-a.status__content__spoiler-link {
+.status__content__spoiler-link {
display: inline-block;
border-radius: 2px;
- color: lighten($color1, 8%);
+ background: transparent;
+ border: 0;
+ color: lighten($ui-base-color, 8%);
font-weight: 500;
font-size: 11px;
- padding: 0px 6px;
+ padding: 0 6px;
text-transform: uppercase;
line-height: inherit;
+ cursor: pointer;
}
.status__prepend-icon-wrapper {
padding-left: 68px;
position: relative;
min-height: 48px;
- border-bottom: 1px solid lighten($color1, 8%);
+ border-bottom: 1px solid lighten($ui-base-color, 8%);
cursor: default;
+ @keyframes fade {
+ 0% { opacity: 0; }
+ 100% { opacity: 1; }
+ }
+
+ opacity: 1;
+ animation: fade 150ms linear;
+
+ &.status-direct {
+ background: lighten($ui-base-color, 8%);
+
+ .icon-button.disabled {
+ color: lighten($ui-base-color, 16%);
+ }
+ }
+
+ &:focus,
+ &.status-direct:focus {
+ outline: 0;
+ background-color: lighten($ui-base-color, 10%);
+ }
+
&.light {
.status__relative-time {
- color: $color3;
+ color: $ui-primary-color;
}
.status__display-name {
- color: $color1;
+ color: $ui-base-color;
}
.display-name {
strong {
- color: $color1;
+ color: $ui-base-color;
}
span {
- color: $color3;
+ color: $ui-primary-color;
}
}
.status__content {
- color: $color1;
+ color: $ui-base-color;
a {
- color: $color4;
+ color: $ui-highlight-color;
}
a.status__content__spoiler-link {
- color: $color5;
- background: $color3;
+ color: $primary-text-color;
+ background: $ui-primary-color;
&:hover {
- background: lighten($color3, 8%);
+ background: lighten($ui-primary-color, 8%);
}
}
}
}
}
+.notification-favourite {
+ .status.status-direct {
+ background: transparent;
+
+ .icon-button.disabled {
+ color: lighten($ui-base-color, 13%);
+ }
+ }
+}
+
.status__relative-time {
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
+ float: right;
+ font-size: 14px;
}
.status__display-name {
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
}
.status__info .status__display-name {
font-size: 15px;
}
-.status__info-time {
- float: right;
- font-size: 14px;
-}
-
.status-check-box {
- border-bottom: 1px solid lighten($color1, 8%);
+ border-bottom: 1px solid $ui-secondary-color;
display: flex;
.status__content {
- background: lighten($color1, 4%);
flex: 1 1 auto;
padding: 10px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
}
}
.status__prepend {
margin-left: 68px;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
padding: 8px 0;
padding-bottom: 2px;
font-size: 14px;
position: relative;
.status__display-name strong {
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
}
}
margin-top: 10px;
}
-.status__action-bar-button-wrapper {
+.status__action-bar-button {
float: left;
margin-right: 18px;
}
width: 18px;
}
+.detailed-status__action-bar-dropdown {
+ flex: 1 1 auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+
+ .dropdown {
+ display: block;
+ width: 18px;
+ height: 18px;
+ }
+
+ .dropdown--active {
+ .dropdown__content.dropdown__left {
+ left: 20px;
+ right: initial;
+ }
+
+ &::after {
+ bottom: initial;
+ margin-left: 7px;
+ margin-top: -7px;
+ right: initial;
+ }
+ }
+}
+
.detailed-status {
- background: lighten($color1, 4%);
+ background: lighten($ui-base-color, 4%);
padding: 14px 10px;
.status__content {
.detailed-status__meta {
margin-top: 15px;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
font-size: 14px;
line-height: 18px;
}
.detailed-status__action-bar {
- background: lighten($color1, 4%);
- border-top: 1px solid lighten($color1, 8%);
- border-bottom: 1px solid lighten($color1, 8%);
+ 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;
}
.reply-indicator__content {
- color: $color1;
+ color: $ui-base-color;
font-size: 14px;
a {
- color: lighten($color1, 20%);
+ color: lighten($ui-base-color, 20%);
}
}
.account {
padding: 10px;
- border-bottom: 1px solid lighten($color1, 8%);
+ border-bottom: 1px solid lighten($ui-base-color, 8%);
.account__display-name {
flex: 1 1 auto;
display: block;
- color: $color3;
+ color: $ui-primary-color;
overflow: hidden;
text-decoration: none;
font-size: 14px;
}
.account__avatar {
- border-radius: 4px;
- background: transparent no-repeat;
- background-position: 50%;
- background-clip: padding-box;
+ @include avatar-radius();
position: relative;
+ cursor: pointer;
+
+ &-inline {
+ display: inline-block;
+ vertical-align: middle;
+ margin-right: 5px;
+ }
+}
+
+.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 {
.account__header {
flex: 0 0 auto;
- background: lighten($color1, 4%);
+ background: lighten($ui-base-color, 4%);
text-align: center;
background-size: cover;
background-position: center;
position: relative;
& > div {
- background: rgba(lighten($color1, 4%), 0.9);
+ background: rgba(lighten($ui-base-color, 4%), 0.9);
+ padding: 20px 10px;
}
.account__header__content {
- color: $color2;
+ color: $ui-secondary-color;
}
.account__header__display-name {
- color: $color5;
+ color: $primary-text-color;
+ display: inline-block;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
}
.account__header__username {
- color: $color4;
+ color: $ui-highlight-color;
+ font-size: 14px;
+ font-weight: 400;
+ display: block;
+ margin-bottom: 10px;
+ }
+}
+
+.account__disclaimer {
+ padding: 10px;
+ border-top: 1px solid lighten($ui-base-color, 8%);
+ color: $ui-base-lighter-color;
+
+ strong {
+ font-weight: 500;
+ }
+
+ a {
+ font-weight: 500;
+ color: inherit;
+ text-decoration: underline;
+
+ &:hover,
+ &:focus,
+ &:active {
+ text-decoration: none;
+ }
}
}
.account__header__content {
- color: $color3;
+ color: $ui-primary-color;
font-size: 14px;
font-weight: 400;
overflow: hidden;
}
.account__action-bar {
- border-top: 1px solid lighten($color1, 8%);
- border-bottom: 1px solid lighten($color1, 8%);
+ 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;
right: initial;
}
- &:after {
+ &::after {
bottom: initial;
margin-left: 11px;
margin-top: -7px;
text-decoration: none;
overflow: hidden;
width: 80px;
- border-left: 1px solid lighten($color1, 8%);
+ border-left: 1px solid lighten($ui-base-color, 8%);
padding: 10px 5px;
& > span {
display: block;
text-transform: uppercase;
font-size: 11px;
- color: $color3;
+ color: $ui-primary-color;
}
strong {
display: block;
font-size: 15px;
font-weight: 500;
- color: $color5;
+ color: $primary-text-color;
}
abbr {
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
}
}
.status__display-name,
.account__display-name {
strong {
- color: $color5;
+ color: $primary-text-color;
}
&.muted {
}
.detailed-status__display-name {
- color: $color2;
+ color: $ui-secondary-color;
display: block;
line-height: 24px;
margin-bottom: 15px;
strong {
font-size: 16px;
- color: $color5;
+ color: $primary-text-color;
}
}
.muted {
.status__content p,
.status__content a {
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
}
.status__display-name strong {
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
}
.status__avatar {
}
a.status__content__spoiler-link {
- background: lighten($color1, 26%);
- color: lighten($color1, 4%);
+ background: $ui-base-lighter-color;
+ color: lighten($ui-base-color, 4%);
&:hover {
- background: lighten($color1, 29%);
+ background: lighten($ui-base-color, 29%);
text-decoration: none;
}
}
padding: 8px 0;
padding-bottom: 0;
cursor: default;
- color: $color3;
+ color: $ui-primary-color;
font-size: 15px;
position: relative;
.fa {
- color: $color4;
+ color: $ui-highlight-color;
}
}
position: absolute;
.star-icon {
- color: #ca8f04;
+ color: $gold-star;
}
}
.star-icon.active {
- color: #ca8f04;
+ color: $gold-star;
}
.notification__display-name {
text-decoration: none;
&:hover {
- color: $color5;
+ color: $primary-text-color;
text-decoration: underline;
}
}
}
}
-.transparent-background, .imageloader {
- background: url('../images/void.png');
-}
+.image-loader {
+ position: relative;
-.imageloader {
- display: block;
+ &.image-loader--loading {
+ .image-loader__preview-canvas {
+ filter: blur(2px);
+ }
+ }
+
+ .image-loader__img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ max-width: 100%;
+ max-height: 100%;
+ background-image: none;
+ }
+
+ &.image-loader--amorphous {
+ position: static;
+
+ .image-loader__preview-canvas {
+ display: none;
+ }
+
+ .image-loader__img {
+ position: static;
+ width: auto;
+ height: auto;
+ }
+ }
}
.navigation-bar {
display: flex;
flex-shrink: 0;
cursor: default;
- color: $color3;
+ color: $ui-primary-color;
strong {
- color: $color5;
+ color: $primary-text-color;
}
.permalink {
text-decoration: none;
}
+
+ .icon-button {
+ pointer-events: none;
+ opacity: 0;
+ }
}
.navigation-bar__profile {
}
.dropdown__sep {
- border-bottom: 1px solid darken($color2, 8%);
+ border-bottom: 1px solid darken($ui-secondary-color, 8%);
margin: 5px 7px 6px;
padding-top: 1px;
}
& > ul {
list-style: none;
- background: $color2;
+ background: $ui-secondary-color;
padding: 4px 0;
border-radius: 4px;
- box-shadow: 0 0 15px rgba($color8, 0.4);
+ box-shadow: 0 0 15px rgba($base-shadow-color, 0.4);
min-width: 140px;
position: relative;
}
padding: 4px 14px;
box-sizing: border-box;
text-decoration: none;
- background: $color2;
- color: $color1;
+ background: $ui-secondary-color;
+ color: $ui-base-color;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
&:hover {
- background: $color4;
- color: $color2;
+ background: $ui-highlight-color;
+ color: $ui-secondary-color;
}
}
}
.static-content {
padding: 10px;
padding-top: 20px;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
h1 {
font-size: 16px;
flex-direction: row;
justify-content: flex-start;
overflow-x: auto;
- position: relative;
+ position: relative;
}
@media screen and (min-width: 360px) {
.columns-area {
padding: 10px;
}
+
+ .react-swipeable-view-container .columns-area {
+ height: calc(100% - 20px) !important;
+ }
+}
+
+.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 {
flex-direction: column;
> .scrollable {
- background: $color1;
+ background: $ui-base-color;
}
}
flex-direction: column;
width: 100%;
height: 100%;
- background: darken($color1, 7%);
+ background: darken($ui-base-color, 7%);
}
.drawer {
.drawer__tab {
display: block;
flex: 1 1 auto;
- padding: 15px;
- padding-bottom: 13px;
- color: $color3;
+ padding: 15px 5px 13px;
+ color: $ui-primary-color;
text-decoration: none;
text-align: center;
font-size: 16px;
border-bottom: 2px solid transparent;
}
-.column, .drawer {
+.column,
+.drawer {
flex: 1 1 100%;
overflow: hidden;
+ @supports(display: grid) { // hack to fix Chrome <57
+ contain: strict;
+ }
}
@media screen and (min-width: 360px) {
}
@media screen and (max-width: 1024px) {
- .column, .drawer {
+ .column,
+ .drawer {
width: 100%;
padding: 0;
}
flex-direction: column;
}
- .search__input, .autosuggest-textarea__textarea {
+ .search__input,
+ .autosuggest-textarea__textarea {
font-size: 16px;
}
}
padding: 0;
}
- .column, .drawer {
+ .column,
+ .drawer {
flex: 0 0 auto;
padding: 10px;
padding-left: 5px;
}
.columns-area > div {
- .column, .drawer {
+ .column,
+ .drawer {
padding-left: 5px;
padding-right: 5px;
}
}
}
-@media screen and (min-width: 1397px) { /* Width of 4 columns with margins */
- .columns-area {
- margin-left: auto;
- margin-right: auto;
- }
-}
-
-@media screen and (min-width: 1900px) {
- .column, .drawer {
- width: 400px;
- border-radius: 4px;
- height: 96vh;
- margin-top: 2vh;
- }
-}
-
.drawer__pager {
box-sizing: border-box;
padding: 0;
position: absolute;
top: 0;
left: 0;
- background: lighten($color1, 13%);
+ background: lighten($ui-base-color, 13%);
box-sizing: border-box;
padding: 0;
display: flex;
height: 100%;
&.darker {
- background: $color1;
+ background: $ui-base-color;
}
}
.pseudo-drawer {
- background: lighten($color1, 13%);
+ background: lighten($ui-base-color, 13%);
font-size: 13px;
text-align: left;
}
.drawer__header {
flex: 0 0 auto;
font-size: 16px;
- background: lighten($color1, 8%);
+ background: lighten($ui-base-color, 8%);
margin-bottom: 10px;
display: flex;
flex-direction: row;
transition: background 100ms ease-in;
&:hover {
- background: lighten($color1, 3%);
+ background: lighten($ui-base-color, 3%);
transition: background 200ms ease-out;
}
}
.tabs-bar {
display: flex;
- background: lighten($color1, 8%);
+ background: lighten($ui-base-color, 8%);
flex: 0 0 auto;
overflow-y: auto;
}
display: block;
flex: 1 1 auto;
padding: 15px 10px;
- color: $color5;
+ color: $primary-text-color;
text-decoration: none;
text-align: center;
font-size: 14px;
font-weight: 500;
- border-bottom: 2px solid lighten($color1, 8%);
+ border-bottom: 2px solid lighten($ui-base-color, 8%);
transition: all 200ms linear;
.fa {
}
&.active {
- border-bottom: 2px solid $color4;
- color: $color4;
+ border-bottom: 2px solid $ui-highlight-color;
+ color: $ui-highlight-color;
}
- &:hover, &:focus, &:active {
- background: lighten($color1, 14%);
- transition: all 100ms linear;
+ &:hover,
+ &:focus,
+ &:active {
+ @media screen and (min-width: 1025px) {
+ background: lighten($ui-base-color, 14%);
+ transition: all 100ms linear;
+ }
}
span {
}
}
-.react-autosuggest__container {
- position: relative;
-}
-
-.react-autosuggest__suggestions-container {
- position: absolute;
- top: 100%;
- width: 100%;
- z-index: 99;
- box-shadow: 0 0 15px rgba($color8, 0.4);
-}
-
-.react-autosuggest__section-title {
- background: $color3;
- padding: 4px 10px;
- font-weight: 500;
- cursor: default;
- color: $color1;
- text-transform: uppercase;
- font-size: 11px;
-}
-
-.react-autosuggest__suggestions-list {
- background: $color2;
- color: $color1;
- font-size: 14px;
-}
-
-.react-autosuggest__suggestion {
- padding: 10px;
- cursor: pointer;
-}
-
-.react-autosuggest__suggestion--focused {
- background: $color4;
- color: $color5;
-}
-
.scrollable {
overflow-y: scroll;
overflow-x: hidden;
flex: 1 1 auto;
backface-visibility: hidden;
-webkit-overflow-scrolling: touch;
+ @supports(display: grid) { // hack to fix Chrome <57
+ contain: strict;
+ }
&.optionally-scrollable {
overflow-y: auto;
}
.column-back-button {
- background: lighten($color1, 4%);
- color: $color4;
+ background: lighten($ui-base-color, 4%);
+ color: $ui-highlight-color;
cursor: pointer;
flex: 0 0 auto;
font-size: 16px;
+ border: 0;
+ text-align: start;
padding: 15px;
z-index: 3;
}
}
+.column-header__back-button {
+ background: lighten($ui-base-color, 4%);
+ border: 0;
+ font-family: inherit;
+ color: $ui-highlight-color;
+ cursor: pointer;
+ flex: 0 0 auto;
+ font-size: 16px;
+ padding: 0 5px 0 0;
+ z-index: 3;
+
+ &:hover {
+ text-decoration: underline;
+ }
+}
+
.column-back-button__icon {
display: inline-block;
margin-right: 5px;
border: 0;
padding: 0;
user-select: none;
- -webkit-tap-highlight-color: rgba($color8, 0);
+ -webkit-tap-highlight-color: rgba($base-overlay-background, 0);
-webkit-tap-highlight-color: transparent;
}
height: 24px;
padding: 0;
border-radius: 30px;
- background-color: $color1;
+ background-color: $ui-base-color;
transition: all 0.2s ease;
}
.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
- background-color: darken($color1, 10%);
+ background-color: darken($ui-base-color, 10%);
}
.react-toggle--checked .react-toggle-track {
- background-color: $color4;
+ background-color: $ui-highlight-color;
}
.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
- background-color: lighten($color4, 10%);
+ background-color: lighten($ui-highlight-color, 10%);
}
.react-toggle-track-check {
position: absolute;
width: 14px;
height: 10px;
- top: 0px;
- bottom: 0px;
+ top: 0;
+ bottom: 0;
margin-top: auto;
margin-bottom: auto;
line-height: 0;
position: absolute;
width: 10px;
height: 10px;
- top: 0px;
- bottom: 0px;
+ top: 0;
+ bottom: 0;
margin-top: auto;
margin-bottom: auto;
line-height: 0;
left: 1px;
width: 22px;
height: 22px;
- border: 1px solid $color1;
+ border: 1px solid $ui-base-color;
border-radius: 50%;
- background-color: darken($color5, 2%);
+ background-color: darken($simple-background-color, 2%);
box-sizing: border-box;
transition: all 0.25s ease;
}
.react-toggle--checked .react-toggle-thumb {
left: 27px;
- border-color: $color4;
+ border-color: $ui-highlight-color;
}
.column-link {
- background: lighten($color1, 8%);
- color: $color5;
+ background: lighten($ui-base-color, 8%);
+ color: $primary-text-color;
display: block;
font-size: 16px;
padding: 15px;
text-decoration: none;
&:hover {
- background: lighten($color1, 11%);
- }
-
- &.hidden-on-mobile {
- @media screen and (max-width: 1024px) {
- display: none;
- }
+ background: lighten($ui-base-color, 11%);
}
}
}
.column-subheading {
- background: $color1;
- color: lighten($color1, 26%);
+ background: $ui-base-color;
+ color: $ui-base-lighter-color;
padding: 8px 20px;
font-size: 12px;
font-weight: 500;
box-sizing: border-box;
width: 100%;
margin: 0;
- color: $color1;
+ color: $ui-base-color;
+ background: $simple-background-color;
padding: 10px;
font-family: inherit;
font-size: 14px;
.autosuggest-textarea__textarea {
min-height: 100px;
- background: $color5;
border-radius: 4px 4px 0 0;
padding-bottom: 0;
padding-right: 10px + 22px;
}
.autosuggest-textarea__suggestions {
+ display: none;
position: absolute;
top: 100%;
width: 100%;
z-index: 99;
- box-shadow: 0 0 15px rgba($color8, 0.4);
- background: $color2;
- color: $color1;
+ box-shadow: 0 0 15px rgba($base-shadow-color, 0.4);
+ background: $ui-secondary-color;
+ color: $ui-base-color;
font-size: 14px;
+
+ &.autosuggest-textarea__suggestions--visible {
+ display: block;
+ }
}
.autosuggest-textarea__suggestions__item {
cursor: pointer;
&:hover {
- background: darken($color2, 10%);
+ background: darken($ui-secondary-color, 10%);
}
&.selected {
- background: $color4;
- color: $color5;
+ background: $ui-highlight-color;
+ color: $base-border-color;
}
}
}
.character-counter--over {
- color: #ff5050;
+ color: $warning-red;
}
.getting-started__wrapper {
position: relative;
+ overflow-y: auto;
+}
+
+.getting-started__footer {
+ display: flex;
+ flex-direction: column;
}
.getting-started {
box-sizing: border-box;
padding-bottom: 235px;
- background: url('../images/mastodon-getting-started.png') no-repeat 0 100%/contain local;
+ background: url('../images/mastodon-getting-started.png') no-repeat 0 100%;
flex: 1 0 auto;
p {
- color: $color2;
+ color: $ui-secondary-color;
}
a {
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
}
}
.setting-text {
- color: $color3;
+ color: $ui-primary-color;
background: transparent;
border: none;
- border-bottom: 2px solid $color3;
+ border-bottom: 2px solid $ui-primary-color;
box-sizing: border-box;
display: block;
font-family: inherit;
margin-bottom: 10px;
- padding: 7px 0px;
+ padding: 7px 0;
width: 100%;
- &:focus, &:active {
- color: $color5;
- border-bottom-color: $color4;
+ &:focus,
+ &:active {
+ color: $primary-text-color;
+ border-bottom-color: $ui-highlight-color;
}
@media screen and (max-width: 600px) {
font-size: 16px;
}
+
+ &.light {
+ color: $ui-base-color;
+ border-bottom: 2px solid lighten($ui-base-color, 27%);
+
+ &:focus,
+ &:active {
+ color: $ui-base-color;
+ border-bottom-color: $ui-highlight-color;
+ }
+ }
}
@import 'boost';
display: flex;
cursor: pointer;
font-size: 14px;
- border: 1px solid lighten($color1, 8%);
+ border: 1px solid lighten($ui-base-color, 8%);
border-radius: 4px;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
margin-top: 14px;
text-decoration: none;
overflow: hidden;
&:hover {
- background: lighten($color1, 8%);
+ background: lighten($ui-base-color, 8%);
}
}
-.status-card-video, .status-card-rich, .status-card-photo {
+.status-card-video,
+.status-card-rich,
+.status-card-photo {
margin-top: 14px;
overflow: hidden;
}
}
+.status-card-video {
+ position: relative;
+ width: 100%;
+ height: auto;
+ padding-top: 56.25%;
+
+ iframe {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ width: 1px;
+ min-width: 100%;
+ height: 1px;
+ min-height: 100%;
+ margin: auto;
+ }
+}
+
.status-card__title {
display: block;
font-weight: 500;
margin-bottom: 5px;
- color: $color3;
+ color: $ui-primary-color;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.status-card__description {
- color: $color3;
+ color: $ui-primary-color;
+}
+
+.status-card__host {
+ display: block;
+ margin-top: 5px;
+ font-size: 13px;
}
.status-card__image {
flex: 0 0 100px;
- background: lighten($color1, 8%);
+ background: lighten($ui-base-color, 8%);
}
.status-card__image-image {
- border-radius: 4px 0px 0px 4px;
+ border-radius: 4px 0 0 4px;
display: block;
height: auto;
margin: 0;
.load-more {
display: block;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
+ background-color: transparent;
+ border: 0;
+ font-size: inherit;
text-align: center;
+ line-height: inherit;
+ margin: 0;
padding: 15px;
- text-decoration: none;
+ width: 100%;
+ clear: both;
&:hover {
- background: lighten($color1, 2%);
+ background: lighten($ui-base-color, 2%);
}
}
text-align: center;
font-size: 16px;
font-weight: 500;
- color: lighten($color1, 16%);
- background: $color1;
+ color: lighten($ui-base-color, 16%);
+ background: $ui-base-color;
cursor: default;
display: flex;
flex: 1 1 auto;
}
}
+.column-header__wrapper {
+ position: relative;
+ flex: 0 0 auto;
+
+ &.active {
+ &::before {
+ display: block;
+ content: "";
+ position: absolute;
+ top: 35px;
+ left: 0;
+ right: 0;
+ margin: 0 auto;
+ width: 60%;
+ pointer-events: none;
+ height: 28px;
+ z-index: 1;
+ background: radial-gradient(ellipse, rgba($ui-highlight-color, 0.23) 0%, rgba($ui-highlight-color, 0) 60%);
+ }
+ }
+}
+
.column-header {
padding: 15px;
font-size: 16px;
- background: lighten($color1, 4%);
+ background: lighten($ui-base-color, 4%);
flex: 0 0 auto;
cursor: pointer;
position: relative;
outline: 0;
&.active {
- box-shadow: 0 1px 0 rgba($color4, 0.3);
+ box-shadow: 0 1px 0 rgba($ui-highlight-color, 0.3);
+
+ .column-header__icon {
+ color: $ui-highlight-color;
+ text-shadow: 0 0 10px rgba($ui-highlight-color, 0.4);
+ }
}
- &.active .fa {
- color: $color4;
- text-shadow: 0 0 10px rgba($color4, 0.4);
+ &:focus,
+ &:active {
+ outline: 0;
}
+}
- &.hidden-on-mobile {
- @media screen and (max-width: 1024px) {
- display: none;
+.column-header__buttons {
+ position: absolute;
+ right: 0;
+ top: 0;
+ height: 100%;
+ display: flex;
+ height: 48px;
+}
+
+.column-header__button {
+ background: lighten($ui-base-color, 4%);
+ border: 0;
+ color: $ui-primary-color;
+ cursor: pointer;
+ font-size: 16px;
+ padding: 0 15px;
+
+ &:hover {
+ color: lighten($ui-primary-color, 7%);
+ }
+
+ &.active {
+ color: $primary-text-color;
+ background: lighten($ui-base-color, 8%);
+
+ &:hover {
+ color: $primary-text-color;
+ background: lighten($ui-base-color, 8%);
}
}
+}
- &:focus, &:active {
- outline: 0;
+.column-header__collapsible {
+ max-height: 70vh;
+ overflow: hidden;
+ overflow-y: auto;
+ color: $ui-primary-color;
+ transition: max-height 150ms ease-in-out, opacity 300ms linear;
+ opacity: 1;
+
+ &.collapsed {
+ max-height: 0;
+ opacity: 0.5;
+ }
+
+ &.animating {
+ overflow-y: hidden;
}
}
+.column-header__collapsible-inner {
+ background: lighten($ui-base-color, 8%);
+ padding: 15px;
+}
+
+.column-header__setting-btn {
+ &:hover {
+ color: lighten($ui-primary-color, 4%);
+ text-decoration: underline;
+ }
+}
+
+.column-header__setting-arrows {
+ float: right;
+
+ .column-header__setting-btn {
+ padding: 0 10px;
+
+ &:last-child {
+ padding-right: 0;
+ }
+ }
+}
+
+.text-btn {
+ display: inline-block;
+ padding: 0;
+ font-family: inherit;
+ font-size: inherit;
+ color: inherit;
+ border: 0;
+ background: transparent;
+ cursor: pointer;
+}
+
.column-header__icon {
display: inline-block;
margin-right: 5px;
}
.loading-indicator {
- color: $color2;
- font-size: 16px;
- font-weight: 500;
- padding-top: 120px;
- text-align: center;
+ color: lighten($ui-base-color, 26%);
+ font-size: 12px;
+ font-weight: 400;
+ text-transform: uppercase;
+ overflow: visible;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+
+ span {
+ display: block;
+ float: left;
+ margin-left: 50%;
+ transform: translateX(-50%);
+ margin: 82px 0 0 50%;
+ white-space: nowrap;
+ animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.610, 0.355, 1.000);
+ }
}
-.collapsable-collapsed {
- color: $color3;
- background: lighten($color1, 4%);
+.loading-indicator__figure {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ width: 0;
+ height: 0;
+ box-sizing: border-box;
+ border: 0 solid lighten($ui-base-color, 26%);
+ border-radius: 50%;
+ animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
-.collapsable {
- color: $color5;
- background: lighten($color1, 8%);
+@keyframes loader-figure {
+ 0% {
+ width: 0;
+ height: 0;
+ background-color: lighten($ui-base-color, 26%);
+ }
- &:hover {
- color: $color5;
- background: lighten($color1, 8%);
+ 29% {
+ background-color: lighten($ui-base-color, 26%);
}
+
+ 30% {
+ width: 42px;
+ height: 42px;
+ background-color: transparent;
+ border-width: 21px;
+ opacity: 1;
+ }
+
+ 100% {
+ width: 42px;
+ height: 42px;
+ border-width: 0;
+ opacity: 0;
+ background-color: transparent;
+ }
+}
+
+@keyframes loader-label {
+ 0% { opacity: 0.25; }
+ 30% { opacity: 1; }
+ 100% { opacity: 0.25; }
}
.video-error-cover {
align-items: center;
- background: $color8;
- color: $color5;
+ background: $base-overlay-background;
+ color: $primary-text-color;
cursor: pointer;
display: flex;
flex-direction: column;
.media-spoiler {
align-items: center;
- background: $color8;
- color: $color5;
+ background: $base-overlay-background;
+ color: $primary-text-color;
cursor: pointer;
display: flex;
flex-direction: column;
+ border: 0;
+ width: 100%;
height: 100%;
justify-content: center;
position: relative;
}
.spoiler-button {
+ display: none;
left: 4px;
position: absolute;
- text-shadow: 0px 1px 1px #000, 1px 0px 1px #000;
+ text-shadow: 0 1px 1px $base-shadow-color, 1px 0 1px $base-shadow-color;
top: 4px;
z-index: 100;
+
+ &.spoiler-button--visible {
+ display: block;
+ }
}
.modal-container--preloader {
- background: lighten($color1, 8%);
+ background: lighten($ui-base-color, 8%);
}
.account--panel {
- background: lighten($color1, 4%);
- border-top: 1px solid lighten($color1, 8%);
- border-bottom: 1px solid lighten($color1, 8%);
+ 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 0px;
+ padding: 10px 0;
}
.account--panel__button,
}
.column-settings__outer {
- background: lighten($color1, 8%);
+ background: lighten($ui-base-color, 8%);
padding: 15px;
}
.column-settings__section {
- color: $color3;
+ color: $ui-primary-color;
cursor: default;
display: block;
font-weight: 500;
margin-bottom: 10px;
}
+.column-settings__row {
+ .text-btn {
+ margin-bottom: 15px;
+ }
+}
+
.modal-container__nav {
align-items: center;
- background: rgba(0, 0, 0, 0.5);
+ background: rgba($base-overlay-background, 0.5);
box-sizing: border-box;
- color: $color5;
+ border: 0;
+ color: $primary-text-color;
cursor: pointer;
display: flex;
font-size: 24px;
}
.account--follows-info {
- color: $color5;
+ color: $primary-text-color;
+ position: absolute;
+ top: 10px;
+ right: 10px;
+ opacity: 0.7;
+ display: inline-block;
+ vertical-align: top;
+ background-color: rgba($base-overlay-background, 0.4);
+ text-transform: uppercase;
+ font-size: 11px;
+ font-weight: 500;
+ padding: 4px;
+ border-radius: 4px;
+}
+
+.account--action-button {
+ position: absolute;
+ top: 10px;
+ left: 20px;
}
-.setting-toggle__label {
+.setting-toggle {
display: block;
line-height: 24px;
- vertical-align: middle;
}
-.setting-toggle {
- color: $color3;
+.setting-toggle__label,
+.setting-meta__label {
+ color: $ui-primary-color;
display: inline-block;
margin-bottom: 14px;
margin-left: 8px;
vertical-align: middle;
}
-.report.scrollable {
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- max-height: 100%;
-}
-
-.report__target {
- border-bottom: 1px solid lighten($color1, 4%);
- color: $color2;
- flex: 0 0 auto;
- padding: 10px;
-
- strong {
- display: block;
- color: $color5;
- font-weight: 500;
- }
-}
-
-.report__statuses {
- flex: 1 1 auto;
-}
-
-.report__textarea-wrapper {
- flex: 0 0 100px;
- padding: 10px;
-}
-
-.report__textarea {
- background: transparent;
- box-sizing: border-box;
- border: 0;
- border-bottom: 2px solid $color3;
- border-radius: 2px 2px 0 0;
- color: $color5;
- display: block;
- font-family: inherit;
- font-size: 14px;
- margin-bottom: 10px;
- outline: 0;
- padding: 7px 4px;
- resize: vertical;
- width: 100%;
-
- &:active, &:focus {
- border-bottom-color: $color4;
- background: rgba($color8, 0.1);
- }
-}
-
-.report__submit {
- margin-top: 10px;
- overflow: hidden;
-}
-
-.report__submit-button {
+.setting-meta__label {
+ color: $ui-primary-color;
float: right;
}
-.empty-column-indicator {
- color: lighten($color1, 20%);
- background: $color1;
+.empty-column-indicator,
+.error-column {
+ color: lighten($ui-base-color, 20%);
+ background: $ui-base-color;
text-align: center;
padding: 20px;
font-size: 15px;
display: flex;
flex: 1 1 auto;
align-items: center;
+ justify-content: center;
+ @supports(display: grid) { // hack to fix Chrome <57
+ contain: strict;
+ }
a {
- color: $color4;
+ color: $ui-highlight-color;
text-decoration: none;
&:hover {
}
}
-.status-list__unread-indicator, .notifications__unread-indicator {
- position: absolute;
- top: 35px;
- left: 0;
- right: 0;
- margin: 0 auto;
- width: 60%;
- pointer-events: none;
- height: 28px;
- z-index: 1;
- background: radial-gradient(ellipse, rgba($color4, 0.23) 0%, rgba($color4, 0) 60%);
+.error-column {
+ flex-direction: column;
+}
+
+@keyframes pulse {
+ 0% {
+ opacity: 1;
+ }
+
+ 100% {
+ opacity: 0.5;
+ }
+}
+
+.pulse-loading {
+ animation: pulse 1s ease-in-out infinite;
+ animation-direction: alternate;
}
.emoji-dialog {
width: 245px;
height: 270px;
- background: $color5;
+ background: $simple-background-color;
box-sizing: border-box;
border-radius: 4px;
overflow: hidden;
position: relative;
- box-shadow: 0 0 8px rgba($color8, 0.2);
+ box-shadow: 0 0 8px rgba($base-shadow-color, 0.2);
.emojione {
margin: 0;
height: 18px;
}
- img, svg {
+ img,
+ svg {
width: 18px;
height: 18px;
filter: grayscale(100%);
}
&:hover {
- img, svg {
+ img,
+ svg {
filter: grayscale(0);
}
}
&.active {
- border-bottom-color: $color4;
+ border-bottom-color: $ui-highlight-color;
- img, svg {
+ img,
+ svg {
filter: grayscale(0);
}
}
font-size: 12px;
text-transform: uppercase;
font-weight: 500;
- color: darken($color2, 18%);
+ color: darken($ui-secondary-color, 18%);
cursor: default;
}
position: relative;
cursor: pointer;
- &.active:after {
+ &.active::after {
content: "";
display: block;
position: absolute;
width: 7px;
height: 7px;
border-radius: 10px;
- border: 2px solid $color5;
+ border: 2px solid $base-border-color;
top: 2px;
left: 2px;
}
.emoji-search-wrapper {
padding: 10px;
- border-bottom: 1px solid lighten($color2, 4%);
+ border-bottom: 1px solid lighten($ui-secondary-color, 4%);
}
.emoji-search {
font-family: inherit;
display: block;
width: 100%;
- background: rgba($color2, 0.3);
- color: darken($color2, 18%);
- border: 1px solid $color2;
+ background: rgba($ui-secondary-color, 0.3);
+ color: darken($ui-secondary-color, 18%);
+ border: 1px solid $ui-secondary-color;
border-radius: 4px;
}
}
.emoji-row .emoji {
- img, svg {
+ img,
+ svg {
transition: transform 60ms ease-in-out;
}
&:hover {
- background: lighten($color2, 3%);
+ background: lighten($ui-secondary-color, 3%);
- img, svg {
+ img,
+ svg {
transform: translateZ(0) scale(1.2);
}
}
.upload-area {
align-items: center;
- background: rgba($color8, 0.8);
+ background: rgba($base-overlay-background, 0.8);
display: flex;
height: 100%;
justify-content: center;
left: 0;
z-index: -1;
border-radius: 4px;
- background: $color1;
- box-shadow: 0 0 5px rgba($color8, 0.2);
+ background: $ui-base-color;
+ box-shadow: 0 0 5px rgba($base-shadow-color, 0.2);
}
.upload-area__content {
display: flex;
align-items: center;
justify-content: center;
- color: $color2;
+ color: $ui-secondary-color;
font-size: 18px;
font-weight: 500;
- border: 2px dashed lighten($color1, 26%);
+ border: 2px dashed $ui-base-lighter-color;
border-radius: 4px;
}
.upload-progress {
padding: 10px;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
overflow: hidden;
display: flex;
width: 100%;
height: 6px;
border-radius: 6px;
- background: lighten($color1, 26%);
+ background: $ui-base-lighter-color;
position: relative;
margin-top: 5px;
}
left: 0;
top: 0;
height: 6px;
- background: $color4;
+ background: $ui-highlight-color;
border-radius: 6px;
}
.emoji-button {
+ display: block;
+ font-size: 24px;
+ line-height: 24px;
+ margin-left: 2px;
+ width: 24px;
outline: 0;
+ cursor: pointer;
- &:active, &:focus {
+ &:active,
+ &:focus {
outline: 0 !important;
}
margin-top: 2px;
}
- &:hover, &:active, &:focus {
+ &:hover,
+ &:active,
+ &:focus {
img {
opacity: 1;
filter: none;
left: 0;
top: 27px;
width: 230px;
- background: $color5;
- border-radius: 0 4px 4px 4px;
+ background: $simple-background-color;
+ border-radius: 0 4px 4px;
z-index: 2;
overflow: hidden;
}
.privacy-dropdown__option {
- color: $color1;
+ color: $ui-base-color;
padding: 10px;
cursor: pointer;
display: flex;
- &:hover, &.active {
- background: $color4;
- color: $color5;
+ &:hover,
+ &.active {
+ background: $ui-highlight-color;
+ color: $primary-text-color;
.privacy-dropdown__option__content {
- color: $color5;
+ color: $primary-text-color;
strong {
- color: $color5;
+ color: $primary-text-color;
}
}
}
&.active:hover {
- background: lighten($color4, 4%);
+ background: lighten($ui-highlight-color, 4%);
}
}
.privacy-dropdown__option__content {
flex: 1 1 auto;
- color: darken($color3, 24%);
+ color: darken($ui-primary-color, 24%);
strong {
font-weight: 500;
display: block;
- color: $color1;
+ color: $ui-base-color;
}
}
.privacy-dropdown.active {
.privacy-dropdown__value {
- background: $color5;
+ background: $simple-background-color;
border-radius: 4px 4px 0 0;
- box-shadow: 0 -4px 4px rgba($color8, 0.1);
+ box-shadow: 0 -4px 4px rgba($base-shadow-color, 0.1);
}
.privacy-dropdown__dropdown {
display: block;
- box-shadow: 2px 4px 6px rgba($color8, 0.1);
+ box-shadow: 2px 4px 6px rgba($base-shadow-color, 0.1);
}
}
.search__input {
padding-right: 30px;
- color: $color2;
+ color: $ui-secondary-color;
outline: 0;
box-sizing: border-box;
display: block;
padding: 10px;
padding-right: 30px;
font-family: inherit;
- background: $color1;
- color: $color3;
+ background: $ui-base-color;
+ color: $ui-primary-color;
font-size: 14px;
margin: 0;
border: 0;
}
- &::-moz-focus-inner, &:focus, &:active {
+ &::-moz-focus-inner,
+ &:focus,
+ &:active {
outline: 0 !important;
}
&:focus {
- background: lighten($color1, 4%);
+ background: lighten($ui-base-color, 4%);
}
@media screen and (max-width: 600px) {
font-size: 18px;
width: 18px;
height: 18px;
- color: $color2;
+ color: $ui-secondary-color;
cursor: default;
pointer-events: none;
}
&:hover {
- color: $color5;
+ color: $primary-text-color;
}
}
}
.search-results__header {
- color: lighten($color1, 26%);
- background: lighten($color1, 2%);
- border-bottom: 1px solid darken($color1, 4%);
+ color: $ui-base-lighter-color;
+ background: lighten($ui-base-color, 2%);
+ border-bottom: 1px solid darken($ui-base-color, 4%);
padding: 15px 10px;
font-size: 14px;
font-weight: 500;
.search-results__hashtag {
display: block;
padding: 10px;
- color: $color2;
+ color: $ui-secondary-color;
text-decoration: none;
- &:hover, &:active, &:focus {
- color: lighten($color2, 4%);
+ &:hover,
+ &:active,
+ &:focus {
+ color: lighten($ui-secondary-color, 4%);
text-decoration: underline;
}
}
bottom: 0;
z-index: 9999;
opacity: 0;
- background: rgba($color8, 0.7);
- transform: translateZ(0px);
+ background: rgba($base-overlay-background, 0.7);
+ transform: translateZ(0);
}
.modal-root__container {
max-height: 80vh;
position: relative;
- img, video {
+ .extended-video-player,
+ img,
+ canvas,
+ video {
max-width: 80vw;
max-height: 80vh;
+ width: auto;
+ height: auto;
+ margin: auto;
+ }
+
+ .extended-video-player,
+ video {
+ display: flex;
+ width: 80vw;
+ height: 80vh;
+ }
+
+ img,
+ canvas {
+ display: block;
+ background: url('../images/void.png') repeat;
+ object-fit: contain;
}
+
+ .react-swipeable-view-container {
+ max-width: 80vw;
+ }
+}
+
+.media-modal__content {
+ background: $base-overlay-background;
}
.media-modal__close {
z-index: 100;
}
-.onboarding-modal {
- background: $color2;
- color: $color1;
+.onboarding-modal,
+.error-modal {
+ background: $ui-secondary-color;
+ color: $ui-base-color;
border-radius: 8px;
overflow: hidden;
display: flex;
width: 80vw;
max-width: 520px;
max-height: 420px;
+
+ .react-swipeable-view-container > div {
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+ padding: 25px;
+ display: none;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ display: flex;
+ user-select: text;
+ }
+}
+
+.error-modal__body {
+ height: 80vh;
+ width: 80vw;
+ max-width: 520px;
+ max-height: 420px;
position: relative;
& > div {
}
}
+.error-modal__body {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+}
+
@media screen and (max-width: 550px) {
.onboarding-modal {
width: 100%;
}
}
-.onboarding-modal__paginator {
+.onboarding-modal__paginator,
+.error-modal__footer {
flex: 0 0 auto;
- background: darken($color2, 8%);
+ background: darken($ui-secondary-color, 8%);
display: flex;
padding: 25px;
min-width: 33px;
}
- a {
- color: darken($color2, 34%);
- text-decoration: none;
+ .onboarding-modal__nav,
+ .error-modal__nav {
+ color: darken($ui-secondary-color, 34%);
+ background-color: transparent;
+ border: 0;
font-size: 14px;
font-weight: 500;
+ padding: 0;
+ line-height: inherit;
+ height: auto;
- &:hover, &:focus, &:active {
- color: darken($color2, 38%);
+ &:hover,
+ &:focus,
+ &:active {
+ color: darken($ui-secondary-color, 38%);
}
- &.onboarding-modal__done, &.onboarding-modal__next {
- color: $color4;
+ &.onboarding-modal__done,
+ &.onboarding-modal__next {
+ color: $ui-highlight-color;
}
}
}
+.error-modal__footer {
+ justify-content: center;
+}
+
.onboarding-modal__dots {
flex: 1 1 auto;
display: flex;
width: 14px;
height: 14px;
border-radius: 14px;
- background: darken($color2, 16%);
+ background: darken($ui-secondary-color, 16%);
margin: 0 3px;
cursor: pointer;
&:hover {
- background: darken($color2, 18%);
+ background: darken($ui-secondary-color, 18%);
}
&.active {
cursor: default;
- background: darken($color2, 24%);
+ background: darken($ui-secondary-color, 24%);
+ }
+}
+
+.onboarding-modal__page__wrapper {
+ pointer-events: none;
+
+ &.onboarding-modal__page__wrapper--active {
+ pointer-events: auto;
}
}
h1 {
font-size: 18px;
font-weight: 500;
- color: $color1;
+ color: $ui-base-color;
margin-bottom: 20px;
}
a {
- color: $color4;
+ color: $ui-highlight-color;
- &:hover, &:focus, &:active {
- color: lighten($color4, 4%);
+ &:hover,
+ &:focus,
+ &:active {
+ color: lighten($ui-highlight-color, 4%);
}
}
p {
font-size: 16px;
- color: lighten($color1, 8%);
+ color: lighten($ui-base-color, 8%);
margin-top: 10px;
margin-bottom: 10px;
strong {
font-weight: 500;
- background: $color1;
- color: $color2;
+ background: $ui-base-color;
+ color: $ui-secondary-color;
border-radius: 4px;
font-size: 14px;
padding: 3px 6px;
.onboarding-modal__page-one {
display: flex;
+ align-items: center;
}
.onboarding-modal__page-one__elephant-friend {
- background: url('../images/elephant-friend.png') no-repeat center center/contain;
- width: 147px;
- height: 160px;
- margin-right: 10px;
+ background: url('../images/elephant-friend-1.png') no-repeat center center / contain;
+ width: 155px;
+ height: 193px;
+ margin-right: 15px;
+}
+
+@media screen and (max-width: 400px) {
+ .onboarding-modal__page-one {
+ flex-direction: column;
+ align-items: normal;
+ }
+
+ .onboarding-modal__page-one__elephant-friend {
+ width: 100%;
+ height: 30vh;
+ max-height: 160px;
+ margin-bottom: 5vh;
+ }
}
.onboarding-modal__page-two,
}
.figure {
- background: darken($color1, 8%);
- color: $color2;
+ background: darken($ui-base-color, 8%);
+ color: $ui-secondary-color;
margin-bottom: 20px;
border-radius: 4px;
padding: 10px;
text-align: center;
font-size: 14px;
- box-shadow: 1px 2px 6px rgba($color8, 0.3);
+ box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.3);
.onboarding-modal__image {
border-radius: 4px;
}
.column-header {
- color: $color5;
+ color: $primary-text-color;
+ }
+}
+
+@media screen and (max-width: 320px) and (max-height: 600px) {
+ .onboarding-modal__page p {
+ font-size: 14px;
+ line-height: 20px;
+ }
+
+ .onboarding-modal__page-two .figure,
+ .onboarding-modal__page-three .figure,
+ .onboarding-modal__page-four .figure,
+ .onboarding-modal__page-five .figure {
+ font-size: 12px;
+ margin-bottom: 10px;
+ }
+
+ .onboarding-modal__page-four__columns .row {
+ margin-bottom: 10px;
+ }
+
+ .onboarding-modal__page-four__columns .column-header {
+ padding: 5px;
+ font-size: 12px;
}
}
margin-left: 10px;
}
-.boost-modal, .confirmation-modal {
- background: lighten($color2, 8%);
- color: $color1;
+.boost-modal,
+.confirmation-modal,
+.report-modal,
+.actions-modal {
+ background: lighten($ui-secondary-color, 8%);
+ color: $ui-base-color;
border-radius: 8px;
overflow: hidden;
max-width: 90vw;
}
}
+.actions-modal {
+ .status {
+ background: $white;
+ border-bottom-color: $ui-secondary-color;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ }
+}
+
.boost-modal__container {
overflow-x: scroll;
padding: 10px;
}
}
-.boost-modal__action-bar, .confirmation-modal__action-bar {
+.boost-modal__action-bar,
+.confirmation-modal__action-bar,
+.report-modal__action-bar {
display: flex;
- background: $color2;
+ justify-content: space-between;
+ background: $ui-secondary-color;
padding: 10px;
line-height: 36px;
& > div {
flex: 1 1 auto;
text-align: right;
- color: lighten($color1, 33%);
+ color: lighten($ui-base-color, 33%);
padding-right: 10px;
}
}
}
-.confirmation-modal__action-bar {
- & > div {
- text-align: left;
- padding: 0 16px;
+.report-modal__statuses,
+.report-modal__comment {
+ padding: 10px;
+}
+
+.report-modal__statuses {
+ min-height: 20vh;
+ max-height: 40vh;
+ overflow-y: auto;
+ overflow-x: hidden;
+}
+
+.report-modal__comment {
+ .setting-text {
+ margin-top: 10px;
}
+}
- a {
- color: darken($color2, 34%);
- text-decoration: none;
+.actions-modal {
+ .status {
+ overflow-y: auto;
+ max-height: 300px;
+ }
+
+ max-height: 80vh;
+ max-width: 80vw;
+
+ ul {
+ overflow-y: auto;
+ flex-shrink: 0;
+
+ li:empty {
+ margin: 0;
+ }
+
+ li:not(:empty) {
+ a {
+ color: $ui-base-color;
+ display: flex;
+ padding: 10px;
+ align-items: center;
+ text-decoration: none;
+
+ &.active {
+ &,
+ button {
+ background: $ui-highlight-color;
+ color: $primary-text-color;
+ }
+ }
+
+ button:first-child {
+ margin-right: 10px;
+ }
+ }
+ }
+ }
+}
+
+.confirmation-modal__action-bar {
+ .confirmation-modal__cancel-button {
+ background-color: transparent;
+ color: darken($ui-secondary-color, 34%);
font-size: 14px;
font-weight: 500;
- &:hover, &:focus, &:active {
- color: darken($color2, 38%);
+ &:hover,
+ &:focus,
+ &:active {
+ color: darken($ui-secondary-color, 38%);
}
}
}
-.confirmation-modal__container {
+.confirmation-modal__container,
+.report-modal__target {
padding: 30px;
font-size: 16px;
text-align: center;
}
.loading-bar {
- background-color: $color4;
+ background-color: $ui-highlight-color;
height: 3px;
position: absolute;
top: 0;
.media-gallery__gifv__label {
display: block;
position: absolute;
- color: $color5;
- background: rgba($color8, 0.5);
+ color: $primary-text-color;
+ background: rgba($base-overlay-background, 0.5);
bottom: 6px;
left: 6px;
padding: 2px 6px;
.attachment-list {
display: flex;
font-size: 14px;
- border: 1px solid lighten($color1, 8%);
+ border: 1px solid lighten($ui-base-color, 8%);
border-radius: 4px;
margin-top: 14px;
overflow: hidden;
.attachment-list__icon {
flex: 0 0 auto;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
padding: 8px 18px;
cursor: default;
- border-right: 1px solid lighten($color1, 8%);
+ border-right: 1px solid lighten($ui-base-color, 8%);
display: flex;
flex-direction: column;
align-items: center;
a {
text-decoration: none;
- color: lighten($color1, 26%);
+ color: $ui-base-lighter-color;
font-weight: 500;
&:hover {
}
.media-gallery__item-thumbnail {
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
cursor: zoom-in;
display: block;
- height: 100%;
text-decoration: none;
- width: 100%;
+ height: 100%;
+
+ &,
+ img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
}
.media-gallery__gifv {
/* Status Video Player */
.status__video-player {
- background: #000;
+ background: $base-overlay-background;
box-sizing: border-box;
cursor: default; /* May not be needed */
margin-top: 8px;
object-fit: cover;
position: relative;
top: 50%;
- transform: translateY(-35%);
+ transform: translateY(-50%);
width: 100%;
z-index: 1;
}
.status__video-player-expand,
.status__video-player-mute {
- color: #fff;
+ color: $primary-text-color;
opacity: 0.8;
position: absolute;
right: 4px;
- text-shadow: 0px 1px 1px #000, 1px 0px 1px #000;
+ text-shadow: 0 1px 1px $base-shadow-color, 1px 0 1px $base-shadow-color;
}
.status__video-player-spoiler {
- color: #fff;
+ display: none;
+ color: $primary-text-color;
left: 4px;
position: absolute;
- text-shadow: 0px 1px 1px #000, 1px 0px 1px #000;
+ text-shadow: 0 1px 1px $base-shadow-color, 1px 0 1px $base-shadow-color;
top: 4px;
z-index: 100;
+
+ &.status__video-player-spoiler--visible {
+ display: block;
+ }
}
.status__video-player-expand {
.media-spoiler-video {
background-size: cover;
+ background-repeat: no-repeat;
+ background-position: center;
cursor: pointer;
margin-top: 8px;
position: relative;
.media-spoiler-video-play-icon {
border-radius: 100px;
- color: rgba(255, 255, 255, 0.8);
+ color: rgba($primary-text-color, 0.8);
font-size: 36px;
left: 50%;
padding: 5px;
transform: translate(-50%, -50%);
}
/* End Video Player */
+
+.account-gallery__container {
+ margin: -2px;
+ padding: 4px;
+}
+
+.account-gallery__item {
+ float: left;
+ width: 96px;
+ height: 96px;
+ margin: 2px;
+
+ a {
+ display: block;
+ width: 100%;
+ height: 100%;
+ background-color: $base-overlay-background;
+ background-size: cover;
+ background-position: center;
+ position: relative;
+ }
+}
+
+.account-section-headline {
+ color: $ui-base-lighter-color;
+ background: lighten($ui-base-color, 2%);
+ border-bottom: 1px solid lighten($ui-base-color, 4%);
+ padding: 15px 10px;
+ font-size: 14px;
+ font-weight: 500;
+ position: relative;
+ cursor: default;
+
+ &::before,
+ &::after {
+ display: block;
+ content: "";
+ position: absolute;
+ bottom: 0;
+ left: 18px;
+ width: 0;
+ height: 0;
+ border-style: solid;
+ border-width: 0 10px 10px;
+ border-color: transparent transparent lighten($ui-base-color, 4%);
+ }
+
+ &::after {
+ bottom: -1px;
+ border-color: transparent transparent $ui-base-color;
+ }
+}
+
+::-webkit-scrollbar-thumb {
+ border-radius: 0;
+}
+
+noscript {
+ text-align: center;
+
+ img {
+ width: 200px;
+ opacity: 0.5;
+ animation: flicker 4s infinite;
+ }
+
+ div {
+ font-size: 14px;
+ margin: 30px auto;
+ color: $ui-secondary-color;
+ max-width: 400px;
+ }
+}
+
+@keyframes flicker {
+ 0% { opacity: 1; }
+ 30% { opacity: 0.75; }
+ 100% { opacity: 1; }
+}
+
+@media screen and (max-width: 1024px) and (max-height: 400px) {
+ $duration: 400ms;
+ $delay: 100ms;
+
+ .tabs-bar,
+ .search {
+ will-change: margin-top;
+ transition: margin-top $duration $delay;
+ }
+
+ .navigation-bar {
+ will-change: padding-bottom;
+ transition: padding-bottom $duration $delay;
+ }
+
+ .navigation-bar {
+ & > a:first-child {
+ will-change: margin-top, margin-left, width;
+ transition: margin-top $duration $delay, margin-left $duration ($duration + $delay);
+ }
+
+ & > .navigation-bar__profile-edit {
+ will-change: margin-top;
+ transition: margin-top $duration $delay;
+ }
+
+ & > .icon-button {
+ will-change: opacity;
+ transition: opacity $duration $delay;
+ }
+ }
+
+ .is-composing {
+ .tabs-bar,
+ .search {
+ margin-top: -50px;
+ }
+
+ .navigation-bar {
+ padding-bottom: 0;
+
+ & > a:first-child {
+ margin-top: -50px;
+ margin-left: -40px;
+ }
+
+ .navigation-bar__profile {
+ padding-top: 2px;
+ }
+
+ .navigation-bar__profile-edit {
+ position: absolute;
+ margin-top: -50px;
+ }
+
+ .icon-button {
+ pointer-events: auto;
+ opacity: 1;
+ }
+ }
+ }
+}