2017-04-23 18:38:37 -04:00
|
|
|
.app-body {
|
2017-05-07 14:47:31 -04:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2017-04-05 12:10:25 -04:00
|
|
|
}
|
|
|
|
|
2020-01-24 23:23:05 -05:00
|
|
|
.animated-number {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-08-15 09:13:26 -04:00
|
|
|
.link-button {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: $ui-highlight-color;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
color: $ui-primary-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:58:10 -04:00
|
|
|
.button {
|
2018-04-18 10:52:15 -04:00
|
|
|
background-color: $ui-highlight-color;
|
2016-09-27 17:12:33 -04:00
|
|
|
border: 10px none;
|
2017-04-22 22:26:55 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: inherit;
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 14px;
|
2016-09-27 17:12:33 -04:00
|
|
|
font-weight: 500;
|
|
|
|
height: 36px;
|
2017-04-22 22:26:55 -04:00
|
|
|
letter-spacing: 0;
|
2016-09-27 17:12:33 -04:00
|
|
|
line-height: 36px;
|
2017-04-22 22:26:55 -04:00
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 16px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2020-01-27 07:44:29 -05:00
|
|
|
text-transform: uppercase;
|
2016-09-27 17:12:33 -04:00
|
|
|
text-decoration: none;
|
2017-04-22 22:26:55 -04:00
|
|
|
text-overflow: ellipsis;
|
2017-03-24 19:01:43 -04:00
|
|
|
transition: all 100ms ease-in;
|
2017-04-22 22:26:55 -04:00
|
|
|
white-space: nowrap;
|
2017-05-19 05:42:54 -04:00
|
|
|
width: auto;
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2018-04-21 15:35:55 -04:00
|
|
|
background-color: lighten($ui-highlight-color, 10%);
|
2017-03-24 19:01:43 -04:00
|
|
|
transition: all 200ms ease-out;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
|
2018-08-18 21:28:43 -04:00
|
|
|
&--destructive {
|
|
|
|
transition: none;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: $error-red;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-06 22:59:13 -04:00
|
|
|
&:disabled,
|
|
|
|
&.disabled {
|
2017-05-08 09:57:49 -04:00
|
|
|
background-color: $ui-primary-color;
|
2016-10-02 09:28:47 -04:00
|
|
|
cursor: default;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
2016-09-07 12:17:15 -04:00
|
|
|
|
2018-04-18 20:36:31 -04:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
2018-02-21 19:03:48 -05:00
|
|
|
&.button-primary,
|
|
|
|
&.button-alternative,
|
|
|
|
&.button-secondary,
|
|
|
|
&.button-alternative-2 {
|
2017-07-11 09:27:59 -04:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 36px;
|
|
|
|
height: auto;
|
|
|
|
text-transform: none;
|
|
|
|
padding: 4px 16px;
|
2018-02-21 19:03:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.button-alternative {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2018-02-21 19:03:48 -05:00
|
|
|
background: $ui-primary-color;
|
2017-07-11 09:27:59 -04:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-primary-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-21 19:03:48 -05:00
|
|
|
&.button-alternative-2 {
|
|
|
|
background: $ui-base-lighter-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-base-lighter-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 12:17:15 -04:00
|
|
|
&.button-secondary {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $darker-text-color;
|
2017-07-11 09:27:59 -04:00
|
|
|
background: transparent;
|
|
|
|
padding: 3px 15px;
|
|
|
|
border: 1px solid $ui-primary-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
border-color: lighten($ui-primary-color, 4%);
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($darker-text-color, 4%);
|
2017-07-11 09:27:59 -04:00
|
|
|
}
|
2019-03-03 16:18:23 -05:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2016-09-07 12:17:15 -04:00
|
|
|
}
|
2017-05-19 05:42:54 -04:00
|
|
|
|
|
|
|
&.button--block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.column__wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
2017-03-24 19:01:43 -04:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $action-button-color;
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2019-08-03 13:10:50 -04:00
|
|
|
border-radius: 4px;
|
2016-11-02 15:18:39 -04:00
|
|
|
background: transparent;
|
2016-12-22 17:03:57 -05:00
|
|
|
cursor: pointer;
|
2019-08-03 13:10:50 -04:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: lighten($action-button-color, 7%);
|
2019-08-03 13:10:50 -04:00
|
|
|
background-color: rgba($action-button-color, 0.15);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($action-button-color, 0.3);
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: darken($action-button-color, 13%);
|
2019-08-03 13:10:50 -04:00
|
|
|
background-color: transparent;
|
2016-08-31 16:58:10 -04:00
|
|
|
cursor: default;
|
|
|
|
}
|
2016-09-01 07:21:48 -04:00
|
|
|
|
|
|
|
&.active {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2016-09-01 07:21:48 -04:00
|
|
|
}
|
2017-02-28 18:53:11 -05:00
|
|
|
|
2017-03-24 19:01:43 -04:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-24 19:01:43 -04:00
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inverted {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-03 13:10:50 -04:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($lighter-text-color, 0.3);
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
2017-07-30 23:06:56 -04:00
|
|
|
&.disabled {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($lighter-text-color, 7%);
|
2019-08-03 13:10:50 -04:00
|
|
|
background-color: transparent;
|
2017-07-30 23:06:56 -04:00
|
|
|
}
|
|
|
|
|
2017-03-24 19:01:43 -04:00
|
|
|
&.active {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
2017-07-30 23:06:56 -04:00
|
|
|
&.disabled {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($highlight-text-color, 13%);
|
2017-07-30 23:06:56 -04:00
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-13 11:01:09 -04:00
|
|
|
|
|
|
|
&.overlayed {
|
|
|
|
box-sizing: content-box;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: rgba($base-overlay-background, 0.6);
|
|
|
|
color: rgba($primary-text-color, 0.7);
|
2017-04-13 11:01:09 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: rgba($base-overlay-background, 0.9);
|
2017-04-13 11:01:09 -04:00
|
|
|
}
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-icon-button {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2019-08-03 13:10:50 -04:00
|
|
|
border-radius: 4px;
|
2017-03-24 19:01:43 -04:00
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 600;
|
2017-03-26 07:08:15 -04:00
|
|
|
font-size: 11px;
|
2017-03-24 19:01:43 -04:00
|
|
|
padding: 0 3px;
|
|
|
|
line-height: 27px;
|
|
|
|
outline: 0;
|
2019-08-03 13:10:50 -04:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-03 13:10:50 -04:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($lighter-text-color, 0.3);
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($lighter-text-color, 20%);
|
2019-08-03 13:10:50 -04:00
|
|
|
background-color: transparent;
|
2017-03-24 19:01:43 -04:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-24 19:01:43 -04:00
|
|
|
outline: 0 !important;
|
2017-02-28 18:53:11 -05:00
|
|
|
}
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
|
2017-09-21 22:59:17 -04:00
|
|
|
.dropdown-menu {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2017-01-24 11:05:44 -05:00
|
|
|
.invisible {
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
2017-01-24 14:07:46 -05:00
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
2017-08-21 11:59:34 -04:00
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
2017-11-05 07:05:50 -05:00
|
|
|
|
|
|
|
img,
|
|
|
|
svg {
|
|
|
|
margin: 0 !important;
|
|
|
|
border: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
width: 0 !important;
|
|
|
|
height: 0 !important;
|
|
|
|
}
|
2017-01-24 11:05:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.ellipsis {
|
2017-05-07 14:47:31 -04:00
|
|
|
&::after {
|
2017-01-24 11:05:44 -05:00
|
|
|
content: "…";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.compose-form {
|
|
|
|
padding: 10px;
|
2017-02-13 12:38:00 -05:00
|
|
|
|
2019-05-02 22:34:55 -04:00
|
|
|
&__sensitive-button {
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 0;
|
2019-05-03 14:44:20 -04:00
|
|
|
|
2019-05-10 11:59:57 -04:00
|
|
|
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;
|
|
|
|
}
|
2019-05-03 14:44:20 -04:00
|
|
|
}
|
2019-05-02 22:34:55 -04:00
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__warning {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2018-06-01 13:19:30 -04:00
|
|
|
margin-bottom: 10px;
|
2017-12-13 11:37:23 -05:00
|
|
|
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;
|
2017-12-07 10:01:52 -05:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
strong {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
2017-12-07 10:01:52 -05:00
|
|
|
}
|
|
|
|
}
|
2017-02-13 12:38:00 -05:00
|
|
|
}
|
2017-04-23 18:38:37 -04:00
|
|
|
|
2019-06-02 04:05:54 -04:00
|
|
|
.emoji-picker-dropdown {
|
|
|
|
position: absolute;
|
2020-03-08 10:36:50 -04:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2019-06-02 04:05:54 -04:00
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__autosuggest-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autosuggest-textarea,
|
2019-05-09 16:10:27 -04:00
|
|
|
.autosuggest-input,
|
2017-12-13 11:37:23 -05:00
|
|
|
.spoiler-input {
|
|
|
|
position: relative;
|
2019-11-07 02:06:06 -05:00
|
|
|
width: 100%;
|
2017-12-13 11:37:23 -05:00
|
|
|
}
|
|
|
|
|
2018-05-31 09:16:31 -04:00
|
|
|
.spoiler-input {
|
|
|
|
height: 0;
|
|
|
|
transform-origin: bottom;
|
2019-06-06 12:51:46 -04:00
|
|
|
opacity: 0;
|
2018-05-31 09:16:31 -04:00
|
|
|
|
|
|
|
&.spoiler-input--visible {
|
2019-06-02 04:05:54 -04:00
|
|
|
height: 36px;
|
|
|
|
margin-bottom: 11px;
|
2019-06-06 12:51:46 -04:00
|
|
|
opacity: 1;
|
2018-05-31 09:16:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.autosuggest-textarea__textarea,
|
|
|
|
.spoiler-input__input {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
background: $simple-background-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
resize: vertical;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
2017-04-23 18:38:37 -04:00
|
|
|
|
2019-09-19 13:58:40 -04:00
|
|
|
&::placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:focus {
|
2017-12-13 11:37:23 -05:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
font-size: 16px;
|
2017-04-23 18:38:37 -04:00
|
|
|
}
|
|
|
|
}
|
2017-02-13 12:38:00 -05:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.spoiler-input__input {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.autosuggest-textarea__textarea {
|
|
|
|
min-height: 100px;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-right: 10px + 22px;
|
|
|
|
resize: none;
|
2019-03-16 15:10:42 -04:00
|
|
|
scrollbar-color: initial;
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
all: unset;
|
|
|
|
}
|
2017-12-13 11:37:23 -05:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
height: 100px !important; // prevent auto-resize textarea
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2019-06-02 04:05:54 -04:00
|
|
|
.autosuggest-textarea__suggestions-wrapper {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.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;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $inverted-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
font-size: 14px;
|
|
|
|
padding: 6px;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
&.autosuggest-textarea__suggestions--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.autosuggest-textarea__suggestions__item {
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 4px;
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active,
|
|
|
|
&.selected {
|
|
|
|
background: darken($ui-secondary-color, 10%);
|
|
|
|
}
|
|
|
|
}
|
2017-06-20 13:43:09 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.autosuggest-account,
|
2019-07-28 08:37:52 -04:00
|
|
|
.autosuggest-emoji,
|
|
|
|
.autosuggest-hashtag {
|
2017-12-13 11:37:23 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
line-height: 18px;
|
|
|
|
font-size: 14px;
|
2017-06-20 13:43:09 -04:00
|
|
|
}
|
|
|
|
|
2019-07-28 08:37:52 -04:00
|
|
|
.autosuggest-hashtag {
|
|
|
|
justify-content: space-between;
|
|
|
|
|
2019-08-17 16:04:31 -04:00
|
|
|
&__name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2019-09-05 00:14:06 -04:00
|
|
|
white-space: nowrap;
|
2019-08-17 16:04:31 -04:00
|
|
|
}
|
|
|
|
|
2019-07-28 08:37:52 -04:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2019-08-17 16:04:31 -04:00
|
|
|
|
|
|
|
&__uses {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
text-align: right;
|
2019-09-05 00:14:06 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2019-08-17 16:04:31 -04:00
|
|
|
}
|
2019-07-28 08:37:52 -04:00
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.autosuggest-account-icon,
|
|
|
|
.autosuggest-emoji img {
|
|
|
|
display: block;
|
|
|
|
margin-right: 8px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2017-06-20 13:43:09 -04:00
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.autosuggest-account .display-name__account {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__modifiers {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
background: $simple-background-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__upload-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2017-09-28 09:31:31 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__uploads-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 5px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2017-09-28 09:31:31 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__upload {
|
|
|
|
flex: 1 1 0;
|
|
|
|
min-width: 40%;
|
|
|
|
margin: 5px;
|
|
|
|
|
2018-02-21 18:35:46 -05:00
|
|
|
&__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;
|
2018-05-26 04:53:44 -04:00
|
|
|
color: $secondary-text-color;
|
2018-02-21 18:35:46 -05:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-05-26 04:53:44 -04:00
|
|
|
color: lighten($secondary-text-color, 7%);
|
2018-02-21 18:35:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
&-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;
|
|
|
|
|
2019-02-13 19:04:43 -05:00
|
|
|
textarea {
|
2017-12-13 11:37:23 -05:00
|
|
|
background: transparent;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::placeholder {
|
2018-04-21 15:35:55 -04:00
|
|
|
opacity: 0.75;
|
|
|
|
color: $secondary-text-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
}
|
|
|
|
}
|
2017-09-28 09:31:31 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-09-28 09:31:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__upload-thumbnail {
|
|
|
|
border-radius: 4px;
|
2019-06-21 16:59:44 -04:00
|
|
|
background-color: $base-shadow-color;
|
2017-12-13 11:37:23 -05:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2018-02-21 18:35:46 -05:00
|
|
|
height: 140px;
|
2017-12-13 11:37:23 -05:00
|
|
|
width: 100%;
|
2018-02-21 18:35:46 -05:00
|
|
|
overflow: hidden;
|
2017-09-28 09:31:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__buttons-wrapper {
|
|
|
|
padding: 10px;
|
|
|
|
background: darken($simple-background-color, 8%);
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2019-06-02 04:05:54 -04:00
|
|
|
flex: 0 0 auto;
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__buttons {
|
|
|
|
display: flex;
|
2017-04-23 08:18:58 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__upload-button-icon {
|
|
|
|
line-height: 27px;
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__sensitive-button {
|
|
|
|
display: none;
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
&.compose-form__sensitive-button--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__sensitive-button__icon {
|
|
|
|
line-height: 27px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2019-08-03 13:10:50 -04:00
|
|
|
.icon-button,
|
|
|
|
.text-icon-button {
|
2017-12-13 11:37:23 -05:00
|
|
|
box-sizing: content-box;
|
|
|
|
padding: 0 3px;
|
|
|
|
}
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.character-counter__wrapper {
|
|
|
|
align-self: center;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2017-05-01 12:13:10 -04:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__publish {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
min-width: 0;
|
2019-06-02 04:05:54 -04:00
|
|
|
flex: 0 0 auto;
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-12-13 11:37:23 -05:00
|
|
|
.compose-form__publish-button-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 09:13:26 -04:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 17:05:01 -04:00
|
|
|
.no-reduce-motion .spoiler-input {
|
|
|
|
transition: height 0.4s ease, opacity 0.4s ease;
|
|
|
|
}
|
|
|
|
|
2016-11-08 15:45:51 -05:00
|
|
|
.emojione {
|
|
|
|
font-size: inherit;
|
|
|
|
vertical-align: middle;
|
2017-09-19 21:38:38 -04:00
|
|
|
object-fit: contain;
|
2016-11-08 15:45:51 -05:00
|
|
|
margin: -.2ex .15em .2ex;
|
2016-11-15 12:38:57 -05:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2016-11-08 15:45:51 -05:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.reply-indicator {
|
2018-05-31 09:16:31 -04:00
|
|
|
border-radius: 4px;
|
2018-06-01 13:19:30 -04:00
|
|
|
margin-bottom: 10px;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-primary-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
padding: 10px;
|
2019-06-02 04:05:54 -04:00
|
|
|
min-height: 23px;
|
|
|
|
overflow-y: auto;
|
|
|
|
flex: 0 2 auto;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.reply-indicator__header {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__cancel {
|
|
|
|
float: right;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__display-name {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $inverted-text-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-06-19 12:27:07 -04:00
|
|
|
.status__content--with-action {
|
2017-04-22 22:26:55 -04:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.reply-indicator__content {
|
2018-09-27 11:04:33 -04:00
|
|
|
position: relative;
|
2016-08-31 10:48:21 -04:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
2017-01-26 17:34:40 -05:00
|
|
|
font-weight: 400;
|
2016-10-06 15:56:07 -04:00
|
|
|
overflow: hidden;
|
2018-09-27 11:04:33 -04:00
|
|
|
text-overflow: ellipsis;
|
2017-12-13 16:58:31 -05:00
|
|
|
padding-top: 2px;
|
2018-08-17 21:03:12 -04:00
|
|
|
color: $primary-text-color;
|
2016-08-31 10:48:21 -04:00
|
|
|
|
2017-12-07 18:03:25 -05:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2017-10-17 14:07:44 -04:00
|
|
|
&.status__content--with-spoiler {
|
|
|
|
white-space: normal;
|
|
|
|
|
|
|
|
.status__content__text {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 15:45:51 -05:00
|
|
|
.emojione {
|
2017-11-07 13:09:53 -05:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2017-12-06 11:53:25 -05:00
|
|
|
margin: -3px 0 0;
|
2016-11-08 15:45:51 -05:00
|
|
|
}
|
|
|
|
|
2016-09-10 04:14:36 -04:00
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
2019-02-04 22:46:18 -05:00
|
|
|
white-space: pre-wrap;
|
2016-09-10 04:14:36 -04:00
|
|
|
|
|
|
|
&:last-child {
|
2019-07-31 04:06:58 -04:00
|
|
|
margin-bottom: 0;
|
2016-09-10 04:14:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-24 15:08:00 -04:00
|
|
|
a {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2016-08-24 15:08:00 -04:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
2017-02-05 09:25:55 -05:00
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($dark-text-color, 7%);
|
2017-02-05 09:25:55 -05:00
|
|
|
}
|
2016-08-24 15:08:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-05 09:25:55 -05:00
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-02-05 09:25:55 -05:00
|
|
|
}
|
2016-08-24 15:08:00 -04:00
|
|
|
}
|
2017-01-26 08:52:07 -05:00
|
|
|
|
2019-07-28 00:00:51 -04:00
|
|
|
a.unhandled-link {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
|
2017-01-26 08:52:07 -05:00
|
|
|
.status__content__spoiler-link {
|
2018-04-18 10:52:15 -04:00
|
|
|
background: $action-button-color;
|
2017-01-26 08:52:07 -05:00
|
|
|
|
|
|
|
&:hover {
|
2018-04-18 10:52:15 -04:00
|
|
|
background: lighten($action-button-color, 7%);
|
2017-01-26 08:52:07 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2018-04-18 20:36:31 -04:00
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
2017-01-26 08:52:07 -05:00
|
|
|
}
|
2017-05-19 05:42:54 -04:00
|
|
|
|
|
|
|
.status__content__text {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.status__content__text--visible {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2016-08-24 15:08:00 -04:00
|
|
|
}
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2020-01-23 16:00:13 -05:00
|
|
|
.announcements__item__content {
|
|
|
|
word-wrap: break-word;
|
2020-03-06 09:20:14 -05:00
|
|
|
overflow-y: auto;
|
2020-01-23 16:00:13 -05:00
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin: -3px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2020-01-26 16:26:50 -05:00
|
|
|
color: $secondary-text-color;
|
2020-01-23 16:00:13 -05:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-26 16:26:50 -05:00
|
|
|
|
|
|
|
&.unhandled-link {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
2020-01-23 16:00:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-27 11:04:33 -04:00
|
|
|
.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;
|
2020-01-29 11:35:54 -05:00
|
|
|
text-decoration: none;
|
2018-09-27 11:04:33 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-10 18:28:10 -04:00
|
|
|
.status__content__spoiler-link {
|
2017-02-08 19:20:09 -05:00
|
|
|
display: inline-block;
|
|
|
|
border-radius: 2px;
|
2017-05-10 18:28:10 -04:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2018-04-22 08:29:40 -04:00
|
|
|
color: $inverted-text-color;
|
2018-02-18 20:39:18 -05:00
|
|
|
font-weight: 700;
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 11px;
|
2017-05-07 14:47:31 -04:00
|
|
|
padding: 0 6px;
|
2020-01-27 07:44:29 -05:00
|
|
|
text-transform: uppercase;
|
2018-02-18 20:39:18 -05:00
|
|
|
line-height: 20px;
|
2017-05-10 18:28:10 -04:00
|
|
|
cursor: pointer;
|
2018-02-18 20:39:18 -05:00
|
|
|
vertical-align: middle;
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2018-06-29 09:34:36 -04:00
|
|
|
.status__wrapper--filtered {
|
|
|
|
color: $dark-text-color;
|
|
|
|
border: 0;
|
|
|
|
font-size: inherit;
|
|
|
|
text-align: center;
|
|
|
|
line-height: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status__prepend-icon-wrapper {
|
|
|
|
left: -26px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2017-10-05 19:07:59 -04:00
|
|
|
.focusable {
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
|
2017-11-09 13:40:34 -05:00
|
|
|
.status.status-direct {
|
2017-10-05 19:07:59 -04:00
|
|
|
background: lighten($ui-base-color, 12%);
|
2017-12-13 17:36:29 -05:00
|
|
|
|
|
|
|
&.muted {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2017-10-05 19:07:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.status {
|
|
|
|
padding: 8px 10px;
|
|
|
|
padding-left: 68px;
|
|
|
|
position: relative;
|
2018-10-19 20:23:58 -04:00
|
|
|
min-height: 54px;
|
2017-05-08 09:57:49 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-02-08 19:20:09 -05:00
|
|
|
cursor: default;
|
|
|
|
|
2017-10-29 11:11:32 -04:00
|
|
|
@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
|
|
|
|
}
|
|
|
|
|
2017-05-24 11:55:00 -04:00
|
|
|
@keyframes fade {
|
|
|
|
0% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
opacity: 1;
|
2017-05-26 18:53:25 -04:00
|
|
|
animation: fade 150ms linear;
|
2017-05-24 11:55:00 -04:00
|
|
|
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2017-09-13 21:39:10 -04:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
2018-10-19 20:23:58 -04:00
|
|
|
&.status-direct:not(.read) {
|
2017-05-12 19:38:51 -04:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-10-07 17:44:58 -04:00
|
|
|
border-bottom-color: lighten($ui-base-color, 12%);
|
2017-05-12 19:38:51 -04:00
|
|
|
}
|
|
|
|
|
2017-04-11 15:24:17 -04:00
|
|
|
&.light {
|
|
|
|
.status__relative-time {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $light-text-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
2020-03-31 06:39:50 -04:00
|
|
|
color: $light-text-color;
|
|
|
|
|
2017-04-11 15:24:17 -04:00
|
|
|
strong {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
|
|
|
|
a {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a.status__content__spoiler-link {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-primary-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-primary-color, 8%);
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2017-05-23 22:22:46 -04:00
|
|
|
.notification-favourite {
|
|
|
|
.status.status-direct {
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
.icon-button.disabled {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: lighten($action-button-color, 13%);
|
2017-05-23 22:22:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-07 18:40:11 -05:00
|
|
|
.status__relative-time,
|
|
|
|
.notification__relative_time {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-05-20 10:48:49 -04:00
|
|
|
float: right;
|
|
|
|
font-size: 14px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-04-23 15:34:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__info .status__display-name {
|
2017-04-22 22:26:55 -04:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
padding-right: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__info {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
2017-02-14 14:59:26 -05:00
|
|
|
.status-check-box {
|
2017-06-27 12:07:21 -04:00
|
|
|
border-bottom: 1px solid $ui-secondary-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
display: flex;
|
2017-02-14 14:59:26 -05:00
|
|
|
|
2018-03-04 14:29:12 -05:00
|
|
|
.status-check-box__status {
|
|
|
|
margin: 10px 0 10px 10px;
|
|
|
|
flex: 1;
|
2020-01-25 16:59:00 -05:00
|
|
|
overflow: hidden;
|
2018-03-04 14:29:12 -05:00
|
|
|
|
|
|
|
.media-gallery {
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
padding: 0;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2018-03-04 14:29:12 -05:00
|
|
|
margin-top: 8px;
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2017-02-14 14:59:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status-check-box-toggle {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.status__prepend {
|
|
|
|
margin-left: 68px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
padding: 8px 0;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.status__display-name strong {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
2017-10-06 14:40:17 -04:00
|
|
|
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status__action-bar {
|
2017-04-25 09:16:09 -04:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2017-12-13 16:58:31 -05:00
|
|
|
margin-top: 8px;
|
2018-08-15 13:29:52 -04:00
|
|
|
|
|
|
|
&__counter {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-right: 11px;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.status__action-bar-button {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $action-button-color;
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2017-05-25 08:15:12 -04:00
|
|
|
.status__action-bar-button {
|
2017-04-22 22:26:55 -04:00
|
|
|
margin-right: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__action-bar-dropdown {
|
2017-09-21 22:59:17 -04:00
|
|
|
height: 23.15px;
|
|
|
|
width: 23.15px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2017-05-10 18:28:10 -04:00
|
|
|
.detailed-status__action-bar-dropdown {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
.detailed-status {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2017-04-22 22:26:55 -04:00
|
|
|
padding: 14px 10px;
|
2017-02-10 16:58:29 -05:00
|
|
|
|
2018-07-28 13:25:33 -04:00
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.detailed-status__meta {
|
|
|
|
flex: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
.status__content {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
2016-11-08 15:45:51 -05:00
|
|
|
|
|
|
|
.emojione {
|
2017-11-07 13:09:53 -05:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2017-12-10 11:56:05 -05:00
|
|
|
margin: -1px 0 0;
|
2016-11-08 15:45:51 -05:00
|
|
|
}
|
2018-02-18 20:39:18 -05:00
|
|
|
|
|
|
|
.status__content__spoiler-link {
|
|
|
|
line-height: 24px;
|
|
|
|
margin: -1px 0 0;
|
|
|
|
}
|
2016-09-25 08:20:29 -04:00
|
|
|
}
|
2017-09-13 21:39:10 -04:00
|
|
|
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2017-09-13 21:39:10 -04:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2016-09-25 08:20:29 -04:00
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.detailed-status__meta {
|
|
|
|
margin-top: 15px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.detailed-status__action-bar {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-04-25 09:16:09 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-02-08 19:20:09 -05:00
|
|
|
padding: 10px 0;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:58:10 -04:00
|
|
|
.reply-indicator__content {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2016-08-31 16:58:10 -04:00
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
a {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 06:38:00 -04:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.account {
|
|
|
|
padding: 10px;
|
2017-05-08 09:57:49 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2018-04-19 20:28:48 -04:00
|
|
|
&.compact {
|
|
|
|
padding: 0;
|
|
|
|
border-bottom: 0;
|
|
|
|
|
|
|
|
.account__avatar-wrapper {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.account__display-name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: block;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
overflow: hidden;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.account__wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar-wrapper {
|
|
|
|
float: left;
|
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include avatar-radius;
|
2020-05-03 16:04:18 -04:00
|
|
|
display: block;
|
2017-04-22 22:26:55 -04:00
|
|
|
position: relative;
|
2017-05-03 05:43:37 -04:00
|
|
|
|
2020-05-03 16:04:18 -04:00
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
background-size: 36px 36px;
|
|
|
|
|
2017-05-03 05:43:37 -04:00
|
|
|
&-inline {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2018-10-19 20:23:58 -04:00
|
|
|
|
|
|
|
&-composite {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include avatar-radius;
|
2019-09-21 14:01:16 -04:00
|
|
|
border-radius: 50%;
|
2018-10-19 20:23:58 -04:00
|
|
|
overflow: hidden;
|
2019-09-21 14:01:16 -04:00
|
|
|
position: relative;
|
2018-10-19 20:23:58 -04:00
|
|
|
|
|
|
|
& > div {
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2019-09-21 14:01:16 -04:00
|
|
|
|
|
|
|
&__label {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-shadow: 1px 1px 2px $base-shadow-color;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
2018-10-19 20:23:58 -04:00
|
|
|
}
|
2017-05-03 05:43:37 -04:00
|
|
|
}
|
|
|
|
|
2018-04-19 20:28:48 -04:00
|
|
|
a .account__avatar {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-05-03 05:43:37 -04:00
|
|
|
.account__avatar-overlay {
|
|
|
|
@include avatar-size(48px);
|
|
|
|
|
|
|
|
&-base {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include avatar-radius;
|
2017-05-03 05:43:37 -04:00
|
|
|
@include avatar-size(36px);
|
2020-04-28 04:16:55 -04:00
|
|
|
|
|
|
|
img {
|
|
|
|
@include avatar-radius;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-05-03 05:43:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&-overlay {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include avatar-radius;
|
2017-05-03 05:43:37 -04:00
|
|
|
@include avatar-size(24px);
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 1;
|
2020-04-28 04:16:55 -04:00
|
|
|
|
|
|
|
img {
|
|
|
|
@include avatar-radius;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-05-03 05:43:37 -04:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__relationship {
|
|
|
|
height: 18px;
|
|
|
|
padding: 10px;
|
2017-11-14 21:56:41 -05:00
|
|
|
white-space: nowrap;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2017-07-24 14:05:29 -04:00
|
|
|
.account__disclaimer {
|
|
|
|
padding: 10px;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-07-24 14:05:29 -04:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2017-12-07 10:01:52 -05:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-07-24 14:05:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: 500;
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.account__action-bar {
|
2017-05-08 09:57:49 -04:00
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-02-08 19:20:09 -05:00
|
|
|
line-height: 36px;
|
|
|
|
overflow: hidden;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.account__action-bar-dropdown {
|
|
|
|
padding: 10px;
|
2017-05-01 12:13:10 -04:00
|
|
|
|
2018-06-16 06:57:25 -04:00
|
|
|
.icon-button {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2017-05-01 12:13:10 -04:00
|
|
|
.dropdown--active {
|
|
|
|
.dropdown__content.dropdown__right {
|
|
|
|
left: 6px;
|
|
|
|
right: initial;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&::after {
|
2017-05-01 12:13:10 -04:00
|
|
|
bottom: initial;
|
|
|
|
margin-left: 11px;
|
|
|
|
margin-top: -7px;
|
|
|
|
right: initial;
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__action-bar-links {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
line-height: 18px;
|
2018-06-16 06:57:25 -04:00
|
|
|
text-align: center;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.account__action-bar__tab {
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
2018-07-28 14:09:58 -04:00
|
|
|
flex: 0 1 100%;
|
2018-06-16 06:57:25 -04:00
|
|
|
border-right: 1px solid lighten($ui-base-color, 8%);
|
2018-07-28 14:09:58 -04:00
|
|
|
padding: 10px 0;
|
2018-09-12 19:50:41 -04:00
|
|
|
border-bottom: 4px solid transparent;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border-bottom: 4px solid $ui-highlight-color;
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
|
|
|
|
& > span {
|
|
|
|
display: block;
|
2020-01-27 07:44:29 -05:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 11px;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2017-12-07 10:01:52 -05:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.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 {
|
2016-08-31 16:58:10 -04:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status__display-name,
|
|
|
|
.account__display-name {
|
2016-09-01 08:12:11 -04:00
|
|
|
strong {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2016-09-01 08:12:11 -04:00
|
|
|
}
|
2017-10-05 19:07:59 -04:00
|
|
|
}
|
2016-11-18 18:28:42 -05:00
|
|
|
|
2017-10-05 19:07:59 -04:00
|
|
|
.muted {
|
|
|
|
.emojione {
|
|
|
|
opacity: 0.5;
|
2016-11-18 18:28:42 -05:00
|
|
|
}
|
2016-09-01 08:12:11 -04:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status__display-name,
|
|
|
|
.reply-indicator__display-name,
|
|
|
|
.detailed-status__display-name,
|
2018-04-19 20:28:48 -04:00
|
|
|
a.account__display-name {
|
2017-04-22 22:26:55 -04:00
|
|
|
&:hover strong {
|
|
|
|
text-decoration: underline;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.account__display-name strong {
|
|
|
|
display: block;
|
2017-10-06 14:40:17 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__application,
|
|
|
|
.detailed-status__datetime {
|
|
|
|
color: inherit;
|
2016-10-28 14:05:44 -04:00
|
|
|
}
|
|
|
|
|
2019-10-02 21:17:29 -04:00
|
|
|
.detailed-status .button.logo-button {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
.detailed-status__display-name {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
display: block;
|
2016-09-25 08:20:29 -04:00
|
|
|
line-height: 24px;
|
2017-04-22 22:26:55 -04:00
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
2016-09-25 08:20:29 -04:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
strong,
|
|
|
|
span {
|
2016-09-25 08:20:29 -04:00
|
|
|
display: block;
|
2017-08-27 18:01:07 -04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2016-09-25 08:20:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 16px;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2016-09-25 08:20:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.detailed-status__display-avatar {
|
2017-04-23 15:34:33 -04:00
|
|
|
float: left;
|
2017-04-22 22:26:55 -04:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
|
|
|
height: 48px;
|
|
|
|
left: 10px;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
width: 48px;
|
|
|
|
}
|
|
|
|
|
2019-05-15 00:53:23 -04:00
|
|
|
.status__expand {
|
|
|
|
width: 68px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2016-11-20 13:39:18 -05:00
|
|
|
.muted {
|
2019-09-29 10:54:24 -04:00
|
|
|
.status__content,
|
2017-04-22 22:26:55 -04:00
|
|
|
.status__content p,
|
|
|
|
.status__content a {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name strong {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2017-01-26 12:48:56 -05:00
|
|
|
|
2017-04-23 15:34:33 -04:00
|
|
|
a.status__content__spoiler-link {
|
2018-04-21 15:35:55 -04:00
|
|
|
background: $ui-base-lighter-color;
|
|
|
|
color: $inverted-text-color;
|
2017-01-26 12:48:56 -05:00
|
|
|
|
|
|
|
&:hover {
|
2018-04-21 15:35:55 -04:00
|
|
|
background: lighten($ui-base-lighter-color, 7%);
|
2017-01-26 12:48:56 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.notification__message {
|
2018-05-26 04:53:53 -04:00
|
|
|
margin: 0 10px 0 68px;
|
|
|
|
padding: 8px 0 0;
|
2017-02-10 16:58:29 -05:00
|
|
|
cursor: default;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
font-size: 15px;
|
2018-12-04 23:08:43 -05:00
|
|
|
line-height: 22px;
|
2017-02-10 16:58:29 -05:00
|
|
|
position: relative;
|
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
2017-10-06 14:40:17 -04:00
|
|
|
|
|
|
|
> span {
|
2018-12-04 23:08:43 -05:00
|
|
|
display: inline;
|
2017-10-06 14:40:17 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.notification__favourite-icon-wrapper {
|
|
|
|
left: -26px;
|
|
|
|
position: absolute;
|
2017-04-23 15:34:33 -04:00
|
|
|
|
|
|
|
.star-icon {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $gold-star;
|
2017-04-23 15:34:33 -04:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.star-icon.active {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $gold-star;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2019-11-13 17:02:10 -05:00
|
|
|
.bookmark-icon.active {
|
|
|
|
color: $red-bookmark;
|
|
|
|
}
|
|
|
|
|
2019-10-24 16:47:48 -04:00
|
|
|
.no-reduce-motion .icon-button.star-icon {
|
|
|
|
&.activate {
|
|
|
|
& > .fa-star {
|
|
|
|
animation: spring-rotate-in 1s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.deactivate {
|
|
|
|
& > .fa-star {
|
|
|
|
animation: spring-rotate-out 1s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-20 13:39:18 -05:00
|
|
|
.notification__display-name {
|
|
|
|
color: inherit;
|
2017-04-22 22:26:55 -04:00
|
|
|
font-weight: 500;
|
2016-11-20 13:39:18 -05:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2016-11-20 13:39:18 -05:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 23:08:43 -05:00
|
|
|
.notification__relative_time {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.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 {
|
2016-08-31 16:58:10 -04:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-09-07 12:17:15 -04:00
|
|
|
|
2017-06-06 13:30:17 -04:00
|
|
|
.image-loader {
|
|
|
|
position: relative;
|
2018-03-04 14:32:24 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-03-26 07:59:21 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-07-14 19:18:09 -04:00
|
|
|
flex-direction: column;
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2018-03-26 07:59:21 -04:00
|
|
|
.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;
|
|
|
|
}
|
2018-03-04 14:32:24 -05:00
|
|
|
|
2018-07-14 19:18:09 -04:00
|
|
|
.loading-bar {
|
|
|
|
position: relative;
|
2017-06-27 07:43:53 -04:00
|
|
|
}
|
2017-06-06 13:30:17 -04:00
|
|
|
|
2018-03-04 14:32:24 -05:00
|
|
|
&.image-loader--amorphous .image-loader__preview-canvas {
|
|
|
|
display: none;
|
2017-06-27 07:43:53 -04:00
|
|
|
}
|
2018-03-04 14:32:24 -05:00
|
|
|
}
|
2017-07-08 11:21:59 -04:00
|
|
|
|
2018-03-04 14:32:24 -05:00
|
|
|
.zoomable-image {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-04-04 05:58:15 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-03-26 07:59:21 -04:00
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: $media-modal-media-max-width;
|
|
|
|
max-height: $media-modal-media-max-height;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2017-01-27 22:04:09 -05:00
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.navigation-bar {
|
|
|
|
padding: 10px;
|
|
|
|
display: flex;
|
2018-06-15 12:00:03 -04:00
|
|
|
align-items: center;
|
2017-02-08 19:20:09 -05:00
|
|
|
flex-shrink: 0;
|
|
|
|
cursor: default;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
|
|
|
|
strong {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2018-01-19 19:32:37 -05:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.permalink {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
|
2018-06-13 08:44:50 -04:00
|
|
|
.navigation-bar__actions {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.icon-button.close {
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
2019-06-06 12:51:46 -04:00
|
|
|
transform: scale(0, 1) translate(-100%, 0);
|
2018-06-13 08:44:50 -04:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose__action-bar .icon-button {
|
|
|
|
pointer-events: auto;
|
2019-06-06 12:51:46 -04:00
|
|
|
transform: scale(1, 1) translate(0, 0);
|
2018-06-13 08:44:50 -04:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
margin-left: 8px;
|
2018-06-15 12:00:03 -04:00
|
|
|
line-height: 20px;
|
|
|
|
margin-top: -1px;
|
2017-10-06 14:40:17 -04:00
|
|
|
overflow: hidden;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile-account {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
2017-10-06 14:40:17 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile-edit {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2016-09-29 18:00:45 -04:00
|
|
|
.dropdown {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown__content {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2017-09-21 22:59:17 -04:00
|
|
|
.dropdown-menu__separator {
|
2017-05-08 09:57:49 -04:00
|
|
|
border-bottom: 1px solid darken($ui-secondary-color, 8%);
|
2017-02-28 18:53:11 -05:00
|
|
|
margin: 5px 7px 6px;
|
2017-09-21 22:59:17 -04:00
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
padding: 4px 0;
|
|
|
|
border-radius: 4px;
|
2017-10-01 06:20:00 -04:00
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
2018-10-28 01:39:59 -04:00
|
|
|
z-index: 9999;
|
2017-09-21 22:59:17 -04:00
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
2018-08-19 11:11:12 -04:00
|
|
|
|
|
|
|
&.left {
|
|
|
|
transform-origin: 100% 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
transform-origin: 50% 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
transform-origin: 0 50%;
|
|
|
|
}
|
2017-09-21 22:59:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2018-09-06 19:18:46 -04:00
|
|
|
margin-left: -7px;
|
2017-09-23 18:40:10 -04:00
|
|
|
border-width: 5px 7px 0;
|
2017-09-21 22:59:17 -04:00
|
|
|
border-top-color: $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
top: -5px;
|
2018-09-06 19:18:46 -04:00
|
|
|
margin-left: -7px;
|
2017-09-23 18:40:10 -04:00
|
|
|
border-width: 0 7px 5px;
|
2017-09-21 22:59:17 -04:00
|
|
|
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;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-09-21 22:59:17 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
background: $ui-highlight-color;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-09-21 22:59:17 -04:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 18:53:11 -05:00
|
|
|
}
|
|
|
|
|
2016-09-29 18:00:45 -04:00
|
|
|
.dropdown--active .dropdown__content {
|
|
|
|
display: block;
|
2017-04-22 22:26:55 -04:00
|
|
|
line-height: 18px;
|
2017-05-01 12:13:10 -04:00
|
|
|
max-width: 311px;
|
|
|
|
right: 0;
|
2017-04-22 22:26:55 -04:00
|
|
|
text-align: left;
|
2016-09-29 18:00:45 -04:00
|
|
|
z-index: 9999;
|
|
|
|
|
2017-03-01 18:57:55 -05:00
|
|
|
& > ul {
|
2016-09-29 18:00:45 -04:00
|
|
|
list-style: none;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-secondary-color;
|
2016-10-03 12:49:52 -04:00
|
|
|
padding: 4px 0;
|
|
|
|
border-radius: 4px;
|
2017-05-08 09:57:49 -04:00
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.4);
|
2017-02-28 18:53:11 -05:00
|
|
|
min-width: 140px;
|
|
|
|
position: relative;
|
2017-05-01 12:13:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.dropdown__right {
|
|
|
|
right: 0;
|
2017-02-28 18:53:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.dropdown__left {
|
2017-03-01 18:57:55 -05:00
|
|
|
& > ul {
|
2017-02-28 18:53:11 -05:00
|
|
|
left: -98px;
|
|
|
|
}
|
2016-09-29 18:00:45 -04:00
|
|
|
}
|
|
|
|
|
2017-03-01 18:57:55 -05:00
|
|
|
& > ul > li > a {
|
2016-09-29 18:00:45 -04:00
|
|
|
font-size: 13px;
|
2017-02-28 18:53:11 -05:00
|
|
|
line-height: 18px;
|
2016-09-29 18:00:45 -04:00
|
|
|
display: block;
|
2017-02-28 18:53:11 -05:00
|
|
|
padding: 4px 14px;
|
|
|
|
box-sizing: border-box;
|
2016-09-29 18:00:45 -04:00
|
|
|
text-decoration: none;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-secondary-color;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-02-28 18:53:11 -05:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-02-28 19:43:29 -05:00
|
|
|
white-space: nowrap;
|
2017-02-28 18:53:11 -05:00
|
|
|
|
|
|
|
&:focus {
|
2017-03-24 19:01:43 -04:00
|
|
|
outline: 0;
|
2017-02-28 18:53:11 -05:00
|
|
|
}
|
2016-09-29 18:00:45 -04:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-highlight-color;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2016-09-29 18:00:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-06 16:47:35 -04:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.dropdown__icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2016-10-12 07:17:17 -04:00
|
|
|
.columns-area {
|
2017-04-22 22:26:55 -04:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
2016-10-12 13:14:47 -04:00
|
|
|
flex-direction: row;
|
2017-01-26 12:48:56 -05:00
|
|
|
justify-content: flex-start;
|
2017-04-22 22:26:55 -04:00
|
|
|
overflow-x: auto;
|
2017-05-07 14:47:31 -04:00
|
|
|
position: relative;
|
2018-01-15 00:51:00 -05:00
|
|
|
|
|
|
|
&.unscrollable {
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
2019-05-23 14:01:10 -04:00
|
|
|
|
|
|
|
&__panels {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-07-19 03:25:22 -04:00
|
|
|
min-height: 100vh;
|
2019-05-23 14:01:10 -04:00
|
|
|
|
|
|
|
&__pane {
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
pointer-events: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2019-09-20 04:51:52 -04:00
|
|
|
min-width: 285px;
|
2019-05-23 14:01:10 -04:00
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
&--start {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2019-05-23 14:01:10 -04:00
|
|
|
&__inner {
|
2019-07-19 03:25:22 -04:00
|
|
|
position: fixed;
|
2019-05-25 15:27:00 -04:00
|
|
|
width: 285px;
|
2019-05-23 14:01:10 -04:00
|
|
|
pointer-events: auto;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__main {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 600px;
|
2019-09-20 04:51:52 -04:00
|
|
|
flex: 0 0 auto;
|
2019-05-23 14:01:10 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2019-06-08 16:32:59 -04:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-05-23 14:01:10 -04:00
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-12 07:17:17 -04:00
|
|
|
}
|
|
|
|
|
2019-08-01 06:26:58 -04:00
|
|
|
.tabs-bar__wrapper {
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 2;
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-bar {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
.react-swipeable-view-container {
|
|
|
|
&,
|
|
|
|
.columns-area,
|
|
|
|
.drawer,
|
|
|
|
.column {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-swipeable-view-container > * {
|
2017-07-13 18:49:01 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-07-14 16:31:25 -04:00
|
|
|
justify-content: center;
|
2017-07-09 09:02:26 -04:00
|
|
|
height: 100%;
|
2017-01-04 20:25:48 -05:00
|
|
|
}
|
|
|
|
|
2016-10-12 07:17:17 -04:00
|
|
|
.column {
|
2018-11-08 01:42:17 -05:00
|
|
|
width: 350px;
|
2016-12-27 17:30:11 -05:00
|
|
|
position: relative;
|
2017-02-08 19:20:09 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-04-10 10:27:30 -04:00
|
|
|
|
|
|
|
> .scrollable {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-base-color;
|
2017-04-10 10:27:30 -04:00
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-10-12 07:17:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.drawer {
|
2017-03-26 07:08:15 -04:00
|
|
|
width: 300px;
|
2017-02-08 19:20:09 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__tab {
|
|
|
|
display: block;
|
|
|
|
flex: 1 1 auto;
|
2017-07-11 08:36:27 -04:00
|
|
|
padding: 15px 5px 13px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
text-decoration: none;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
border-bottom: 2px solid transparent;
|
2016-10-12 07:17:17 -04:00
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
.column,
|
|
|
|
.drawer {
|
2017-04-10 10:27:30 -04:00
|
|
|
flex: 1 1 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2017-09-23 19:25:07 -04:00
|
|
|
@media screen and (min-width: 631px) {
|
2017-04-10 10:27:30 -04:00
|
|
|
.columns-area {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
.column,
|
|
|
|
.drawer {
|
2017-04-10 10:27:30 -04:00
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-25 22:40:27 -04:00
|
|
|
|
|
|
|
.columns-area > div {
|
2017-05-07 14:47:31 -04:00
|
|
|
.column,
|
|
|
|
.drawer {
|
2017-04-25 22:40:27 -04:00
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-10 10:27:30 -04:00
|
|
|
}
|
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
.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;
|
2019-05-25 15:27:00 -04:00
|
|
|
padding-bottom: 13px;
|
2019-05-22 19:35:22 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
@media screen and (min-width: 631px) {
|
|
|
|
background: lighten($ui-base-color, 14%);
|
2019-05-25 15:27:00 -04:00
|
|
|
border-bottom-color: lighten($ui-base-color, 14%);
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-12 18:14:27 -04:00
|
|
|
&.active {
|
|
|
|
border-bottom: 2px solid $highlight-text-color;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
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%;
|
2019-05-29 05:03:56 -04:00
|
|
|
height: 100%;
|
2019-05-22 19:35:22 -04:00
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
.column,
|
|
|
|
.drawer {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2019-08-29 18:14:36 -04:00
|
|
|
.directory__list {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 10px;
|
|
|
|
grid-template-columns: minmax(0, 50%) minmax(0, 50%);
|
2019-08-01 06:26:58 -04:00
|
|
|
|
2019-08-29 18:14:36 -04:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.directory__card {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-form {
|
|
|
|
display: flex;
|
|
|
|
}
|
2019-08-01 06:26:58 -04:00
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
.autosuggest-textarea__textarea {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
.search__input {
|
|
|
|
line-height: 18px;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
|
|
|
padding-right: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search__icon .fa {
|
|
|
|
top: 15px;
|
|
|
|
}
|
|
|
|
|
2019-07-19 03:25:22 -04:00
|
|
|
.scrollable {
|
|
|
|
overflow: visible;
|
2019-07-23 09:47:18 -04:00
|
|
|
|
|
|
|
@supports(display: grid) {
|
|
|
|
contain: content;
|
|
|
|
}
|
2019-07-19 03:25:22 -04:00
|
|
|
}
|
|
|
|
|
2019-06-08 16:32:59 -04:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-05-23 14:01:10 -04:00
|
|
|
padding: 10px 0;
|
2019-08-01 06:26:58 -04:00
|
|
|
padding-top: 0;
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 630px) {
|
|
|
|
.detailed-status {
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
.media-gallery,
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2019-05-22 19:35:22 -04:00
|
|
|
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,
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2019-05-22 19:35:22 -04:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
2019-05-25 15:27:00 -04:00
|
|
|
|
|
|
|
.account {
|
|
|
|
padding: 15px 10px;
|
2019-06-04 17:11:57 -04:00
|
|
|
|
|
|
|
&__header__bio {
|
|
|
|
margin: 0 -10px;
|
|
|
|
}
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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%);
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-08 16:32:59 -04:00
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
2019-05-22 19:35:22 -04:00
|
|
|
.tabs-bar {
|
2019-05-23 14:01:10 -04:00
|
|
|
width: 100%;
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-swipeable-view-container .columns-area--mobile {
|
2019-08-01 06:26:58 -04:00
|
|
|
height: calc(100% - 10px) !important;
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.getting-started__wrapper,
|
|
|
|
.search {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
@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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
.icon-with-badge {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__badge {
|
|
|
|
position: absolute;
|
2019-05-25 15:27:00 -04:00
|
|
|
left: 9px;
|
2019-05-22 19:35:22 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
.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;
|
2019-06-02 04:05:54 -04:00
|
|
|
height: calc(100% - 10px);
|
|
|
|
overflow-y: hidden;
|
2019-05-25 15:27:00 -04:00
|
|
|
|
|
|
|
.navigation-bar {
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 20px;
|
2019-06-02 04:05:54 -04:00
|
|
|
flex: 0 1 48px;
|
|
|
|
min-height: 20px;
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-spacer {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2019-06-02 04:05:54 -04:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
.autosuggest-textarea__textarea {
|
2019-06-02 04:05:54 -04:00
|
|
|
overflow-y: hidden;
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose-form__upload-thumbnail {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel {
|
|
|
|
margin-top: 10px;
|
2019-06-02 04:05:54 -04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
overflow-y: auto;
|
2019-08-06 11:57:52 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2019-05-25 15:27:00 -04:00
|
|
|
|
|
|
|
hr {
|
2019-08-06 11:57:52 -04:00
|
|
|
flex: 0 0 auto;
|
2019-05-25 15:27:00 -04:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2019-08-06 11:57:52 -04:00
|
|
|
|
|
|
|
.flex-spacer {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
.drawer__pager {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-01-06 16:09:55 -05:00
|
|
|
.drawer__inner {
|
2017-03-31 13:59:54 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2018-02-02 04:32:41 -05:00
|
|
|
background: lighten($ui-base-color, 13%);
|
2017-02-08 19:20:09 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-03-29 16:27:24 -04:00
|
|
|
overflow: hidden;
|
2017-02-08 19:20:09 -05:00
|
|
|
overflow-y: auto;
|
2017-03-31 13:59:54 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&.darker {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-base-color;
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
2018-02-02 04:32:41 -05:00
|
|
|
}
|
|
|
|
|
2018-02-02 05:56:50 -05:00
|
|
|
.drawer__inner__mastodon {
|
2018-02-02 04:32:41 -05:00
|
|
|
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;
|
2018-02-02 05:56:50 -05:00
|
|
|
flex: 1;
|
|
|
|
min-height: 47px;
|
2019-05-22 19:35:22 -04:00
|
|
|
display: none;
|
2017-12-26 21:31:30 -05:00
|
|
|
|
2018-02-09 17:04:47 -05:00
|
|
|
> img {
|
2018-02-02 05:56:50 -05:00
|
|
|
display: block;
|
|
|
|
object-fit: contain;
|
|
|
|
object-position: bottom left;
|
2020-01-29 10:18:33 -05:00
|
|
|
width: 85%;
|
2018-02-02 05:56:50 -05:00
|
|
|
height: 100%;
|
2018-03-18 15:32:44 -04:00
|
|
|
pointer-events: none;
|
|
|
|
user-drag: none;
|
|
|
|
user-select: none;
|
2017-12-26 21:31:30 -05:00
|
|
|
}
|
2019-05-22 19:35:22 -04:00
|
|
|
|
|
|
|
@media screen and (min-height: 640px) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 14:32:00 -04:00
|
|
|
.pseudo-drawer {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 13%);
|
2017-04-16 14:32:00 -04:00
|
|
|
font-size: 13px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2017-01-06 16:09:55 -05:00
|
|
|
.drawer__header {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 16px;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-01-06 16:09:55 -05:00
|
|
|
margin-bottom: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
a {
|
2017-04-23 22:49:08 -04:00
|
|
|
transition: background 100ms ease-in;
|
2017-01-06 16:09:55 -05:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 3%);
|
2017-04-23 22:49:08 -04:00
|
|
|
transition: background 200ms ease-out;
|
2017-01-06 16:09:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-04 08:32:14 -04:00
|
|
|
.scrollable {
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2017-01-04 21:14:33 -05:00
|
|
|
|
|
|
|
&.optionally-scrollable {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2017-10-01 21:01:01 -04:00
|
|
|
|
|
|
|
@supports(display: grid) { // hack to fix Chrome <57
|
|
|
|
contain: strict;
|
|
|
|
}
|
2018-11-08 15:35:06 -05:00
|
|
|
|
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__append {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2018-12-17 11:02:59 -05:00
|
|
|
min-height: 120px;
|
2018-11-08 15:35:06 -05:00
|
|
|
}
|
2017-10-01 21:01:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollable.fullscreen {
|
|
|
|
@supports(display: grid) { // hack to fix Chrome <57
|
|
|
|
contain: none;
|
|
|
|
}
|
2016-11-04 08:32:14 -04:00
|
|
|
}
|
2016-11-10 17:21:24 -05:00
|
|
|
|
|
|
|
.column-back-button {
|
2019-08-01 13:17:17 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-04-23 08:18:58 -04:00
|
|
|
cursor: pointer;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 16px;
|
2018-07-25 22:49:45 -04:00
|
|
|
line-height: inherit;
|
2017-07-30 18:18:15 -04:00
|
|
|
border: 0;
|
2017-08-02 07:09:37 -04:00
|
|
|
text-align: unset;
|
2017-06-09 10:22:28 -04:00
|
|
|
padding: 15px;
|
2017-08-02 07:09:37 -04:00
|
|
|
margin: 0;
|
2017-02-22 20:14:35 -05:00
|
|
|
z-index: 3;
|
2018-05-22 07:24:54 -04:00
|
|
|
outline: 0;
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2016-11-10 17:21:24 -05:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-11-23 12:53:23 -05:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
.column-header__back-button {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border: 0;
|
|
|
|
font-family: inherit;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-06-03 19:39:38 -04:00
|
|
|
cursor: pointer;
|
2018-02-01 11:17:17 -05:00
|
|
|
white-space: nowrap;
|
2017-06-03 19:39:38 -04:00
|
|
|
font-size: 16px;
|
2017-06-09 10:22:28 -04:00
|
|
|
padding: 0 5px 0 0;
|
2017-06-03 19:39:38 -04:00
|
|
|
z-index: 3;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2017-09-06 11:32:15 -04:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding: 0 15px 0 0;
|
|
|
|
}
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.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;
|
2017-05-10 14:32:26 -04:00
|
|
|
top: -48px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2016-11-23 12:53:23 -05:00
|
|
|
.react-toggle {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
user-select: none;
|
2017-05-08 09:57:49 -04:00
|
|
|
-webkit-tap-highlight-color: rgba($base-overlay-background, 0);
|
2016-11-23 12:53:23 -05:00
|
|
|
-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;
|
2017-05-08 09:57:49 -04:00
|
|
|
background-color: $ui-base-color;
|
2019-05-04 11:39:53 -04:00
|
|
|
transition: background-color 0.2s ease;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
|
2017-05-08 09:57:49 -04:00
|
|
|
background-color: darken($ui-base-color, 10%);
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked .react-toggle-track {
|
2017-05-08 09:57:49 -04:00
|
|
|
background-color: $ui-highlight-color;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
|
2017-05-08 09:57:49 -04:00
|
|
|
background-color: lighten($ui-highlight-color, 10%);
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-track-check {
|
|
|
|
position: absolute;
|
|
|
|
width: 14px;
|
|
|
|
height: 10px;
|
2017-05-07 14:47:31 -04:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2016-11-23 12:53:23 -05:00
|
|
|
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;
|
2017-05-07 14:47:31 -04:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2016-11-23 12:53:23 -05:00
|
|
|
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;
|
2017-05-08 09:57:49 -04:00
|
|
|
border: 1px solid $ui-base-color;
|
2016-11-23 12:53:23 -05:00
|
|
|
border-radius: 50%;
|
2017-05-08 09:57:49 -04:00
|
|
|
background-color: darken($simple-background-color, 2%);
|
2016-11-23 12:53:23 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
transition: all 0.25s ease;
|
2019-05-04 11:39:53 -04:00
|
|
|
transition-property: border-color, left;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked .react-toggle-thumb {
|
|
|
|
left: 27px;
|
2017-05-08 09:57:49 -04:00
|
|
|
border-color: $ui-highlight-color;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
2016-12-12 08:27:52 -05:00
|
|
|
|
|
|
|
.column-link {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
color: $primary-text-color;
|
2017-04-21 12:17:55 -04:00
|
|
|
display: block;
|
2017-04-22 22:26:55 -04:00
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
|
|
|
text-decoration: none;
|
2017-02-10 16:58:29 -05:00
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 11%);
|
2016-12-12 08:27:52 -05:00
|
|
|
}
|
2019-05-25 15:27:00 -04:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--transparent {
|
|
|
|
background: transparent;
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: transparent;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $ui-highlight-color;
|
|
|
|
}
|
|
|
|
}
|
2016-12-12 08:27:52 -05:00
|
|
|
}
|
2016-12-14 12:21:31 -05:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.column-link__icon {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2018-01-21 07:20:20 -05:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2017-04-25 19:21:05 -04:00
|
|
|
.column-subheading {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-base-color;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-04-25 19:21:05 -04:00
|
|
|
padding: 8px 20px;
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 12px;
|
2017-04-25 22:40:27 -04:00
|
|
|
font-weight: 500;
|
2020-01-27 07:44:29 -05:00
|
|
|
text-transform: uppercase;
|
2017-04-25 22:40:27 -04:00
|
|
|
cursor: default;
|
2017-04-25 19:21:05 -04:00
|
|
|
}
|
|
|
|
|
2018-01-02 22:39:14 -05:00
|
|
|
.getting-started__wrapper,
|
2018-05-30 12:41:47 -04:00
|
|
|
.getting-started,
|
|
|
|
.flex-spacer {
|
2018-01-02 22:39:14 -05:00
|
|
|
background: $ui-base-color;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.getting-started__wrapper {
|
2018-06-01 13:18:37 -04:00
|
|
|
flex: 0 0 auto;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2018-05-30 12:41:47 -04:00
|
|
|
.flex-spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2017-01-04 20:33:05 -05:00
|
|
|
.getting-started {
|
2018-05-30 12:41:47 -04:00
|
|
|
color: $dark-text-color;
|
2019-02-27 09:03:28 -05:00
|
|
|
overflow: auto;
|
2017-01-25 21:17:48 -05:00
|
|
|
|
2018-05-30 12:41:47 -04:00
|
|
|
&__footer {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
display: inline;
|
|
|
|
}
|
2018-08-30 21:43:02 -04:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2018-05-30 12:41:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__trends {
|
2018-06-01 13:18:37 -04:00
|
|
|
flex: 0 1 auto;
|
2019-08-06 11:57:52 -04:00
|
|
|
opacity: 1;
|
|
|
|
animation: fade 150ms linear;
|
|
|
|
margin-top: 10px;
|
2018-06-01 13:18:37 -04:00
|
|
|
|
2019-08-22 23:05:21 -04:00
|
|
|
h4 {
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
2019-08-22 23:05:21 -04:00
|
|
|
color: $darker-text-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-weight: 500;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2018-06-01 13:18:37 -04:00
|
|
|
@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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-height: 670px) {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-05-30 12:41:47 -04:00
|
|
|
|
2019-08-06 11:57:52 -04:00
|
|
|
.trends__item {
|
|
|
|
border-bottom: 0;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&__current {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
2017-01-01 13:52:25 -05:00
|
|
|
}
|
2017-01-08 06:32:37 -05:00
|
|
|
|
2017-11-27 15:31:58 -05:00
|
|
|
.keyboard-shortcuts {
|
|
|
|
padding: 8px 0 0;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
thead {
|
|
|
|
position: absolute;
|
|
|
|
left: -9999px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 0 10px 8px;
|
|
|
|
}
|
|
|
|
|
2017-12-19 21:46:25 -05:00
|
|
|
kbd {
|
2017-11-27 15:31:58 -05:00
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 5px;
|
|
|
|
background-color: lighten($ui-base-color, 8%);
|
|
|
|
border: 1px solid darken($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-10 11:25:10 -05:00
|
|
|
.setting-text {
|
2017-04-22 22:26:55 -04:00
|
|
|
display: block;
|
2019-06-08 04:23:41 -04:00
|
|
|
box-sizing: border-box;
|
2017-04-22 22:26:55 -04:00
|
|
|
width: 100%;
|
2019-06-08 04:23:41 -04:00
|
|
|
margin: 0;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
background: $simple-background-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
resize: vertical;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
border-radius: 4px;
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2019-06-08 04:23:41 -04:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
2017-01-10 11:25:10 -05:00
|
|
|
}
|
2017-04-16 08:05:16 -04:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2017-01-10 11:25:10 -05:00
|
|
|
}
|
2017-04-23 18:38:37 -04:00
|
|
|
|
2017-12-23 22:48:31 -05:00
|
|
|
.no-reduce-motion button.icon-button i.fa-retweet {
|
2017-01-15 10:55:31 -05:00
|
|
|
background-position: 0 0;
|
2017-05-01 20:15:14 -04:00
|
|
|
height: 19px;
|
2017-01-23 21:02:13 -05:00
|
|
|
transition: background-position 0.9s steps(10);
|
2017-01-15 10:55:31 -05:00
|
|
|
transition-duration: 0s;
|
2017-05-01 20:15:14 -04:00
|
|
|
vertical-align: middle;
|
|
|
|
width: 22px;
|
2017-01-15 10:55:31 -05:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2017-12-23 22:48:31 -05:00
|
|
|
|
2017-01-15 10:55:31 -05:00
|
|
|
}
|
|
|
|
|
2017-12-23 22:48:31 -05:00
|
|
|
.no-reduce-motion button.icon-button.active i.fa-retweet {
|
2017-01-15 10:55:31 -05:00
|
|
|
transition-duration: 0.9s;
|
2017-01-23 21:02:13 -05:00
|
|
|
background-position: 0 100%;
|
2017-01-15 10:55:31 -05:00
|
|
|
}
|
2017-01-19 19:00:14 -05:00
|
|
|
|
2017-12-23 22:48:31 -05:00
|
|
|
.reduce-motion button.icon-button i.fa-retweet {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $action-button-color;
|
2017-12-23 22:48:31 -05:00
|
|
|
transition: color 100ms ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reduce-motion button.icon-button.active i.fa-retweet {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-12-23 22:48:31 -05:00
|
|
|
}
|
|
|
|
|
2017-01-19 19:00:14 -05:00
|
|
|
.status-card {
|
2020-06-25 16:42:01 -04:00
|
|
|
position: relative;
|
2017-02-10 16:58:29 -05:00
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
2017-05-08 09:57:49 -04:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2017-02-10 16:58:29 -05:00
|
|
|
border-radius: 4px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
margin-top: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2018-02-15 01:04:28 -05:00
|
|
|
&__actions {
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
background: rgba($base-shadow-color, 0.6);
|
2019-04-26 21:24:09 -04:00
|
|
|
border-radius: 8px;
|
2018-02-15 01:04:28 -05:00
|
|
|
padding: 12px 9px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
a {
|
|
|
|
display: inline;
|
2019-04-26 21:24:09 -04:00
|
|
|
color: $secondary-text-color;
|
2018-02-15 01:04:28 -05:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2019-04-26 21:24:09 -04:00
|
|
|
padding: 0 8px;
|
2018-02-15 01:04:28 -05:00
|
|
|
text-decoration: none;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2019-04-26 21:24:09 -04:00
|
|
|
color: $primary-text-color;
|
2018-02-15 01:04:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 19px;
|
|
|
|
position: relative;
|
|
|
|
bottom: -1px;
|
|
|
|
}
|
2017-01-19 19:00:14 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-30 12:04:15 -05:00
|
|
|
|
2018-02-15 01:04:28 -05:00
|
|
|
a.status-card {
|
|
|
|
cursor: pointer;
|
2017-04-27 08:42:22 -04:00
|
|
|
|
2018-02-15 01:04:28 -05:00
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-04-27 08:42:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card-photo {
|
2017-11-25 09:41:45 -05:00
|
|
|
cursor: zoom-in;
|
2017-04-27 08:42:22 -04:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
2017-11-25 09:41:45 -05:00
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
2017-04-27 08:42:22 -04:00
|
|
|
}
|
|
|
|
|
2017-05-07 09:21:46 -04:00
|
|
|
.status-card-video {
|
|
|
|
iframe {
|
2017-10-07 20:34:49 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-05-07 09:21:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.status-card__title {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 5px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-02-15 01:04:28 -05:00
|
|
|
text-decoration: none;
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status-card__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 14px 14px 14px 8px;
|
2020-06-06 11:41:56 -04:00
|
|
|
|
|
|
|
&--blurred {
|
|
|
|
filter: blur(2px);
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.status-card__description {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
|
|
|
|
2017-05-04 09:52:08 -04:00
|
|
|
.status-card__host {
|
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
font-size: 13px;
|
2018-10-28 01:35:03 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-05-04 09:52:08 -04:00
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.status-card__image {
|
|
|
|
flex: 0 0 100px;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-02-15 01:04:28 -05:00
|
|
|
position: relative;
|
2019-01-04 06:44:46 -05:00
|
|
|
|
2019-01-06 17:54:01 -05:00
|
|
|
& > .fa {
|
2019-01-04 06:44:46 -05:00
|
|
|
font-size: 21px;
|
|
|
|
position: absolute;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
|
|
|
|
2017-09-01 10:20:16 -04:00
|
|
|
.status-card.horizontal {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-06-06 11:41:56 -04:00
|
|
|
.status-card__image-image,
|
|
|
|
.status-card__image-preview {
|
2017-09-01 10:20:16 -04:00
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
2017-12-08 18:56:16 -05:00
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
white-space: inherit;
|
|
|
|
}
|
2017-09-01 10:20:16 -04:00
|
|
|
}
|
|
|
|
|
2018-10-28 01:35:03 -04:00
|
|
|
.status-card.compact {
|
|
|
|
border-color: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
&.interactive {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__content {
|
|
|
|
padding: 8px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__title {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card__image {
|
|
|
|
flex: 0 0 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.status-card.compact:hover {
|
|
|
|
background-color: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status-card__image-image {
|
2017-05-07 14:47:31 -04:00
|
|
|
border-radius: 4px 0 0 4px;
|
2017-04-22 22:26:55 -04:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
2017-12-08 18:56:16 -05:00
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2018-02-15 01:04:28 -05:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2020-06-06 11:41:56 -04:00
|
|
|
.status-card__image-preview {
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: fill;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 0;
|
|
|
|
background: $base-overlay-background;
|
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-30 12:04:15 -05:00
|
|
|
.load-more {
|
2017-02-08 19:20:09 -05:00
|
|
|
display: block;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-05-26 08:10:37 -04:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
font-size: inherit;
|
2017-02-08 19:20:09 -05:00
|
|
|
text-align: center;
|
2017-05-26 08:10:37 -04:00
|
|
|
line-height: inherit;
|
|
|
|
margin: 0;
|
2017-02-08 19:20:09 -05:00
|
|
|
padding: 15px;
|
2018-06-01 13:18:37 -04:00
|
|
|
box-sizing: border-box;
|
2017-05-26 08:10:37 -04:00
|
|
|
width: 100%;
|
2017-05-24 23:22:46 -04:00
|
|
|
clear: both;
|
2018-06-01 13:18:37 -04:00
|
|
|
text-decoration: none;
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2017-01-30 12:04:15 -05:00
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 2%);
|
2017-01-30 12:04:15 -05:00
|
|
|
}
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2018-04-10 11:12:10 -04:00
|
|
|
.load-gap {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2020-06-14 16:29:40 -04:00
|
|
|
.timeline-hint {
|
|
|
|
text-align: center;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: lighten($ui-highlight-color, 12%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 17:56:03 -05:00
|
|
|
.regeneration-indicator {
|
2017-02-08 19:20:09 -05:00
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-base-color;
|
2017-02-27 18:43:36 -05:00
|
|
|
cursor: default;
|
2017-05-02 20:04:16 -04:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
2019-10-06 16:11:17 -04:00
|
|
|
flex-direction: column;
|
2017-05-02 20:04:16 -04:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-01-17 17:56:03 -05:00
|
|
|
padding: 20px;
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2018-01-17 17:56:03 -05:00
|
|
|
&__figure {
|
2019-10-06 16:11:17 -04:00
|
|
|
&,
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
height: 160px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-01-17 17:56:03 -05:00
|
|
|
}
|
|
|
|
|
2019-10-06 16:11:17 -04:00
|
|
|
&--without-header {
|
2018-01-17 17:56:03 -05:00
|
|
|
padding-top: 20px + 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
2019-10-06 16:11:17 -04:00
|
|
|
margin-top: 30px;
|
2018-01-17 17:56:03 -05:00
|
|
|
|
|
|
|
strong {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2018-01-17 17:56:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2017-05-02 20:04:16 -04:00
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2017-06-12 14:02:17 -04:00
|
|
|
.column-header__wrapper {
|
|
|
|
position: relative;
|
|
|
|
flex: 0 0 auto;
|
2020-01-25 13:40:36 -05:00
|
|
|
z-index: 1;
|
2017-06-12 14:02:17 -04:00
|
|
|
|
|
|
|
&.active {
|
2020-01-25 13:40:36 -05:00
|
|
|
box-shadow: 0 1px 0 rgba($highlight-text-color, 0.3);
|
|
|
|
|
2017-06-12 14:02:17 -04:00
|
|
|
&::before {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
2020-01-25 13:40:36 -05:00
|
|
|
bottom: -13px;
|
2017-06-12 14:02:17 -04:00
|
|
|
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%);
|
|
|
|
}
|
|
|
|
}
|
2020-01-25 13:40:36 -05:00
|
|
|
|
|
|
|
.announcements {
|
|
|
|
z-index: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
2017-06-12 14:02:17 -04:00
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.column-header {
|
2017-10-26 09:52:48 -04:00
|
|
|
display: flex;
|
2017-02-08 19:20:09 -05:00
|
|
|
font-size: 16px;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2017-02-08 19:20:09 -05:00
|
|
|
flex: 0 0 auto;
|
|
|
|
cursor: pointer;
|
2017-02-22 20:14:35 -05:00
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
2017-04-23 18:38:37 -04:00
|
|
|
outline: 0;
|
2018-01-14 22:33:06 -05:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
& > button {
|
|
|
|
margin: 0;
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2018-02-01 11:17:17 -05:00
|
|
|
padding: 15px 0 15px 15px;
|
2018-01-14 22:33:06 -05:00
|
|
|
color: inherit;
|
|
|
|
background: transparent;
|
|
|
|
font: inherit;
|
|
|
|
text-align: left;
|
2018-02-01 11:17:17 -05:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2018-02-02 07:31:28 -05:00
|
|
|
flex: 1;
|
2018-01-14 22:33:06 -05:00
|
|
|
}
|
2017-02-22 20:14:35 -05:00
|
|
|
|
2018-03-11 04:52:59 -04:00
|
|
|
& > .column-header__back-button {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2018-03-11 04:52:59 -04:00
|
|
|
}
|
|
|
|
|
2017-02-22 20:14:35 -05:00
|
|
|
&.active {
|
2017-06-12 14:02:17 -04:00
|
|
|
.column-header__icon {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
|
|
|
text-shadow: 0 0 10px rgba($highlight-text-color, 0.4);
|
2017-06-12 14:02:17 -04:00
|
|
|
}
|
2017-02-20 18:10:49 -05:00
|
|
|
}
|
2017-04-21 12:17:55 -04:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-04-23 18:38:37 -04:00
|
|
|
outline: 0;
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
.column-header__buttons {
|
2017-06-06 10:56:10 -04:00
|
|
|
height: 48px;
|
2017-10-26 09:52:48 -04:00
|
|
|
display: flex;
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2019-06-10 20:26:37 -04:00
|
|
|
.column-header__links {
|
|
|
|
margin-bottom: 14px;
|
|
|
|
}
|
|
|
|
|
2017-12-05 17:02:27 -05:00
|
|
|
.column-header__links .text-btn {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
.column-header__button {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border: 0;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $darker-text-color;
|
2017-06-03 19:39:38 -04:00
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
2017-06-04 08:52:02 -04:00
|
|
|
padding: 0 15px;
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
&:hover {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($darker-text-color, 7%);
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $primary-text-color;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-text-color;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-header__collapsible {
|
|
|
|
max-height: 70vh;
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-y: auto;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-06-03 19:39:38 -04:00
|
|
|
transition: max-height 150ms ease-in-out, opacity 300ms linear;
|
|
|
|
opacity: 1;
|
2020-01-25 13:40:36 -05:00
|
|
|
z-index: 1;
|
|
|
|
position: relative;
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
&.collapsed {
|
|
|
|
max-height: 0;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.animating {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
2017-12-05 17:02:27 -05:00
|
|
|
|
|
|
|
hr {
|
|
|
|
height: 0;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2017-06-24 17:18:11 -04:00
|
|
|
.column-header__collapsible-inner {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
.column-header__setting-btn {
|
|
|
|
&:hover {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-06-03 19:39:38 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.column-header__icon {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2017-02-10 10:35:19 -05:00
|
|
|
.loading-indicator {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 12px;
|
2017-07-23 14:28:18 -04:00
|
|
|
font-weight: 400;
|
2020-01-27 07:44:29 -05:00
|
|
|
text-transform: uppercase;
|
2017-07-23 14:28:18 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading-indicator__figure {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2018-12-17 11:02:59 -05:00
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
2017-07-23 14:28:18 -04:00
|
|
|
box-sizing: border-box;
|
2018-12-17 11:02:59 -05:00
|
|
|
background-color: transparent;
|
2017-07-23 14:28:18 -04:00
|
|
|
border: 0 solid lighten($ui-base-color, 26%);
|
2018-12-17 11:02:59 -05:00
|
|
|
border-width: 6px;
|
2017-07-23 14:28:18 -04:00
|
|
|
border-radius: 50%;
|
2018-12-17 11:02:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.no-reduce-motion .loading-indicator span {
|
2019-06-06 12:51:46 -04:00
|
|
|
animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
|
2018-12-17 11:02:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.no-reduce-motion .loading-indicator__figure {
|
2019-06-06 12:51:46 -04:00
|
|
|
animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
|
2017-07-23 14:28:18 -04:00
|
|
|
}
|
|
|
|
|
2019-10-24 16:47:48 -04:00
|
|
|
@keyframes spring-rotate-in {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
transform: rotate(-484.8deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
60% {
|
|
|
|
transform: rotate(-316.7deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
90% {
|
|
|
|
transform: rotate(-375deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(-360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spring-rotate-out {
|
|
|
|
0% {
|
|
|
|
transform: rotate(-360deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
transform: rotate(124.8deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
60% {
|
|
|
|
transform: rotate(-43.27deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
90% {
|
|
|
|
transform: rotate(15deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-23 14:28:18 -04:00
|
|
|
@keyframes loader-figure {
|
|
|
|
0% {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
background-color: lighten($ui-base-color, 26%);
|
|
|
|
}
|
|
|
|
|
|
|
|
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; }
|
2017-02-10 10:35:19 -05:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.video-error-cover {
|
|
|
|
align-items: center;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $base-overlay-background;
|
|
|
|
color: $primary-text-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 8px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2017-05-02 14:03:00 -04:00
|
|
|
.media-spoiler {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $base-overlay-background;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-07-30 18:18:15 -04:00
|
|
|
border: 0;
|
2018-02-18 20:39:18 -05:00
|
|
|
padding: 0;
|
2017-07-30 18:18:15 -04:00
|
|
|
width: 100%;
|
2017-05-02 14:03:00 -04:00
|
|
|
height: 100%;
|
2018-02-18 20:39:18 -05:00
|
|
|
border-radius: 4px;
|
|
|
|
appearance: none;
|
2017-09-13 21:39:10 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-02-18 20:39:18 -05:00
|
|
|
padding: 0;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($darker-text-color, 8%);
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
2017-05-02 14:03:00 -04:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.media-spoiler__warning {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-spoiler__trigger {
|
|
|
|
display: block;
|
|
|
|
font-size: 11px;
|
2018-02-18 20:39:18 -05:00
|
|
|
font-weight: 700;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.spoiler-button {
|
2019-04-26 21:24:09 -04:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-04-22 22:26:55 -04:00
|
|
|
position: absolute;
|
2017-04-24 14:20:16 -04:00
|
|
|
z-index: 100;
|
2017-05-19 05:42:54 -04:00
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
&--minified {
|
|
|
|
display: block;
|
|
|
|
left: 4px;
|
|
|
|
top: 4px;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2019-09-02 22:56:40 -04:00
|
|
|
&--click-thru {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__overlay {
|
2017-05-19 05:42:54 -04:00
|
|
|
display: block;
|
2019-04-26 21:24:09 -04:00
|
|
|
background: transparent;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
display: inline-block;
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
.spoiler-button__overlay__label {
|
|
|
|
background: rgba($base-overlay-background, 0.8);
|
|
|
|
}
|
|
|
|
}
|
2019-09-01 13:43:35 -04:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
.spoiler-button__overlay__label {
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
}
|
|
|
|
}
|
2017-05-19 05:42:54 -04:00
|
|
|
}
|
2017-02-10 11:30:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-container--preloader {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-02-10 11:30:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.account--panel {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-04-22 22:26:55 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-05-07 14:47:31 -04:00
|
|
|
padding: 10px 0;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account--panel__button,
|
|
|
|
.detailed-status__button {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
text-align: center;
|
2017-02-10 11:30:06 -05:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.column-settings__outer {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2017-04-22 22:26:55 -04:00
|
|
|
padding: 15px;
|
2017-02-10 11:30:06 -05:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.column-settings__section {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
2019-02-13 12:34:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-settings__hashtags {
|
|
|
|
.column-settings__row {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2018-11-05 12:53:25 -05:00
|
|
|
|
2019-02-13 12:34:58 -05:00
|
|
|
.column-select {
|
2018-11-05 12:53:25 -05:00
|
|
|
&__control {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include search-input;
|
2019-09-19 13:58:40 -04:00
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2018-11-05 12:53:25 -05:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:34:58 -05:00
|
|
|
&__placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
padding-left: 2px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__value-container {
|
|
|
|
padding-left: 6px;
|
|
|
|
}
|
|
|
|
|
2018-11-05 12:53:25 -05:00
|
|
|
&__multi-value {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2019-02-13 12:34:58 -05:00
|
|
|
|
|
|
|
&__remove {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 12%);
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
2018-11-05 12:53:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__multi-value__label,
|
|
|
|
&__input {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
2019-02-13 12:34:58 -05:00
|
|
|
&__clear-indicator,
|
2018-11-05 12:53:25 -05:00
|
|
|
&__dropdown-indicator {
|
2019-02-13 12:34:58 -05:00
|
|
|
cursor: pointer;
|
|
|
|
transition: none;
|
|
|
|
color: $dark-text-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: lighten($dark-text-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__indicator-separator {
|
|
|
|
background-color: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__menu {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include search-popout;
|
2019-02-13 12:34:58 -05:00
|
|
|
padding: 0;
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__menu-list {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__option {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
&--is-focused,
|
|
|
|
&--is-selected {
|
|
|
|
background: darken($ui-secondary-color, 10%);
|
|
|
|
}
|
2018-11-05 12:53:25 -05:00
|
|
|
}
|
|
|
|
}
|
2017-02-10 10:35:19 -05:00
|
|
|
}
|
2017-02-10 11:30:06 -05:00
|
|
|
|
2017-06-12 06:26:23 -04:00
|
|
|
.column-settings__row {
|
|
|
|
.text-btn {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
.relationship-tag {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2019-03-25 19:36:25 -04:00
|
|
|
margin-bottom: 4px;
|
|
|
|
display: block;
|
2018-03-04 23:09:35 -05:00
|
|
|
vertical-align: top;
|
2019-03-28 13:33:26 -04:00
|
|
|
background-color: $base-overlay-background;
|
2020-01-27 07:44:29 -05:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 11px;
|
2018-03-04 23:09:35 -05:00
|
|
|
font-weight: 500;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 4px;
|
2019-03-28 13:33:26 -04:00
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2018-03-04 23:09:35 -05:00
|
|
|
}
|
|
|
|
|
2017-06-03 08:40:24 -04:00
|
|
|
.setting-toggle {
|
2017-04-22 22:26:55 -04:00
|
|
|
display: block;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2018-09-25 09:59:19 -04:00
|
|
|
.setting-toggle__label {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
margin-left: 8px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
.empty-column-indicator,
|
2020-04-04 13:02:10 -04:00
|
|
|
.error-column,
|
|
|
|
.follow_requests-unlocked_explanation {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-base-color;
|
2017-02-17 20:37:59 -05:00
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 400;
|
|
|
|
cursor: default;
|
2017-04-10 10:27:30 -04:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
align-items: center;
|
2017-05-10 18:28:10 -04:00
|
|
|
justify-content: center;
|
2018-01-19 19:32:37 -05:00
|
|
|
|
2017-05-25 15:14:56 -04:00
|
|
|
@supports(display: grid) { // hack to fix Chrome <57
|
|
|
|
contain: strict;
|
|
|
|
}
|
2017-02-17 20:37:59 -05:00
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
& > span {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
2017-02-17 20:37:59 -05:00
|
|
|
a {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-02-17 20:37:59 -05:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-20 18:10:49 -05:00
|
|
|
|
2020-04-04 13:02:10 -04:00
|
|
|
.follow_requests-unlocked_explanation {
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
contain: initial;
|
|
|
|
}
|
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
.error-column {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2017-10-07 13:02:30 -04:00
|
|
|
@keyframes heartbeat {
|
|
|
|
from {
|
|
|
|
transform: scale(1);
|
|
|
|
animation-timing-function: ease-out;
|
2017-05-06 20:42:38 -04:00
|
|
|
}
|
2017-05-07 14:47:31 -04:00
|
|
|
|
2017-10-07 13:02:30 -04:00
|
|
|
10% {
|
|
|
|
transform: scale(0.91);
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
17% {
|
|
|
|
transform: scale(0.98);
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
33% {
|
|
|
|
transform: scale(0.87);
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
45% {
|
|
|
|
transform: scale(1);
|
|
|
|
animation-timing-function: ease-out;
|
2017-05-06 20:42:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-19 19:32:37 -05:00
|
|
|
.no-reduce-motion .pulse-loading {
|
2018-01-17 17:56:03 -05:00
|
|
|
transform-origin: center center;
|
2017-10-07 13:02:30 -04:00
|
|
|
animation: heartbeat 1.5s ease-in-out infinite both;
|
2017-05-06 20:42:38 -04:00
|
|
|
}
|
|
|
|
|
2018-01-19 19:32:37 -05:00
|
|
|
@keyframes shake-bottom {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
10% {
|
|
|
|
transform: rotate(2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
20%,
|
|
|
|
40%,
|
|
|
|
60% {
|
|
|
|
transform: rotate(-4deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
30%,
|
|
|
|
50%,
|
|
|
|
70% {
|
|
|
|
transform: rotate(4deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
80% {
|
|
|
|
transform: rotate(-2deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
90% {
|
|
|
|
transform: rotate(2deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-reduce-motion .shake-bottom {
|
|
|
|
transform-origin: 50% 100%;
|
2019-06-06 12:51:46 -04:00
|
|
|
animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) 2s 2 both;
|
2018-01-19 19:32:37 -05:00
|
|
|
}
|
|
|
|
|
2017-09-22 19:41:00 -04:00
|
|
|
.emoji-picker-dropdown__menu {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $simple-background-color;
|
2017-09-22 19:41:00 -04:00
|
|
|
position: absolute;
|
|
|
|
box-shadow: 4px 4px 6px rgba($base-shadow-color, 0.4);
|
2017-04-11 17:23:34 -04:00
|
|
|
border-radius: 4px;
|
2017-09-22 19:41:00 -04:00
|
|
|
margin-top: 5px;
|
2019-05-22 12:00:34 -04:00
|
|
|
z-index: 2;
|
2017-03-01 18:57:55 -05:00
|
|
|
|
2017-09-22 19:41:00 -04:00
|
|
|
.emoji-mart-scroll {
|
|
|
|
transition: opacity 200ms ease;
|
2017-03-01 18:57:55 -05:00
|
|
|
}
|
|
|
|
|
2017-09-22 19:41:00 -04:00
|
|
|
&.selecting .emoji-mart-scroll {
|
|
|
|
opacity: 0.5;
|
2017-03-01 18:57:55 -05:00
|
|
|
}
|
2017-09-22 19:41:00 -04:00
|
|
|
}
|
2017-03-01 18:57:55 -05:00
|
|
|
|
2017-09-22 19:41:00 -04:00
|
|
|
.emoji-picker-dropdown__modifiers {
|
|
|
|
position: absolute;
|
|
|
|
top: 60px;
|
|
|
|
right: 11px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-03-01 18:57:55 -05:00
|
|
|
|
2017-09-22 19:41:00 -04:00
|
|
|
.emoji-picker-dropdown__modifiers__menu {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 4;
|
|
|
|
top: -4px;
|
|
|
|
left: -8px;
|
|
|
|
background: $simple-background-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
|
|
|
|
overflow: hidden;
|
2017-03-01 18:57:55 -05:00
|
|
|
|
2019-03-29 20:41:35 -04:00
|
|
|
button {
|
2017-04-11 17:23:34 -04:00
|
|
|
display: block;
|
2017-09-22 19:41:00 -04:00
|
|
|
cursor: pointer;
|
|
|
|
border: 0;
|
2019-03-29 20:41:35 -04:00
|
|
|
padding: 4px 8px;
|
2017-09-22 19:41:00 -04:00
|
|
|
background: transparent;
|
2017-04-11 17:23:34 -04:00
|
|
|
|
2017-09-22 19:41:00 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($ui-secondary-color, 0.4);
|
2017-04-11 17:23:34 -04:00
|
|
|
}
|
2017-03-01 18:57:55 -05:00
|
|
|
}
|
|
|
|
|
2017-09-22 19:41:00 -04:00
|
|
|
.emoji-mart-emoji {
|
2017-03-01 18:57:55 -05:00
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
}
|
2017-03-22 12:36:34 -04:00
|
|
|
|
2017-09-22 23:40:28 -04:00
|
|
|
.emoji-mart-emoji {
|
|
|
|
span {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-23 22:50:30 -04:00
|
|
|
.upload-area {
|
2017-04-22 22:26:55 -04:00
|
|
|
align-items: center;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: rgba($base-overlay-background, 0.8);
|
2017-03-23 22:50:30 -04:00
|
|
|
display: flex;
|
2017-04-22 22:26:55 -04:00
|
|
|
height: 100%;
|
2017-03-23 22:50:30 -04:00
|
|
|
justify-content: center;
|
2017-04-22 22:26:55 -04:00
|
|
|
left: 0;
|
2017-03-23 22:50:30 -04:00
|
|
|
opacity: 0;
|
2017-04-22 22:26:55 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
width: 100%;
|
2017-03-23 22:50:30 -04:00
|
|
|
z-index: 2000;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-area__drop {
|
|
|
|
width: 320px;
|
|
|
|
height: 160px;
|
|
|
|
display: flex;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-area__background {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: -1;
|
|
|
|
border-radius: 4px;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-base-color;
|
|
|
|
box-shadow: 0 0 5px rgba($base-shadow-color, 0.2);
|
2017-03-23 22:50:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.upload-area__content {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-03-23 22:50:30 -04:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
2017-07-24 09:09:08 -04:00
|
|
|
border: 2px dashed $ui-base-lighter-color;
|
2017-03-23 22:50:30 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-progress {
|
2017-03-24 19:01:43 -04:00
|
|
|
padding: 10px;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2017-03-23 22:50:30 -04:00
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2017-03-23 22:50:30 -04:00
|
|
|
font-size: 34px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
2017-03-23 22:50:30 -04:00
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.upload-progess__message {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2017-03-23 22:50:30 -04:00
|
|
|
.upload-progress__backdrop {
|
|
|
|
width: 100%;
|
|
|
|
height: 6px;
|
|
|
|
border-radius: 6px;
|
2017-07-24 09:09:08 -04:00
|
|
|
background: $ui-base-lighter-color;
|
2017-03-23 22:50:30 -04:00
|
|
|
position: relative;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-progress__tracker {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 6px;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-highlight-color;
|
2017-03-23 22:50:30 -04:00
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-button {
|
2017-05-19 05:42:54 -04:00
|
|
|
display: block;
|
2020-03-08 10:36:50 -04:00
|
|
|
padding: 5px 5px 2px 2px;
|
2017-03-24 19:01:43 -04:00
|
|
|
outline: 0;
|
2017-07-14 13:47:53 -04:00
|
|
|
cursor: pointer;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-03-24 19:01:43 -04:00
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
2017-03-23 22:50:30 -04:00
|
|
|
img {
|
|
|
|
filter: grayscale(100%);
|
2017-03-24 19:01:43 -04:00
|
|
|
opacity: 0.8;
|
2017-03-23 22:50:30 -04:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-03-23 22:50:30 -04:00
|
|
|
img {
|
|
|
|
opacity: 1;
|
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown--active .emoji-button img {
|
|
|
|
opacity: 1;
|
|
|
|
filter: none;
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
|
|
|
|
.privacy-dropdown__dropdown {
|
|
|
|
position: absolute;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $simple-background-color;
|
2017-10-01 06:20:00 -04:00
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-left: 40px;
|
2017-03-24 19:01:43 -04:00
|
|
|
overflow: hidden;
|
2018-08-19 11:11:12 -04:00
|
|
|
|
|
|
|
&.top {
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
transform-origin: 50% 0;
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-dropdown__option {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $inverted-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&.active {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
2018-05-19 06:16:52 -04:00
|
|
|
outline: 0;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
|
|
|
.privacy-dropdown__option__content {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
|
|
|
strong {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-highlight-color, 4%);
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-dropdown__option__icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-dropdown__option__content {
|
|
|
|
flex: 1 1 auto;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-12-07 10:01:52 -05:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-dropdown.active {
|
|
|
|
.privacy-dropdown__value {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $simple-background-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
border-radius: 4px 4px 0 0;
|
2017-05-08 09:57:49 -04:00
|
|
|
box-shadow: 0 -4px 4px rgba($base-shadow-color, 0.1);
|
2017-10-01 06:20:00 -04:00
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
2018-08-19 11:11:12 -04:00
|
|
|
&.top .privacy-dropdown__value {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
|
2017-03-24 19:01:43 -04:00
|
|
|
.privacy-dropdown__dropdown {
|
|
|
|
display: block;
|
2017-05-08 09:57:49 -04:00
|
|
|
box-shadow: 2px 4px 6px rgba($base-shadow-color, 0.1);
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
}
|
2017-03-31 13:59:54 -04:00
|
|
|
|
|
|
|
.search {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search__input {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include search-input;
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
display: block;
|
2019-06-08 04:23:41 -04:00
|
|
|
padding: 15px;
|
2017-03-31 13:59:54 -04:00
|
|
|
padding-right: 30px;
|
2019-06-08 04:23:41 -04:00
|
|
|
line-height: 18px;
|
|
|
|
font-size: 16px;
|
2019-09-19 13:58:40 -04:00
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.search__icon {
|
2018-05-28 20:01:24 -04:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2017-03-31 13:59:54 -04:00
|
|
|
position: absolute;
|
2019-06-08 19:59:42 -04:00
|
|
|
top: 16px;
|
2017-03-31 13:59:54 -04:00
|
|
|
right: 10px;
|
|
|
|
z-index: 2;
|
|
|
|
display: inline-block;
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 100ms linear;
|
2019-05-04 11:39:53 -04:00
|
|
|
transition-property: transform, opacity;
|
2017-03-31 13:59:54 -04:00
|
|
|
font-size: 18px;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-03-31 13:59:54 -04:00
|
|
|
cursor: default;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
pointer-events: auto;
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-search {
|
2017-10-19 12:27:55 -04:00
|
|
|
transform: rotate(90deg);
|
2017-03-31 13:59:54 -04:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
pointer-events: none;
|
2017-10-19 12:27:55 -04:00
|
|
|
transform: rotate(0deg);
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-times-circle {
|
2019-06-08 19:59:42 -04:00
|
|
|
top: 17px;
|
2017-10-19 12:27:55 -04:00
|
|
|
transform: rotate(0deg);
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $action-button-color;
|
2017-03-31 13:59:54 -04:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.active {
|
2017-10-19 12:27:55 -04:00
|
|
|
transform: rotate(90deg);
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
2017-03-31 16:44:12 -04:00
|
|
|
|
|
|
|
&:hover {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: lighten($action-button-color, 7%);
|
2017-03-31 16:44:12 -04:00
|
|
|
}
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results__header {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-base-color, 2%);
|
2018-05-27 15:45:30 -04:00
|
|
|
padding: 15px;
|
2017-03-31 13:59:54 -04:00
|
|
|
font-weight: 500;
|
2018-05-27 15:45:30 -04:00
|
|
|
font-size: 16px;
|
|
|
|
cursor: default;
|
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-05-27 15:45:30 -04:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
|
|
|
|
2018-02-09 17:04:47 -05:00
|
|
|
.search-results__section {
|
2018-05-28 20:01:24 -04:00
|
|
|
margin-bottom: 5px;
|
2018-02-09 17:04:47 -05:00
|
|
|
|
|
|
|
h5 {
|
2018-05-28 20:01:24 -04:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
cursor: default;
|
|
|
|
display: flex;
|
|
|
|
padding: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
color: $dark-text-color;
|
2018-02-09 17:04:47 -05:00
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-02-09 17:04:47 -05:00
|
|
|
display: inline-block;
|
2018-05-28 20:01:24 -04:00
|
|
|
margin-right: 5px;
|
2018-02-09 17:04:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account:last-child,
|
|
|
|
& > div:last-child .status {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
.search-results__hashtag {
|
|
|
|
display: block;
|
|
|
|
padding: 10px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-03-31 13:59:54 -04:00
|
|
|
text-decoration: none;
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($secondary-text-color, 4%);
|
2017-03-31 13:59:54 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2019-06-27 15:12:26 -04:00
|
|
|
.search-results__info {
|
2019-07-26 23:49:50 -04:00
|
|
|
padding: 20px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-align: center;
|
2019-06-27 15:12:26 -04:00
|
|
|
}
|
|
|
|
|
2017-09-28 14:43:18 -04:00
|
|
|
.modal-root {
|
2018-03-24 07:52:26 -04:00
|
|
|
position: relative;
|
2017-09-28 14:43:18 -04:00
|
|
|
transition: opacity 0.3s linear;
|
|
|
|
will-change: opacity;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
.modal-root__overlay {
|
2018-03-24 07:52:26 -04:00
|
|
|
position: fixed;
|
2017-04-01 16:11:28 -04:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: rgba($base-overlay-background, 0.7);
|
2017-04-01 16:11:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-root__container {
|
2018-03-24 07:52:26 -04:00
|
|
|
position: fixed;
|
2017-04-01 16:11:28 -04:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
align-content: space-around;
|
|
|
|
z-index: 9999;
|
|
|
|
pointer-events: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-root__modal {
|
|
|
|
pointer-events: auto;
|
|
|
|
display: flex;
|
2017-04-16 14:32:00 -04:00
|
|
|
z-index: 9999;
|
2017-04-01 16:11:28 -04:00
|
|
|
}
|
|
|
|
|
2019-10-02 21:34:58 -04:00
|
|
|
.video-modal__container {
|
2018-03-04 14:32:24 -05:00
|
|
|
max-width: 100vw;
|
|
|
|
max-height: 100vh;
|
2019-10-02 21:34:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.audio-modal__container {
|
|
|
|
width: 50vw;
|
2018-03-04 14:32:24 -05:00
|
|
|
}
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
.media-modal {
|
2018-03-04 14:32:24 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-04-01 16:11:28 -04:00
|
|
|
position: relative;
|
2018-03-27 06:30:28 -04:00
|
|
|
|
|
|
|
.extended-video-player {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
video {
|
|
|
|
max-width: $media-modal-media-max-width;
|
|
|
|
max-height: $media-modal-media-max-height;
|
|
|
|
}
|
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
}
|
2017-04-10 22:28:52 -04:00
|
|
|
|
2018-03-04 14:32:24 -05:00
|
|
|
.media-modal__closer {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__navigation {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
transition: opacity 0.3s linear;
|
|
|
|
will-change: opacity;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.media-modal__navigation--hidden {
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav {
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 0;
|
|
|
|
color: $primary-text-color;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 24px;
|
|
|
|
height: 20vmax;
|
|
|
|
margin: auto 0;
|
|
|
|
padding: 30px 15px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav--left {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav--right {
|
|
|
|
right: 0;
|
2017-07-23 14:28:31 -04:00
|
|
|
}
|
|
|
|
|
2017-10-03 11:11:22 -04:00
|
|
|
.media-modal__pagination {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2018-03-04 14:32:24 -05:00
|
|
|
bottom: 20px;
|
|
|
|
pointer-events: none;
|
2017-10-03 11:11:22 -04:00
|
|
|
}
|
|
|
|
|
2019-05-03 10:16:30 -04:00
|
|
|
.media-modal__meta {
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 20px;
|
|
|
|
width: 100%;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&--shifted {
|
|
|
|
bottom: 62px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2019-10-02 21:34:58 -04:00
|
|
|
pointer-events: auto;
|
2019-05-03 10:16:30 -04:00
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-03 11:11:22 -04:00
|
|
|
.media-modal__page-dot {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__button {
|
2018-04-18 10:52:15 -04:00
|
|
|
background-color: $primary-text-color;
|
2017-10-03 11:11:22 -04:00
|
|
|
height: 12px;
|
|
|
|
width: 12px;
|
|
|
|
border-radius: 6px;
|
|
|
|
margin: 10px;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__button--active {
|
2018-04-18 10:52:15 -04:00
|
|
|
background-color: $highlight-text-color;
|
2017-10-03 11:11:22 -04:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.media-modal__close {
|
|
|
|
position: absolute;
|
2018-03-04 14:32:24 -05:00
|
|
|
right: 8px;
|
|
|
|
top: 8px;
|
2017-04-22 22:26:55 -04:00
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2018-01-19 19:32:37 -05:00
|
|
|
.onboarding-modal,
|
2017-08-30 21:38:35 -04:00
|
|
|
.error-modal,
|
|
|
|
.embed-modal {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-secondary-color;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-04-16 14:32:00 -04:00
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
.error-modal__body {
|
2017-04-16 14:32:00 -04:00
|
|
|
height: 80vh;
|
|
|
|
width: 80vw;
|
2017-04-17 19:02:02 -04:00
|
|
|
max-width: 520px;
|
|
|
|
max-height: 420px;
|
2017-04-16 14:32:00 -04:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 25px;
|
|
|
|
display: none;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
opacity: 0;
|
|
|
|
user-select: text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
.error-modal__body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-01-19 19:32:37 -05:00
|
|
|
.onboarding-modal__paginator,
|
2017-07-07 18:06:02 -04:00
|
|
|
.error-modal__footer {
|
2017-04-16 14:32:00 -04:00
|
|
|
flex: 0 0 auto;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: darken($ui-secondary-color, 8%);
|
2017-04-16 14:32:00 -04:00
|
|
|
display: flex;
|
|
|
|
padding: 25px;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
min-width: 33px;
|
|
|
|
}
|
|
|
|
|
2018-01-19 19:32:37 -05:00
|
|
|
.onboarding-modal__nav,
|
2017-07-07 18:06:02 -04:00
|
|
|
.error-modal__nav {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2017-05-26 08:10:37 -04:00
|
|
|
border: 0;
|
2017-04-16 14:32:00 -04:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2018-01-19 19:32:37 -05:00
|
|
|
padding: 10px 25px;
|
2017-05-26 08:10:37 -04:00
|
|
|
line-height: inherit;
|
|
|
|
height: auto;
|
2018-01-19 19:32:37 -05:00
|
|
|
margin: -10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: transparent;
|
2017-04-16 14:32:00 -04:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: darken($lighter-text-color, 4%);
|
2018-01-19 19:32:37 -05:00
|
|
|
background-color: darken($ui-secondary-color, 16%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.onboarding-modal__done,
|
|
|
|
&.onboarding-modal__next {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2018-01-19 19:32:37 -05:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: lighten($inverted-text-color, 4%);
|
2018-01-19 19:32:37 -05:00
|
|
|
}
|
2017-04-16 14:32:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
.error-modal__footer {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2018-01-19 19:32:37 -05:00
|
|
|
.display-case {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
font-weight: 500;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2018-01-19 19:32:37 -05:00
|
|
|
margin-bottom: 5px;
|
2020-01-27 07:44:29 -05:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
2018-01-19 19:32:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__case {
|
|
|
|
background: $ui-base-color;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2018-01-19 19:32:37 -05:00
|
|
|
font-weight: 500;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboard-sliders {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 30px;
|
|
|
|
max-height: auto;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
.boost-modal,
|
2017-06-27 12:07:21 -04:00
|
|
|
.confirmation-modal,
|
2017-07-27 16:31:59 -04:00
|
|
|
.report-modal,
|
2017-11-14 21:56:41 -05:00
|
|
|
.actions-modal,
|
2019-09-29 15:46:05 -04:00
|
|
|
.mute-modal,
|
|
|
|
.block-modal {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: lighten($ui-secondary-color, 8%);
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
2017-04-10 22:28:52 -04:00
|
|
|
max-width: 90vw;
|
|
|
|
width: 480px;
|
|
|
|
position: relative;
|
2017-04-11 15:24:17 -04:00
|
|
|
flex-direction: column;
|
2017-04-22 22:26:55 -04:00
|
|
|
|
|
|
|
.status__display-name {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
padding-right: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__avatar {
|
|
|
|
height: 28px;
|
|
|
|
left: 10px;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
width: 48px;
|
|
|
|
}
|
2018-04-18 20:36:31 -04:00
|
|
|
|
|
|
|
.status__content__spoiler-link {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($secondary-text-color, 8%);
|
2018-04-18 20:36:31 -04:00
|
|
|
}
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
2017-04-10 22:28:52 -04:00
|
|
|
|
2017-07-28 09:30:53 -04:00
|
|
|
.actions-modal {
|
|
|
|
.status {
|
|
|
|
background: $white;
|
|
|
|
border-bottom-color: $ui-secondary-color;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
2017-09-21 22:59:17 -04:00
|
|
|
|
|
|
|
.dropdown-menu__separator {
|
|
|
|
border-bottom-color: $ui-secondary-color;
|
|
|
|
}
|
2017-07-28 09:30:53 -04:00
|
|
|
}
|
|
|
|
|
2017-04-11 15:24:17 -04:00
|
|
|
.boost-modal__container {
|
2017-04-17 06:27:19 -04:00
|
|
|
overflow-x: scroll;
|
2017-04-11 15:24:17 -04:00
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
.status {
|
|
|
|
user-select: text;
|
|
|
|
border-bottom: 0;
|
2017-04-10 22:28:52 -04:00
|
|
|
}
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
2017-04-10 22:28:52 -04:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
.boost-modal__action-bar,
|
2017-06-27 12:07:21 -04:00
|
|
|
.confirmation-modal__action-bar,
|
2019-09-29 15:46:05 -04:00
|
|
|
.mute-modal__action-bar,
|
|
|
|
.block-modal__action-bar {
|
2017-04-11 15:24:17 -04:00
|
|
|
display: flex;
|
2017-05-23 07:10:41 -04:00
|
|
|
justify-content: space-between;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-secondary-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
padding: 10px;
|
|
|
|
line-height: 36px;
|
2017-04-10 22:28:52 -04:00
|
|
|
|
2017-04-11 15:24:17 -04:00
|
|
|
& > div {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
text-align: right;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2017-04-11 15:24:17 -04:00
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
2017-04-10 22:28:52 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-15 07:17:54 -04:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.boost-modal__status-header {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boost-modal__status-time {
|
|
|
|
float: right;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2019-09-29 15:46:05 -04:00
|
|
|
.mute-modal,
|
|
|
|
.block-modal {
|
2017-11-14 21:56:41 -05:00
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2019-09-29 15:46:05 -04:00
|
|
|
.mute-modal .react-toggle,
|
|
|
|
.block-modal .react-toggle {
|
2017-11-14 21:56:41 -05:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-02-28 00:54:55 -05:00
|
|
|
.report-modal {
|
|
|
|
width: 90vw;
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-modal__container {
|
|
|
|
display: flex;
|
|
|
|
border-top: 1px solid $ui-secondary-color;
|
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 12:07:21 -04:00
|
|
|
.report-modal__statuses,
|
|
|
|
.report-modal__comment {
|
2018-02-28 00:54:55 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-06-27 12:07:21 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 16:49:00 -04:00
|
|
|
.report-modal__statuses,
|
|
|
|
.focal-point-modal__content {
|
2018-02-28 00:54:55 -05:00
|
|
|
flex: 1 1 auto;
|
2017-06-27 12:07:21 -04:00
|
|
|
min-height: 20vh;
|
2018-05-06 14:38:17 -04:00
|
|
|
max-height: 80vh;
|
2017-06-27 12:07:21 -04:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2018-02-28 00:54:55 -05:00
|
|
|
|
2018-04-22 08:29:40 -04:00
|
|
|
.status__content a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2019-01-04 07:54:56 -05:00
|
|
|
.status__content,
|
2018-08-19 09:51:57 -04:00
|
|
|
.status__content p {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
|
2018-02-28 00:54:55 -05:00
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
max-height: 10vh;
|
|
|
|
}
|
2017-06-27 12:07:21 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 16:49:00 -04:00
|
|
|
.focal-point-modal__content {
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
max-height: 40vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 12:07:21 -04:00
|
|
|
.report-modal__comment {
|
2018-02-28 00:54:55 -05:00
|
|
|
padding: 20px;
|
|
|
|
border-right: 1px solid $ui-secondary-color;
|
|
|
|
max-width: 320px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2017-06-27 12:07:21 -04:00
|
|
|
.setting-text {
|
2018-02-28 00:54:55 -05:00
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2018-02-28 00:54:55 -05:00
|
|
|
background: $white;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
2019-08-15 09:13:26 -04:00
|
|
|
resize: none;
|
2018-02-28 00:54:55 -05:00
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid $ui-secondary-color;
|
2019-08-15 09:13:26 -04:00
|
|
|
min-height: 100px;
|
|
|
|
max-height: 50vh;
|
|
|
|
margin-bottom: 10px;
|
2018-02-28 00:54:55 -05:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border: 1px solid darken($ui-secondary-color, 8%);
|
|
|
|
}
|
2019-08-15 09:13:26 -04:00
|
|
|
|
|
|
|
&__wrapper {
|
|
|
|
background: $white;
|
|
|
|
border: 1px solid $ui-secondary-color;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
.setting-text {
|
|
|
|
border: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__modifiers {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
background: $white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__toolbar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2018-02-28 00:54:55 -05:00
|
|
|
}
|
|
|
|
|
2019-08-13 22:07:32 -04:00
|
|
|
.setting-text-label {
|
|
|
|
display: block;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2018-02-28 00:54:55 -05:00
|
|
|
.setting-toggle {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
|
|
|
&__label {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2018-02-28 00:54:55 -05:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
padding: 10px;
|
|
|
|
max-width: 100%;
|
|
|
|
order: 2;
|
|
|
|
|
|
|
|
.setting-toggle {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2017-06-27 12:07:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-27 16:31:59 -04:00
|
|
|
.actions-modal {
|
2019-06-06 12:51:46 -04:00
|
|
|
max-height: 80vh;
|
|
|
|
max-width: 80vw;
|
|
|
|
|
2017-07-27 16:31:59 -04:00
|
|
|
.status {
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
|
|
|
|
2017-09-21 22:59:17 -04:00
|
|
|
.actions-modal__item-label {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2017-07-27 16:31:59 -04:00
|
|
|
ul {
|
|
|
|
overflow-y: auto;
|
|
|
|
flex-shrink: 0;
|
2019-04-22 08:55:50 -04:00
|
|
|
max-height: 80vh;
|
|
|
|
|
|
|
|
&.with-status {
|
|
|
|
max-height: calc(80vh - 75px);
|
|
|
|
}
|
2017-07-27 16:31:59 -04:00
|
|
|
|
2017-07-28 07:34:06 -04:00
|
|
|
li:empty {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-07-27 16:31:59 -04:00
|
|
|
li:not(:empty) {
|
|
|
|
a {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $inverted-text-color;
|
2017-07-27 16:31:59 -04:00
|
|
|
display: flex;
|
2017-09-21 22:59:17 -04:00
|
|
|
padding: 12px 16px;
|
|
|
|
font-size: 15px;
|
2017-07-27 16:31:59 -04:00
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
|
|
|
|
2017-09-21 22:59:17 -04:00
|
|
|
&,
|
|
|
|
button {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active,
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-07-27 16:31:59 -04:00
|
|
|
&,
|
|
|
|
button {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button:first-child {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 21:56:41 -05:00
|
|
|
.confirmation-modal__action-bar,
|
2019-09-29 15:46:05 -04:00
|
|
|
.mute-modal__action-bar,
|
|
|
|
.block-modal__action-bar {
|
2019-04-15 19:23:07 -04:00
|
|
|
.confirmation-modal__secondary-button {
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
2017-04-22 22:39:50 -04:00
|
|
|
}
|
|
|
|
|
2019-09-29 15:46:05 -04:00
|
|
|
.confirmation-modal__secondary-button,
|
|
|
|
.confirmation-modal__cancel-button,
|
|
|
|
.mute-modal__cancel-button,
|
|
|
|
.block-modal__cancel-button {
|
|
|
|
background-color: transparent;
|
|
|
|
color: $lighter-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: darken($lighter-text-color, 4%);
|
2019-10-02 21:17:29 -04:00
|
|
|
background-color: transparent;
|
2019-09-29 15:46:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 12:07:21 -04:00
|
|
|
.confirmation-modal__container,
|
2017-11-14 21:56:41 -05:00
|
|
|
.mute-modal__container,
|
2019-09-29 15:46:05 -04:00
|
|
|
.block-modal__container,
|
2017-06-27 12:07:21 -04:00
|
|
|
.report-modal__target {
|
2017-04-22 22:39:50 -04:00
|
|
|
padding: 30px;
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2017-12-07 10:01:52 -05:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:39:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-29 15:46:05 -04:00
|
|
|
.confirmation-modal__container,
|
|
|
|
.report-modal__target {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block-modal,
|
|
|
|
.mute-modal {
|
|
|
|
&__explanation {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting-toggle {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
margin: 0;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 00:54:55 -05:00
|
|
|
.report-modal__target {
|
2019-08-15 16:49:00 -04:00
|
|
|
padding: 15px;
|
2018-03-01 22:36:00 -05:00
|
|
|
|
|
|
|
.media-modal__close {
|
2019-08-15 16:49:00 -04:00
|
|
|
top: 14px;
|
2018-03-01 22:36:00 -05:00
|
|
|
right: 15px;
|
|
|
|
}
|
2018-02-28 00:54:55 -05:00
|
|
|
}
|
|
|
|
|
2017-04-15 07:17:54 -04:00
|
|
|
.loading-bar {
|
2018-04-18 10:52:15 -04:00
|
|
|
background-color: $highlight-text-color;
|
2017-04-15 07:17:54 -04:00
|
|
|
height: 3px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2019-08-18 08:57:05 -04:00
|
|
|
z-index: 9999;
|
2017-04-15 07:17:54 -04:00
|
|
|
}
|
2017-04-17 19:57:50 -04:00
|
|
|
|
|
|
|
.media-gallery__gifv__label {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
2017-04-17 19:57:50 -04:00
|
|
|
bottom: 6px;
|
|
|
|
left: 6px;
|
|
|
|
padding: 2px 6px;
|
|
|
|
border-radius: 2px;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: 600;
|
|
|
|
z-index: 1;
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0.9;
|
|
|
|
transition: opacity 0.1s ease;
|
2019-05-02 02:34:32 -04:00
|
|
|
line-height: 18px;
|
2017-04-17 19:57:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__gifv {
|
|
|
|
&:hover {
|
|
|
|
.media-gallery__gifv__label {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-19 09:37:18 -04:00
|
|
|
|
|
|
|
.attachment-list {
|
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
2017-05-08 09:57:49 -04:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2017-04-19 09:37:18 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
margin-top: 14px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2018-03-07 22:54:26 -05:00
|
|
|
&__icon {
|
|
|
|
flex: 0 0 auto;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2018-03-07 22:54:26 -05:00
|
|
|
padding: 8px 18px;
|
|
|
|
cursor: default;
|
|
|
|
border-right: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 26px;
|
2017-04-19 09:37:18 -04:00
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-03-07 22:54:26 -05:00
|
|
|
display: block;
|
|
|
|
}
|
2017-04-19 09:37:18 -04:00
|
|
|
}
|
|
|
|
|
2018-03-07 22:54:26 -05:00
|
|
|
&__list {
|
|
|
|
list-style: none;
|
2017-04-19 09:37:18 -04:00
|
|
|
padding: 4px 0;
|
2018-03-07 22:54:26 -05:00
|
|
|
padding-left: 8px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2018-03-07 22:54:26 -05:00
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2017-04-19 09:37:18 -04:00
|
|
|
}
|
|
|
|
|
2018-03-07 22:54:26 -05:00
|
|
|
&.compact {
|
|
|
|
border: 0;
|
|
|
|
margin-top: 4px;
|
2017-04-19 09:37:18 -04:00
|
|
|
|
2018-03-07 22:54:26 -05:00
|
|
|
.attachment-list__list {
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-04-19 09:37:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
|
|
|
|
/* Media Gallery */
|
|
|
|
.media-gallery {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-top: 8px;
|
|
|
|
overflow: hidden;
|
2018-02-18 20:39:18 -05:00
|
|
|
border-radius: 4px;
|
2017-04-22 22:26:55 -04:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2020-06-23 11:24:29 -04:00
|
|
|
min-height: 64px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item {
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2017-04-22 22:26:55 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
2018-02-18 20:39:18 -05:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
2017-09-23 23:58:30 -04:00
|
|
|
|
|
|
|
&.standalone {
|
|
|
|
.media-gallery__item-gifv-thumbnail {
|
|
|
|
transform: none;
|
2018-02-28 20:48:44 -05:00
|
|
|
top: 0;
|
2017-09-23 23:58:30 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail {
|
|
|
|
cursor: zoom-in;
|
2017-06-30 07:40:00 -04:00
|
|
|
display: block;
|
2017-04-22 22:26:55 -04:00
|
|
|
text-decoration: none;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2019-04-26 21:24:09 -04:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2017-06-27 07:46:37 -04:00
|
|
|
|
|
|
|
&,
|
|
|
|
img {
|
2018-03-11 10:12:33 -04:00
|
|
|
height: 100%;
|
2017-06-27 07:46:37 -04:00
|
|
|
width: 100%;
|
2018-02-21 18:35:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2017-06-30 07:40:00 -04:00
|
|
|
object-fit: cover;
|
2017-06-27 07:46:37 -04:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2019-04-26 21:24:09 -04:00
|
|
|
.media-gallery__preview {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 0;
|
|
|
|
background: $base-overlay-background;
|
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.media-gallery__gifv {
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-gifv-thumbnail {
|
|
|
|
cursor: zoom-in;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
position: relative;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
width: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail-label {
|
|
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
/* End Media Gallery */
|
|
|
|
|
2018-11-27 06:25:38 -05:00
|
|
|
.detailed,
|
|
|
|
.fullscreen {
|
|
|
|
.video-player__volume__current,
|
|
|
|
.video-player__volume::before {
|
|
|
|
bottom: 27px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-player__volume__handle {
|
|
|
|
bottom: 23px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-08-23 16:38:02 -04:00
|
|
|
.audio-player {
|
2020-06-20 20:27:19 -04:00
|
|
|
overflow: hidden;
|
2019-08-23 16:38:02 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding-bottom: 44px;
|
2019-10-02 21:17:41 -04:00
|
|
|
direction: ltr;
|
2019-08-23 16:38:02 -04:00
|
|
|
|
|
|
|
&.editable {
|
|
|
|
border-radius: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-06-23 06:20:14 -04:00
|
|
|
.video-player__volume::before,
|
|
|
|
.video-player__seek::before {
|
|
|
|
background: rgba($white, 0.15);
|
|
|
|
}
|
|
|
|
|
2020-06-20 20:27:19 -04:00
|
|
|
&.with-light-background {
|
2020-06-23 06:20:14 -04:00
|
|
|
color: $black;
|
|
|
|
|
|
|
|
.video-player__volume::before,
|
2020-06-20 20:27:19 -04:00
|
|
|
.video-player__seek::before {
|
2020-06-23 06:20:14 -04:00
|
|
|
background: rgba($black, 0.15);
|
2020-06-20 20:27:19 -04:00
|
|
|
}
|
2019-08-25 09:09:19 -04:00
|
|
|
|
2020-06-23 06:20:14 -04:00
|
|
|
.video-player__seek__buffer {
|
|
|
|
background: rgba($black, 0.2);
|
2020-06-20 20:27:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.video-player__buttons button {
|
|
|
|
color: rgba($black, 0.75);
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-player__time-sep,
|
|
|
|
.video-player__time-total,
|
|
|
|
.video-player__time-current {
|
|
|
|
color: $black;
|
|
|
|
}
|
2019-08-23 16:38:02 -04:00
|
|
|
}
|
|
|
|
|
2020-06-20 20:27:19 -04:00
|
|
|
.video-player__seek::before,
|
|
|
|
.video-player__seek__buffer,
|
|
|
|
.video-player__seek__progress {
|
|
|
|
top: 0;
|
2019-08-23 16:38:02 -04:00
|
|
|
}
|
|
|
|
|
2020-06-20 20:27:19 -04:00
|
|
|
.video-player__seek__handle {
|
|
|
|
top: -4px;
|
2019-08-23 16:38:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.video-player__controls {
|
|
|
|
padding: 0 15px;
|
|
|
|
padding-top: 10px;
|
2020-06-20 20:27:19 -04:00
|
|
|
background: transparent;
|
2019-08-23 16:38:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-13 21:39:10 -04:00
|
|
|
.video-player {
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
background: $base-shadow-color;
|
2017-09-13 22:03:00 -04:00
|
|
|
max-width: 100%;
|
2017-12-08 18:55:58 -05:00
|
|
|
border-radius: 4px;
|
2019-08-23 16:38:02 -04:00
|
|
|
box-sizing: border-box;
|
2019-10-02 21:17:41 -04:00
|
|
|
direction: ltr;
|
2020-06-23 06:20:14 -04:00
|
|
|
color: $white;
|
2017-09-13 21:39:10 -04:00
|
|
|
|
2019-08-13 22:07:32 -04:00
|
|
|
&.editable {
|
|
|
|
border-radius: 0;
|
2019-08-23 16:38:02 -04:00
|
|
|
height: 100% !important;
|
2019-08-13 22:07:32 -04:00
|
|
|
}
|
|
|
|
|
2018-05-13 07:48:14 -04:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2017-09-13 21:39:10 -04:00
|
|
|
video {
|
2020-06-20 07:30:27 -04:00
|
|
|
display: block;
|
2018-03-27 06:30:28 -04:00
|
|
|
max-width: 100vw;
|
|
|
|
max-height: 80vh;
|
2017-09-13 21:39:10 -04:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.fullscreen {
|
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
video {
|
|
|
|
max-width: 100% !important;
|
|
|
|
max-height: 100% !important;
|
2018-04-23 14:12:16 -04:00
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
2019-10-24 16:47:37 -04:00
|
|
|
outline: 0;
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inline {
|
|
|
|
video {
|
2018-03-02 01:00:04 -05:00
|
|
|
object-fit: contain;
|
2017-09-13 21:39:10 -04:00
|
|
|
position: relative;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__controls {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
box-sizing: border-box;
|
2017-12-08 18:55:58 -05:00
|
|
|
background: linear-gradient(0deg, rgba($base-shadow-color, 0.85) 0, rgba($base-shadow-color, 0.45) 60%, transparent);
|
|
|
|
padding: 0 15px;
|
2017-09-13 21:39:10 -04:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .1s ease;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inactive {
|
|
|
|
video,
|
|
|
|
.video-player__controls {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__spoiler {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 4;
|
|
|
|
border: 0;
|
2018-06-10 10:54:22 -04:00
|
|
|
background: $base-overlay-background;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-09-13 21:39:10 -04:00
|
|
|
transition: none;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
display: block;
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: lighten($darker-text-color, 7%);
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__subtitle {
|
|
|
|
display: block;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 18:55:58 -05:00
|
|
|
&__buttons-bar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2017-09-13 21:39:10 -04:00
|
|
|
padding-bottom: 10px;
|
2019-10-25 05:48:20 -04:00
|
|
|
|
|
|
|
.video-player__download__icon {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2017-12-08 18:55:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
2020-06-23 06:20:14 -04:00
|
|
|
display: flex;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
min-width: 30px;
|
|
|
|
align-items: center;
|
2017-09-13 21:39:10 -04:00
|
|
|
font-size: 16px;
|
2017-12-08 18:55:58 -05:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-09-13 21:39:10 -04:00
|
|
|
|
|
|
|
&.left {
|
|
|
|
button {
|
2017-12-08 18:55:58 -05:00
|
|
|
padding-left: 0;
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
button {
|
2017-12-08 18:55:58 -05:00
|
|
|
padding-right: 0;
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2020-06-23 06:20:14 -04:00
|
|
|
flex: 0 0 auto;
|
2017-09-13 21:39:10 -04:00
|
|
|
background: transparent;
|
2017-12-08 18:55:58 -05:00
|
|
|
padding: 2px 10px;
|
|
|
|
font-size: 16px;
|
2017-09-13 21:39:10 -04:00
|
|
|
border: 0;
|
2017-12-08 18:55:58 -05:00
|
|
|
color: rgba($white, 0.75);
|
2017-09-13 21:39:10 -04:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2017-12-08 18:55:58 -05:00
|
|
|
color: $white;
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 06:20:14 -04:00
|
|
|
&__time {
|
|
|
|
display: inline;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2017-12-08 18:55:58 -05:00
|
|
|
&__time-sep,
|
|
|
|
&__time-total,
|
|
|
|
&__time-current {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-current {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-sep {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-sep,
|
|
|
|
&__time-total {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
2018-11-27 06:25:38 -05:00
|
|
|
&__volume {
|
2020-06-23 06:20:14 -04:00
|
|
|
flex: 0 0 auto;
|
|
|
|
display: inline-flex;
|
2018-11-27 06:25:38 -05:00
|
|
|
cursor: pointer;
|
|
|
|
height: 24px;
|
2020-06-23 06:20:14 -04:00
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: all 100ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
overflow: visible;
|
|
|
|
width: 50px;
|
2020-06-24 04:25:32 -04:00
|
|
|
margin-right: 16px;
|
2020-06-23 06:20:14 -04:00
|
|
|
}
|
2018-11-27 06:25:38 -05:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
width: 50px;
|
|
|
|
background: rgba($white, 0.35);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
2020-06-23 06:20:14 -04:00
|
|
|
left: 0;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2018-11-27 06:25:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__current {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
|
|
|
border-radius: 4px;
|
2020-06-23 06:20:14 -04:00
|
|
|
left: 0;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2018-11-27 06:25:38 -05:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__handle {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2020-06-23 06:20:14 -04:00
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
margin-left: -6px;
|
|
|
|
transform: translate(0, -50%);
|
2018-11-27 06:25:38 -05:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
|
|
|
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
|
2020-06-24 04:25:32 -04:00
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: opacity 100ms linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active &__handle {
|
|
|
|
opacity: 1;
|
2018-11-27 06:25:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-03 10:16:30 -04:00
|
|
|
&__link {
|
|
|
|
padding: 2px 10px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $white;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-13 21:39:10 -04:00
|
|
|
&__seek {
|
|
|
|
cursor: pointer;
|
|
|
|
height: 24px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
width: 100%;
|
|
|
|
background: rgba($white, 0.35);
|
2017-12-08 18:55:58 -05:00
|
|
|
border-radius: 4px;
|
2017-09-13 21:39:10 -04:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-10-07 20:33:08 -04:00
|
|
|
&__progress,
|
|
|
|
&__buffer {
|
2017-09-13 21:39:10 -04:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
2017-12-08 18:55:58 -05:00
|
|
|
border-radius: 4px;
|
2017-09-13 21:39:10 -04:00
|
|
|
top: 10px;
|
2017-12-08 18:55:58 -05:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
|
2017-10-07 20:33:08 -04:00
|
|
|
&__buffer {
|
|
|
|
background: rgba($white, 0.2);
|
|
|
|
}
|
|
|
|
|
2017-09-13 21:39:10 -04:00
|
|
|
&__handle {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
opacity: 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
top: 6px;
|
|
|
|
margin-left: -6px;
|
2017-12-08 18:55:58 -05:00
|
|
|
background: lighten($ui-highlight-color, 8%);
|
|
|
|
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
|
2020-06-24 04:25:32 -04:00
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: opacity .1s ease;
|
|
|
|
}
|
2017-09-13 21:39:10 -04:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.video-player__seek__handle {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-08 18:55:58 -05:00
|
|
|
|
|
|
|
&.detailed,
|
|
|
|
&.fullscreen {
|
|
|
|
.video-player__buttons {
|
|
|
|
button {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
|
2020-04-23 09:49:33 -04:00
|
|
|
.gifv {
|
|
|
|
video {
|
|
|
|
max-width: 100vw;
|
|
|
|
max-height: 80vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-29 18:14:36 -04:00
|
|
|
.directory {
|
|
|
|
&__list {
|
|
|
|
width: 100%;
|
|
|
|
margin: 10px 0;
|
|
|
|
transition: opacity 100ms ease-in;
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2019-08-29 18:14:36 -04:00
|
|
|
&.loading {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__card {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&__img {
|
|
|
|
height: 125px;
|
|
|
|
position: relative;
|
|
|
|
background: darken($ui-base-color, 12%);
|
2019-08-30 01:41:16 -04:00
|
|
|
overflow: hidden;
|
2019-08-29 18:14:36 -04:00
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bar {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
2019-08-30 01:41:16 -04:00
|
|
|
overflow: hidden;
|
2019-08-29 18:14:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__relationship {
|
|
|
|
width: 23px;
|
|
|
|
min-height: 1px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
padding-top: 2px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
margin-left: 15px;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 15px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__extra {
|
|
|
|
background: $ui-base-color;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.accounts-table__count {
|
|
|
|
width: 33.33%;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 15px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__header__content {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 15px 10px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
width: 100%;
|
2019-08-30 01:41:16 -04:00
|
|
|
min-height: 18px + 30px;
|
2019-08-29 18:14:36 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
p {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
2019-08-30 01:41:16 -04:00
|
|
|
|
|
|
|
br {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-08-29 18:14:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
2017-05-19 19:28:25 -04:00
|
|
|
|
|
|
|
.account-gallery__container {
|
2017-09-23 18:33:26 -04:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2019-05-02 02:34:32 -04:00
|
|
|
padding: 4px 2px;
|
2017-05-19 19:28:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-gallery__item {
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2019-05-02 02:34:32 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
2018-02-28 20:48:44 -05:00
|
|
|
position: relative;
|
2019-05-02 02:34:32 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 2px;
|
2019-05-08 12:01:33 -04:00
|
|
|
|
|
|
|
&__icons {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
2017-05-19 19:28:25 -04:00
|
|
|
}
|
|
|
|
|
2018-12-17 15:08:40 -05:00
|
|
|
.notification__filter-bar,
|
2018-02-28 20:48:44 -05:00
|
|
|
.account__section-headline {
|
2018-03-01 22:35:49 -05:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2017-05-19 19:28:25 -04:00
|
|
|
cursor: default;
|
2018-02-28 20:48:44 -05:00
|
|
|
display: flex;
|
2018-12-18 16:28:09 -05:00
|
|
|
flex-shrink: 0;
|
2017-05-19 19:28:25 -04:00
|
|
|
|
2018-12-17 15:08:40 -05:00
|
|
|
button {
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border: 0;
|
2018-12-18 16:28:09 -05:00
|
|
|
margin: 0;
|
2018-12-17 15:08:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
2018-02-28 20:48:44 -05:00
|
|
|
a {
|
2017-05-19 19:28:25 -04:00
|
|
|
display: block;
|
2018-03-01 22:35:49 -05:00
|
|
|
flex: 1 1 auto;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2018-03-01 22:35:49 -05:00
|
|
|
padding: 15px 0;
|
2018-02-28 20:48:44 -05:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2018-03-01 22:35:49 -05:00
|
|
|
text-align: center;
|
2018-02-28 20:48:44 -05:00
|
|
|
text-decoration: none;
|
|
|
|
position: relative;
|
2020-01-24 14:50:49 -05:00
|
|
|
width: 100%;
|
2020-01-27 20:21:18 -05:00
|
|
|
white-space: nowrap;
|
2017-05-19 19:28:25 -04:00
|
|
|
|
2018-02-28 20:48:44 -05:00
|
|
|
&.active {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2018-02-28 20:48:44 -05:00
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 10px 10px;
|
2018-03-01 22:35:49 -05:00
|
|
|
border-color: transparent transparent lighten($ui-base-color, 8%);
|
2018-02-28 20:48:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
bottom: -1px;
|
|
|
|
border-color: transparent transparent $ui-base-color;
|
|
|
|
}
|
|
|
|
}
|
2017-05-19 19:28:25 -04:00
|
|
|
}
|
2019-08-29 18:14:36 -04:00
|
|
|
|
|
|
|
&.directory__section-headline {
|
|
|
|
background: darken($ui-base-color, 2%);
|
|
|
|
border-bottom-color: transparent;
|
|
|
|
|
|
|
|
a,
|
|
|
|
button {
|
|
|
|
&.active {
|
|
|
|
&::before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
border-color: transparent transparent darken($ui-base-color, 7%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-form {
|
|
|
|
background: $ui-base-color;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
padding: 10px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-button {
|
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 0;
|
|
|
|
line-height: 18px;
|
|
|
|
cursor: default;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
input[type=radio],
|
|
|
|
input[type=checkbox] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
|
|
|
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: 50%;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&.checked {
|
|
|
|
border-color: lighten($ui-highlight-color, 8%);
|
|
|
|
background: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
2017-05-19 19:28:25 -04:00
|
|
|
}
|
2017-06-07 18:52:56 -04:00
|
|
|
|
2017-07-19 18:20:54 -04:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2017-10-02 12:24:05 -04:00
|
|
|
.search-popout {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include search-popout;
|
2017-10-02 12:24:05 -04:00
|
|
|
}
|
|
|
|
|
2017-06-07 18:52:56 -04:00
|
|
|
noscript {
|
|
|
|
text-align: center;
|
|
|
|
|
2017-07-23 14:28:06 -04:00
|
|
|
img {
|
|
|
|
width: 200px;
|
|
|
|
opacity: 0.5;
|
|
|
|
animation: flicker 4s infinite;
|
|
|
|
}
|
|
|
|
|
2017-06-07 18:52:56 -04:00
|
|
|
div {
|
2017-07-23 14:28:06 -04:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 30px auto;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-07-23 14:28:06 -04:00
|
|
|
max-width: 400px;
|
2017-09-02 08:02:15 -04:00
|
|
|
|
|
|
|
a {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2017-09-02 08:02:15 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2017-06-07 18:52:56 -04:00
|
|
|
}
|
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
|
2017-07-23 14:28:06 -04:00
|
|
|
@keyframes flicker {
|
|
|
|
0% { opacity: 1; }
|
|
|
|
30% { opacity: 0.75; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
|
2017-09-23 19:25:07 -04:00
|
|
|
@media screen and (max-width: 630px) and (max-height: 400px) {
|
2017-07-20 19:38:24 -04:00
|
|
|
$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 {
|
2018-06-17 07:47:56 -04:00
|
|
|
will-change: margin-top, margin-left, margin-right, width;
|
|
|
|
transition: margin-top $duration $delay, margin-left $duration ($duration + $delay), margin-right $duration ($duration + $delay);
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
& > .navigation-bar__profile-edit {
|
|
|
|
will-change: margin-top;
|
|
|
|
transition: margin-top $duration $delay;
|
|
|
|
}
|
|
|
|
|
2018-06-13 08:44:50 -04:00
|
|
|
.navigation-bar__actions {
|
|
|
|
& > .icon-button.close {
|
|
|
|
will-change: opacity transform;
|
|
|
|
transition: opacity $duration * 0.5 $delay,
|
|
|
|
transform $duration $delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .compose__action-bar .icon-button {
|
|
|
|
will-change: opacity transform;
|
|
|
|
transition: opacity $duration * 0.5 $delay + $duration * 0.5,
|
|
|
|
transform $duration $delay;
|
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-composing {
|
|
|
|
.tabs-bar,
|
|
|
|
.search {
|
|
|
|
margin-top: -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar {
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
& > a:first-child {
|
2018-06-17 07:47:56 -04:00
|
|
|
margin: -100px 10px 0 -50px;
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile {
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile-edit {
|
|
|
|
position: absolute;
|
2018-06-17 07:47:56 -04:00
|
|
|
margin-top: -60px;
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
|
|
|
|
2018-06-13 08:44:50 -04:00
|
|
|
.navigation-bar__actions {
|
|
|
|
.icon-button.close {
|
|
|
|
pointer-events: auto;
|
|
|
|
opacity: 1;
|
2019-06-06 12:51:46 -04:00
|
|
|
transform: scale(1, 1) translate(0, 0);
|
2018-06-17 07:47:56 -04:00
|
|
|
bottom: 5px;
|
2018-06-13 08:44:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose__action-bar .icon-button {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
2019-06-06 12:51:46 -04:00
|
|
|
transform: scale(0, 1) translate(100%, 0);
|
2018-06-13 08:44:50 -04:00
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-30 21:38:35 -04:00
|
|
|
|
|
|
|
.embed-modal {
|
2019-10-02 21:17:29 -04:00
|
|
|
width: auto;
|
2017-09-05 06:31:24 -04:00
|
|
|
max-width: 80vw;
|
|
|
|
max-height: 80vh;
|
|
|
|
|
2017-08-30 21:38:35 -04:00
|
|
|
h4 {
|
|
|
|
padding: 30px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-09-05 06:31:24 -04:00
|
|
|
.embed-modal__container {
|
|
|
|
padding: 10px;
|
2017-08-30 21:38:35 -04:00
|
|
|
|
2017-09-05 06:31:24 -04:00
|
|
|
.hint {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2017-08-30 21:38:35 -04:00
|
|
|
|
2017-09-05 06:31:24 -04:00
|
|
|
.embed-modal__html {
|
|
|
|
outline: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2017-09-05 06:31:24 -04:00
|
|
|
padding: 10px;
|
2018-09-23 14:41:24 -04:00
|
|
|
font-family: $font-monospace, monospace;
|
2017-09-05 06:31:24 -04:00
|
|
|
background: $ui-base-color;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $primary-text-color;
|
2017-09-05 06:31:24 -04:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 15px;
|
2019-10-02 21:17:29 -04:00
|
|
|
border-radius: 4px;
|
2017-09-05 06:31:24 -04:00
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.embed-modal__iframe {
|
|
|
|
width: 400px;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
border: 0;
|
2019-10-02 21:17:29 -04:00
|
|
|
border-radius: 4px;
|
2017-09-05 06:31:24 -04:00
|
|
|
}
|
|
|
|
}
|
2017-08-30 21:38:35 -04:00
|
|
|
}
|
2017-11-18 13:39:02 -05:00
|
|
|
|
|
|
|
.account__moved-note {
|
|
|
|
padding: 14px 10px;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
position: relative;
|
|
|
|
margin-left: 58px;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-11-18 13:39:02 -05:00
|
|
|
padding: 8px 0;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon-wrapper {
|
|
|
|
left: -26px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-avatar {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-name {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-12-05 17:02:27 -05:00
|
|
|
|
|
|
|
.column-inline-form {
|
2019-06-08 04:23:41 -04:00
|
|
|
padding: 15px;
|
|
|
|
padding-right: 0;
|
2017-12-05 17:02:27 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
label {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
2017-12-06 06:18:10 -05:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2017-12-05 17:02:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
flex: 0 0 auto;
|
2019-06-08 04:23:41 -04:00
|
|
|
margin: 0 10px;
|
2017-12-05 17:02:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__backdrop {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-editor {
|
|
|
|
background: $ui-base-color;
|
|
|
|
flex-direction: column;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
2017-12-06 13:48:48 -05:00
|
|
|
width: 380px;
|
2017-12-05 17:02:27 -05:00
|
|
|
overflow: hidden;
|
|
|
|
|
2017-12-06 13:48:48 -05:00
|
|
|
@media screen and (max-width: 420px) {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2017-12-05 17:02:27 -05:00
|
|
|
h4 {
|
|
|
|
padding: 15px 0;
|
|
|
|
background: lighten($ui-base-color, 13%);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 8px 8px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__pager {
|
|
|
|
height: 50vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__inner {
|
|
|
|
border-radius: 0 0 8px 8px;
|
|
|
|
|
|
|
|
&.backdrop {
|
|
|
|
width: calc(100% - 60px);
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
border-radius: 0 0 0 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__accounts {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__display-name {
|
|
|
|
&:hover strong {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-02-21 18:35:46 -05:00
|
|
|
|
2018-11-05 12:52:38 -05:00
|
|
|
.list-adder {
|
|
|
|
background: $ui-base-color;
|
|
|
|
flex-direction: column;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
width: 380px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
@media screen and (max-width: 420px) {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__account {
|
|
|
|
background: lighten($ui-base-color, 13%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__lists {
|
|
|
|
background: lighten($ui-base-color, 13%);
|
|
|
|
height: 50vh;
|
|
|
|
border-radius: 0 0 8px 8px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
padding: 10px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.list__wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list__display-name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-21 18:35:46 -05:00
|
|
|
.focal-point {
|
|
|
|
position: relative;
|
2019-08-13 22:07:32 -04:00
|
|
|
cursor: move;
|
2018-02-21 18:35:46 -05:00
|
|
|
overflow: hidden;
|
2019-08-15 14:28:56 -04:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background: $base-shadow-color;
|
2018-02-21 18:35:46 -05:00
|
|
|
|
2019-08-13 22:07:32 -04:00
|
|
|
img,
|
2019-10-09 23:21:38 -04:00
|
|
|
video,
|
|
|
|
canvas {
|
2019-08-13 22:07:32 -04:00
|
|
|
display: block;
|
2018-03-11 10:12:33 -04:00
|
|
|
max-height: 80vh;
|
2019-08-13 22:07:32 -04:00
|
|
|
width: 100%;
|
2018-03-11 10:12:33 -04:00
|
|
|
height: auto;
|
2019-08-13 22:07:32 -04:00
|
|
|
margin: 0;
|
|
|
|
object-fit: contain;
|
|
|
|
background: $base-shadow-color;
|
2018-03-11 10:12:33 -04:00
|
|
|
}
|
|
|
|
|
2018-02-21 18:35:46 -05:00
|
|
|
&__reticle {
|
|
|
|
position: absolute;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
background: url('../images/reticle.png') no-repeat 0 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-shadow: 0 0 0 9999em rgba($base-shadow-color, 0.35);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__overlay {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2019-08-13 22:07:32 -04:00
|
|
|
|
|
|
|
&__preview {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
right: 10px;
|
|
|
|
z-index: 2;
|
2019-08-15 16:47:51 -04:00
|
|
|
cursor: move;
|
|
|
|
transition: opacity 0.1s ease;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2019-08-13 22:07:32 -04:00
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 0 14px rgba($base-shadow-color, 0.2);
|
|
|
|
}
|
|
|
|
}
|
2019-08-15 14:28:56 -04:00
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
img,
|
|
|
|
video {
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__preview {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-02-21 18:35:46 -05:00
|
|
|
}
|
2018-03-02 01:12:40 -05:00
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
.account__header__content {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: normal;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2018-05-07 03:31:07 -04:00
|
|
|
}
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
.account__header {
|
2018-04-14 06:41:08 -04:00
|
|
|
overflow: hidden;
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
&.inactive {
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
.account__header__image,
|
|
|
|
.account__avatar {
|
|
|
|
filter: grayscale(100%);
|
|
|
|
}
|
2018-04-14 06:41:08 -04:00
|
|
|
}
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
&__info {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
2018-04-14 06:41:08 -04:00
|
|
|
}
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
&__image {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 145px;
|
|
|
|
position: relative;
|
2018-04-14 06:41:08 -04:00
|
|
|
background: darken($ui-base-color, 4%);
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
img {
|
|
|
|
object-fit: cover;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-04-14 06:41:08 -04:00
|
|
|
}
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
&__bar {
|
|
|
|
position: relative;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 5px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
flex: 0 0 auto;
|
2019-03-26 18:05:21 -04:00
|
|
|
width: 94px;
|
2019-03-25 19:36:25 -04:00
|
|
|
margin-left: -2px;
|
2018-09-18 10:45:58 -04:00
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
.account__avatar {
|
2019-03-29 20:13:19 -04:00
|
|
|
background: darken($ui-base-color, 8%);
|
2019-03-25 19:36:25 -04:00
|
|
|
border: 2px solid lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__tabs {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 7px 5px;
|
|
|
|
margin-top: -55px;
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding-top: 55px;
|
2019-03-26 18:05:21 -04:00
|
|
|
overflow: hidden;
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
border: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: content-box;
|
|
|
|
padding: 2px;
|
2019-03-26 18:05:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2019-03-25 19:36:25 -04:00
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
.account-role {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bio {
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0 -5px;
|
|
|
|
|
|
|
|
.account__header__content {
|
|
|
|
padding: 20px 15px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__header__fields {
|
|
|
|
margin: 0;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
dl:first-child .verified {
|
|
|
|
border-radius: 0 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.verified a {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__extra {
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
&__links {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
2019-12-29 10:59:25 -05:00
|
|
|
padding: 10px 0;
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
2019-12-29 10:59:25 -05:00
|
|
|
padding: 5px 10px;
|
2019-03-25 19:36:25 -04:00
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2018-09-18 10:45:58 -04:00
|
|
|
}
|
2018-04-14 06:41:08 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-27 15:45:30 -04:00
|
|
|
|
|
|
|
.trends {
|
|
|
|
&__header {
|
|
|
|
color: $dark-text-color;
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
border-bottom: 1px solid darken($ui-base-color, 4%);
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 15px;
|
|
|
|
font-size: 16px;
|
|
|
|
cursor: default;
|
|
|
|
|
2018-09-27 20:11:14 -04:00
|
|
|
.fa {
|
2018-05-27 15:45:30 -04:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 15px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
color: $dark-text-color;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
display: block;
|
2018-05-28 13:12:53 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-05-27 15:45:30 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__current {
|
2018-05-28 13:12:53 -04:00
|
|
|
flex: 0 0 auto;
|
2018-05-27 15:45:30 -04:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 36px;
|
|
|
|
font-weight: 500;
|
2019-08-06 11:57:52 -04:00
|
|
|
text-align: right;
|
|
|
|
padding-right: 15px;
|
2019-08-15 14:20:02 -04:00
|
|
|
margin-left: 5px;
|
2018-05-27 15:45:30 -04:00
|
|
|
color: $secondary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__sparkline {
|
2018-05-28 13:12:53 -04:00
|
|
|
flex: 0 0 auto;
|
2018-05-27 15:45:30 -04:00
|
|
|
width: 50px;
|
|
|
|
|
2019-08-06 11:57:52 -04:00
|
|
|
path:first-child {
|
|
|
|
fill: rgba($highlight-text-color, 0.25) !important;
|
|
|
|
fill-opacity: 1 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
path:last-child {
|
2018-05-27 15:45:30 -04:00
|
|
|
stroke: lighten($highlight-text-color, 6%) !important;
|
2020-05-14 03:01:23 -04:00
|
|
|
fill: none !important;
|
2018-05-27 15:45:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-22 19:35:22 -04:00
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
.conversation {
|
2019-05-22 19:35:22 -04:00
|
|
|
display: flex;
|
2019-09-21 14:01:16 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2019-05-22 19:35:22 -04:00
|
|
|
padding: 5px;
|
2019-09-21 14:01:16 -04:00
|
|
|
padding-bottom: 0;
|
2019-05-22 19:35:22 -04:00
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
outline: 0;
|
|
|
|
}
|
2019-05-22 19:35:22 -04:00
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
&__avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 12px;
|
2019-12-01 01:06:20 -05:00
|
|
|
position: relative;
|
2020-03-31 13:40:23 -04:00
|
|
|
cursor: pointer;
|
2019-12-01 01:06:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__unread {
|
|
|
|
display: inline-block;
|
|
|
|
background: $highlight-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
margin: -.1ex .15em .1ex;
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 10px 5px;
|
|
|
|
padding-right: 15px;
|
2019-09-26 20:14:49 -04:00
|
|
|
overflow: hidden;
|
2019-05-22 19:35:22 -04:00
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
&__info {
|
|
|
|
overflow: hidden;
|
2019-09-26 20:14:49 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
justify-content: space-between;
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
&__relative-time {
|
|
|
|
font-size: 15px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding-left: 15px;
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
&__names {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin-bottom: 4px;
|
2019-09-30 11:12:33 -04:00
|
|
|
flex-basis: 90px;
|
|
|
|
flex-grow: 1;
|
2019-09-21 14:01:16 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-01 18:39:56 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
2019-12-01 01:06:20 -05:00
|
|
|
|
|
|
|
&--unread {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.conversation__content__info {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conversation__content__relative-time {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
2020-01-23 16:00:13 -05:00
|
|
|
|
|
|
|
.announcements {
|
2020-01-25 10:35:33 -05:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2020-01-23 16:00:13 -05:00
|
|
|
font-size: 13px;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
|
|
|
|
&__mastodon {
|
|
|
|
width: 124px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
@media screen and (max-width: 124px + 300px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
width: calc(100% - 124px);
|
|
|
|
flex: 0 0 auto;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
@media screen and (max-width: 124px + 300px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px;
|
|
|
|
position: relative;
|
2020-01-24 22:20:06 -05:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-weight: 400;
|
2020-03-06 09:20:14 -05:00
|
|
|
max-height: 50vh;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-01-23 16:00:13 -05:00
|
|
|
|
|
|
|
&__range {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
2020-03-06 09:20:14 -05:00
|
|
|
padding-right: 18px;
|
2020-01-23 16:00:13 -05:00
|
|
|
}
|
2020-02-02 19:53:09 -05:00
|
|
|
|
|
|
|
&__unread {
|
|
|
|
position: absolute;
|
2020-02-08 17:44:01 -05:00
|
|
|
top: 19px;
|
|
|
|
right: 19px;
|
|
|
|
display: block;
|
2020-02-02 19:53:09 -05:00
|
|
|
background: $highlight-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
}
|
2020-01-23 16:00:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__pagination {
|
|
|
|
padding: 15px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 3px;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-multiple-columns .announcements__mastodon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-multiple-columns .announcements__container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reactions-bar {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-left: -2px;
|
|
|
|
width: calc(100% - (90px - 33px));
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
flex-shrink: 0;
|
|
|
|
background: lighten($ui-base-color, 12%);
|
|
|
|
border: 0;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
padding: 0 6px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
|
|
|
|
&__emoji {
|
|
|
|
display: block;
|
|
|
|
margin: 3px 0;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
min-width: auto;
|
|
|
|
min-height: auto;
|
|
|
|
vertical-align: bottom;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__count {
|
|
|
|
display: block;
|
|
|
|
min-width: 9px;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
|
|
|
margin-left: 6px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 16%);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
|
|
|
|
&__count {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2020-01-24 23:23:05 -05:00
|
|
|
background-color: mix(lighten($ui-base-color, 12%), $ui-highlight-color, 80%);
|
2020-01-23 16:00:13 -05:00
|
|
|
|
|
|
|
.reactions-bar__item__count {
|
2020-01-24 23:23:05 -05:00
|
|
|
color: lighten($highlight-text-color, 8%);
|
2020-01-23 16:00:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-picker-dropdown {
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .emoji-button {
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-button {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 16px;
|
|
|
|
width: auto;
|
|
|
|
flex-shrink: 0;
|
|
|
|
padding: 0 6px;
|
|
|
|
height: 22px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
opacity: 1;
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--empty {
|
|
|
|
.emoji-button {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|