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;
|
|
|
|
}
|
|
|
|
|
2020-07-06 19:24:03 -04:00
|
|
|
.inline-alert {
|
|
|
|
color: $valid-value-color;
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: opacity 200ms ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-15 09:13:26 -04:00
|
|
|
.link-button {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
2022-10-25 12:47:21 -04:00
|
|
|
color: $highlight-text-color;
|
2019-08-15 09:13:26 -04:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
2022-10-22 05:44:41 -04:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&--destructive {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
2019-08-15 09:13:26 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
color: $ui-primary-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:58:10 -04:00
|
|
|
.button {
|
2023-07-03 05:32:31 -04:00
|
|
|
background-color: $ui-button-background-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;
|
2023-07-03 05:32:31 -04:00
|
|
|
color: $ui-button-color;
|
2017-04-22 22:26:55 -04:00
|
|
|
cursor: pointer;
|
2023-10-24 13:45:08 -04:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 6px;
|
2017-04-22 22:26:55 -04:00
|
|
|
font-family: inherit;
|
2022-03-07 05:38:52 -05:00
|
|
|
font-size: 15px;
|
2016-09-27 17:12:33 -04:00
|
|
|
font-weight: 500;
|
2017-04-22 22:26:55 -04:00
|
|
|
letter-spacing: 0;
|
2022-02-23 14:03:46 -05:00
|
|
|
line-height: 22px;
|
2017-04-22 22:26:55 -04:00
|
|
|
overflow: hidden;
|
2022-02-23 14:03:46 -05:00
|
|
|
padding: 7px 18px;
|
2017-04-22 22:26:55 -04:00
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2016-09-27 17:12:33 -04:00
|
|
|
text-decoration: none;
|
2017-04-22 22:26:55 -04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
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 {
|
2023-07-03 05:32:31 -04:00
|
|
|
background-color: $ui-button-focus-background-color;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:focus-visible {
|
2023-07-21 07:20:14 -04:00
|
|
|
outline: $ui-button-icon-focus-outline;
|
|
|
|
}
|
|
|
|
|
2018-08-18 21:28:43 -04:00
|
|
|
&--destructive {
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 05:32:31 -04:00
|
|
|
background-color: $ui-button-destructive-focus-background-color;
|
2018-08-18 21:28:43 -04:00
|
|
|
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
|
|
|
|
2022-10-22 17:18:32 -04:00
|
|
|
&.copyable {
|
|
|
|
transition: background 300ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
background: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2016-09-07 12:17:15 -04:00
|
|
|
&.button-secondary {
|
2023-07-03 05:32:31 -04:00
|
|
|
color: $ui-button-secondary-color;
|
2017-07-11 09:27:59 -04:00
|
|
|
background: transparent;
|
2022-02-23 14:03:46 -05:00
|
|
|
padding: 6px 17px;
|
2023-07-03 05:32:31 -04:00
|
|
|
border: 1px solid $ui-button-secondary-border-color;
|
2017-07-11 09:27:59 -04:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 05:32:31 -04:00
|
|
|
border-color: $ui-button-secondary-focus-background-color;
|
|
|
|
color: $ui-button-secondary-focus-color;
|
|
|
|
background-color: $ui-button-secondary-focus-background-color;
|
2022-09-28 22:39:33 -04:00
|
|
|
text-decoration: none;
|
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
|
|
|
|
2022-09-29 00:21:51 -04:00
|
|
|
&.button-tertiary {
|
|
|
|
background: transparent;
|
|
|
|
padding: 6px 17px;
|
2023-07-03 05:32:31 -04:00
|
|
|
color: $ui-button-tertiary-color;
|
|
|
|
border: 1px solid $ui-button-tertiary-border-color;
|
2022-09-29 00:21:51 -04:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 05:32:31 -04:00
|
|
|
background-color: $ui-button-tertiary-focus-background-color;
|
|
|
|
color: $ui-button-tertiary-focus-color;
|
2022-09-29 00:21:51 -04:00
|
|
|
border: 0;
|
|
|
|
padding: 7px 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2022-12-15 12:50:11 -05:00
|
|
|
|
|
|
|
&.button--confirmation {
|
|
|
|
color: $valid-value-color;
|
|
|
|
border-color: $valid-value-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $valid-value-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.button--destructive {
|
|
|
|
color: $error-value-color;
|
|
|
|
border-color: $error-value-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $error-value-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 00:21:51 -04:00
|
|
|
}
|
|
|
|
|
2017-05-19 05:42:54 -04:00
|
|
|
&.button--block {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
2017-05-19 05:42:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.column__wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
aspect-ratio: 1;
|
|
|
|
|
|
|
|
path {
|
|
|
|
fill: currentColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:58:10 -04:00
|
|
|
.icon-button {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: inline-flex;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $action-button-color;
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2023-10-24 13:45:08 -04:00
|
|
|
padding: 2px;
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-10-04 09:02:36 -04:00
|
|
|
text-decoration: none;
|
2023-10-24 13:45:08 -04:00
|
|
|
gap: 4px;
|
|
|
|
flex: 0 0 auto;
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2022-02-24 19:20:41 -05:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2023-07-23 11:55:13 -04:00
|
|
|
color: lighten($action-button-color, 7%);
|
|
|
|
background-color: rgba($action-button-color, 0.15);
|
2019-08-03 13:10:50 -04:00
|
|
|
}
|
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:focus-visible {
|
2023-07-21 07:20:14 -04:00
|
|
|
outline: $ui-button-icon-focus-outline;
|
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
|
|
|
|
2017-03-24 19:01:43 -04:00
|
|
|
&.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%);
|
2023-07-23 11:55:13 -04:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
2019-08-03 13:10:50 -04:00
|
|
|
}
|
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:focus-visible {
|
2023-07-21 07:20:14 -04:00
|
|
|
outline: $ui-button-icon-focus-outline;
|
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
|
|
|
}
|
2023-09-02 08:46:26 -04:00
|
|
|
}
|
2017-07-30 23:06:56 -04:00
|
|
|
|
2023-09-02 08:46:26 -04:00
|
|
|
&.active {
|
|
|
|
color: $highlight-text-color;
|
2017-03-24 19:01:43 -04:00
|
|
|
|
2023-09-02 08:46:26 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2023-07-23 11:55:13 -04:00
|
|
|
|
2023-09-02 08:46:26 -04:00
|
|
|
&.disabled {
|
|
|
|
color: lighten($highlight-text-color, 13%);
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-13 11:01:09 -04:00
|
|
|
|
|
|
|
&.overlayed {
|
|
|
|
box-sizing: content-box;
|
2023-07-24 07:47:28 -04:00
|
|
|
background: rgba($black, 0.65);
|
|
|
|
backdrop-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
|
|
|
color: rgba($white, 0.7);
|
2017-04-13 11:01:09 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px;
|
|
|
|
|
|
|
|
&:hover {
|
2023-07-24 07:47:28 -04:00
|
|
|
background: rgba($black, 0.9);
|
2017-04-13 11:01:09 -04:00
|
|
|
}
|
|
|
|
}
|
2020-09-28 07:29:43 -04:00
|
|
|
|
|
|
|
&__counter {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: block;
|
2022-10-28 06:46:41 -04:00
|
|
|
width: auto;
|
2020-09-28 07:29:43 -04:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2023-11-16 05:23:14 -05:00
|
|
|
|
|
|
|
&.copyable {
|
|
|
|
transition: all 300ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
border-color: $valid-value-color;
|
|
|
|
color: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
background-color: rgba($valid-value-color, 0.15);
|
|
|
|
}
|
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;
|
2023-09-25 06:59:37 -04:00
|
|
|
white-space: nowrap;
|
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%);
|
2023-07-23 11:55:13 -04:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
2019-08-03 13:10:50 -04:00
|
|
|
}
|
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:focus-visible {
|
2023-07-21 07:20:14 -04:00
|
|
|
outline: $ui-button-icon-focus-outline;
|
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;
|
2023-07-23 11:55:13 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
|
2023-01-11 15:58:46 -05:00
|
|
|
body > [data-popper-placement] {
|
|
|
|
z-index: 3;
|
2017-09-21 22:59:17 -04:00
|
|
|
}
|
|
|
|
|
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 {
|
2023-02-12 22:57:03 -05:00
|
|
|
content: '…';
|
2017-01-24 11:05:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.compose-form {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 15px;
|
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-10 11:59:57 -04:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2023-02-12 22:57:03 -05:00
|
|
|
input[type='checkbox'] {
|
2023-02-20 05:32:27 -05:00
|
|
|
appearance: none;
|
2019-05-10 11:59:57 -04:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid $ui-primary-color;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
flex: 0 0 auto;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2019-05-10 11:59:57 -04:00
|
|
|
top: -1px;
|
|
|
|
border-radius: 4px;
|
|
|
|
vertical-align: middle;
|
2023-02-20 05:32:27 -05:00
|
|
|
cursor: inherit;
|
2019-05-10 11:59:57 -04:00
|
|
|
|
2023-02-20 05:32:27 -05:00
|
|
|
&:checked {
|
2019-05-10 11:59:57 -04:00
|
|
|
border-color: $highlight-text-color;
|
2023-02-12 22:57:03 -05:00
|
|
|
background: $highlight-text-color
|
|
|
|
url("data:image/svg+xml;utf8,<svg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4.5 8.5L8 12l6-6' stroke='white' stroke-width='1.5'/></svg>")
|
|
|
|
center center no-repeat;
|
2019-05-10 11:59:57 -04:00
|
|
|
}
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 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;
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 600px) {
|
2017-12-13 11:37:23 -05:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-right: 10px + 22px; // Cannot use inline-end because of dir=auto
|
2017-12-13 11:37:23 -05:00
|
|
|
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
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 600px) {
|
2023-03-27 04:56:25 -04:00
|
|
|
height: 100px !important; // Prevent auto-resize textarea
|
2017-12-13 11:37:23 -05:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
text-align: end;
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 8px;
|
2017-12-13 11:37:23 -05:00
|
|
|
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 {
|
2023-02-12 22:57:03 -05:00
|
|
|
background: linear-gradient(
|
|
|
|
180deg,
|
|
|
|
rgba($base-shadow-color, 0.8) 0,
|
|
|
|
rgba($base-shadow-color, 0.35) 80%,
|
|
|
|
transparent
|
|
|
|
);
|
2018-02-21 18:35:46 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
2022-03-22 04:48:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
2018-02-21 18:35:46 -05:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
|
2022-03-22 04:48:12 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: lighten($secondary-text-color, 7%);
|
2018-02-21 18:35:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 04:48:12 -04:00
|
|
|
&__warning {
|
2017-12-13 11:37:23 -05:00
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
bottom: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-12-13 11:37:23 -05:00
|
|
|
box-sizing: border-box;
|
2023-02-12 22:57:03 -05:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
rgba($base-shadow-color, 0.8) 0,
|
|
|
|
rgba($base-shadow-color, 0.35) 80%,
|
|
|
|
transparent
|
|
|
|
);
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
gap: 2px;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
height: 100%;
|
|
|
|
}
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 4px;
|
2017-12-13 11:37:23 -05:00
|
|
|
}
|
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 {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding-top: 15px;
|
2017-12-13 11:37:23 -05:00
|
|
|
}
|
|
|
|
}
|
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 {
|
2023-07-13 05:26:45 -04:00
|
|
|
transition:
|
|
|
|
height 0.4s ease,
|
|
|
|
opacity 0.4s ease;
|
2018-06-21 17:05:01 -04:00
|
|
|
}
|
|
|
|
|
2022-09-28 22:39:33 -04:00
|
|
|
.sign-in-banner {
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 20px;
|
2022-11-05 13:28:13 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
unicode-bidi: isolate;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2022-09-28 22:39:33 -04:00
|
|
|
}
|
2022-09-29 00:21:51 -04:00
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2022-09-28 22:39:33 -04:00
|
|
|
}
|
|
|
|
|
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;
|
2022-06-01 13:22:35 -04:00
|
|
|
margin: -0.2ex 0.15em 0.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 {
|
2023-04-04 10:48:34 -04:00
|
|
|
float: right;
|
2017-04-22 22:26:55 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 25px;
|
2017-04-22 22:26:55 -04:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-indicator__display-avatar {
|
2023-04-04 10:48:34 -04:00
|
|
|
float: left;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 5px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2017-06-19 12:27:07 -04:00
|
|
|
.status__content--with-action {
|
2017-04-22 22:26:55 -04:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-10-27 08:34:02 -04:00
|
|
|
.status__content {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.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;
|
2022-10-25 13:02:21 -04:00
|
|
|
line-height: 22px;
|
2016-08-31 10:48:21 -04:00
|
|
|
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 {
|
2023-09-06 22:24:01 -04:00
|
|
|
margin-bottom: 22px;
|
2019-02-04 22:46:18 -05:00
|
|
|
white-space: pre-wrap;
|
2020-12-15 06:56:43 -05:00
|
|
|
unicode-bidi: plaintext;
|
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;
|
2020-12-15 06:56:43 -05:00
|
|
|
unicode-bidi: isolate;
|
2016-08-24 15:08:00 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-01-26 08:52:07 -05:00
|
|
|
|
2019-07-28 00:00:51 -04:00
|
|
|
a.unhandled-link {
|
2022-06-19 02:18:08 -04:00
|
|
|
color: $highlight-text-color;
|
2019-07-28 00:00:51 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-03-22 01:08:05 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
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 {
|
2022-06-19 02:18:08 -04:00
|
|
|
color: $highlight-text-color;
|
2020-01-26 16:26:50 -05:00
|
|
|
}
|
2020-01-23 16:00:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-27 11:04:33 -04:00
|
|
|
.status__content.status__content--collapsed {
|
2022-11-13 18:43:24 -05:00
|
|
|
max-height: 22px * 15; // 15 lines is roughly above 500 characters
|
2018-09-27 11:04:33 -04:00
|
|
|
}
|
|
|
|
|
2023-07-07 18:12:31 -04:00
|
|
|
.status__content__read-more-button,
|
|
|
|
.status__content__translate-button {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-09-27 11:04:33 -04:00
|
|
|
font-size: 15px;
|
2022-10-25 13:02:21 -04:00
|
|
|
line-height: 22px;
|
2022-06-19 02:18:08 -04:00
|
|
|
color: $highlight-text-color;
|
2018-09-27 11:04:33 -04:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
2022-10-25 13:02:21 -04:00
|
|
|
padding-top: 16px;
|
2020-01-29 11:35:54 -05:00
|
|
|
text-decoration: none;
|
2018-09-27 11:04:33 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
2018-09-27 11:04:33 -04:00
|
|
|
}
|
|
|
|
|
2022-10-25 12:47:21 -04:00
|
|
|
.translate-button {
|
|
|
|
margin-top: 16px;
|
2022-01-19 16:37:27 -05:00
|
|
|
font-size: 15px;
|
2022-10-25 13:02:21 -04:00
|
|
|
line-height: 22px;
|
2022-10-25 12:47:21 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-01-19 16:37:27 -05:00
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
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;
|
2022-03-22 01:08:05 -04:00
|
|
|
vertical-align: top;
|
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%);
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 03:42:13 -04:00
|
|
|
|
|
|
|
&__button {
|
|
|
|
display: inline;
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2018-06-29 09:34:36 -04:00
|
|
|
}
|
|
|
|
|
2017-10-05 19:07:59 -04:00
|
|
|
.focusable {
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.status {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 16px;
|
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%);
|
2020-07-01 07:52:05 -04:00
|
|
|
cursor: auto;
|
2017-02-08 19:20:09 -05:00
|
|
|
|
2017-05-24 11:55:00 -04:00
|
|
|
@keyframes fade {
|
2023-02-12 22:57:03 -05:00
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-05-24 11:55:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
opacity: 1;
|
2017-05-26 18:53:25 -04:00
|
|
|
animation: fade 150ms linear;
|
2017-05-24 11:55:00 -04:00
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
.media-gallery,
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
2022-10-25 13:02:21 -04:00
|
|
|
.audio-player,
|
|
|
|
.attachment-list {
|
|
|
|
margin-top: 16px;
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
2022-03-29 16:55:37 -04:00
|
|
|
|
|
|
|
&.light {
|
|
|
|
.status__relative-time,
|
|
|
|
.status__visibility-icon {
|
|
|
|
color: $light-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__display-name {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
color: $light-text-color;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
&__spoiler-link {
|
2022-03-29 16:55:37 -04:00
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-primary-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-primary-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-24 02:07:03 -04:00
|
|
|
|
|
|
|
&--in-thread {
|
2023-07-04 08:57:46 -04:00
|
|
|
$thread-margin: 46px + 10px;
|
|
|
|
|
2023-04-24 02:07:03 -04:00
|
|
|
border-bottom: 0;
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.status__action-bar,
|
|
|
|
.media-gallery,
|
2023-04-28 05:15:43 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player,
|
2023-04-26 19:45:19 -04:00
|
|
|
.attachment-list,
|
2023-04-30 00:42:43 -04:00
|
|
|
.picture-in-picture-placeholder,
|
2023-08-16 03:06:04 -04:00
|
|
|
.status-card,
|
|
|
|
.hashtag-bar {
|
2023-07-04 08:57:46 -04:00
|
|
|
margin-inline-start: $thread-margin;
|
|
|
|
width: calc(100% - ($thread-margin));
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content__read-more-button {
|
|
|
|
margin-inline-start: $thread-margin;
|
2023-04-24 02:07:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--first-in-thread {
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__line {
|
|
|
|
height: 16px - 4px;
|
|
|
|
border-inline-start: 2px solid lighten($ui-base-color, 8%);
|
|
|
|
width: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-04-25 16:15:00 -04:00
|
|
|
inset-inline-start: 16px + ((46px - 2px) * 0.5);
|
2023-04-24 02:07:03 -04:00
|
|
|
|
|
|
|
&--full {
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 16px - 4px;
|
|
|
|
height: 46px + 4px + 4px;
|
|
|
|
width: 2px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
inset-inline-start: -2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--first {
|
|
|
|
top: 16px + 46px + 4px;
|
|
|
|
height: calc(100% - (16px + 46px + 4px));
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
.status__relative-time {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
height: 40px;
|
|
|
|
order: 2;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
2018-12-07 18:40:11 -05:00
|
|
|
.notification__relative_time {
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2023-04-04 10:48:34 -04:00
|
|
|
float: right;
|
2017-05-20 10:48:49 -04:00
|
|
|
font-size: 14px;
|
2020-10-26 22:00:47 -04:00
|
|
|
padding-bottom: 1px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2020-06-25 16:43:59 -04:00
|
|
|
.status__visibility-icon {
|
2020-10-26 22:00:47 -04:00
|
|
|
padding: 0 4px;
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
}
|
2020-06-25 16:43:59 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
max-width: 100%;
|
2022-10-25 13:02:21 -04:00
|
|
|
display: flex;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
bdi {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__account {
|
|
|
|
white-space: nowrap;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__info {
|
|
|
|
font-size: 15px;
|
2023-02-20 02:11:23 -05:00
|
|
|
padding-bottom: 10px;
|
2022-10-25 13:02:21 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 10px;
|
2023-02-20 02:11:23 -05:00
|
|
|
cursor: pointer;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
.status-check-box__status {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 10px;
|
2017-02-14 14:59:26 -05:00
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
.detailed-status__display-name {
|
|
|
|
color: lighten($inverted-text-color, 16%);
|
2018-03-04 14:29:12 -05:00
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
span {
|
|
|
|
display: inline;
|
2018-03-04 14:29:12 -05:00
|
|
|
}
|
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
&:hover strong {
|
|
|
|
text-decoration: none;
|
2018-03-04 14:29:12 -05:00
|
|
|
}
|
2022-02-23 14:03:46 -05:00
|
|
|
}
|
2018-03-04 14:29:12 -05:00
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
.media-gallery,
|
|
|
|
.audio-player,
|
|
|
|
.video-player {
|
2022-03-09 15:15:24 -05:00
|
|
|
margin-top: 15px;
|
2022-02-23 14:03:46 -05:00
|
|
|
max-width: 250px;
|
|
|
|
}
|
2018-03-04 14:29:12 -05:00
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
.status__content {
|
|
|
|
padding: 0;
|
|
|
|
white-space: normal;
|
2017-02-14 14:59:26 -05:00
|
|
|
}
|
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
.media-gallery__item-thumbnail {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2017-02-08 19:20:09 -05:00
|
|
|
.status__prepend {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 16px;
|
|
|
|
padding-bottom: 0;
|
2023-03-30 09:16:20 -04:00
|
|
|
display: inline-flex;
|
2022-10-25 13:02:21 -04:00
|
|
|
gap: 10px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-weight: 500;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $dark-text-color;
|
2017-02-08 19:20:09 -05:00
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
2023-03-30 09:16:20 -04:00
|
|
|
.status__wrapper-direct {
|
|
|
|
background: mix($ui-base-color, $ui-highlight-color, 95%);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: mix(lighten($ui-base-color, 4%), $ui-highlight-color, 95%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__prepend {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status__action-bar {
|
2017-04-25 09:16:09 -04:00
|
|
|
display: flex;
|
2022-10-25 13:02:21 -04:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
gap: 18px;
|
|
|
|
margin-top: 16px;
|
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%);
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 16px;
|
2023-04-24 02:07:03 -04:00
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
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
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
.media-gallery,
|
2019-08-23 16:38:02 -04:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2022-10-25 13:02:21 -04:00
|
|
|
margin-top: 16px;
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
2023-03-30 09:16:20 -04:00
|
|
|
|
|
|
|
.status__prepend {
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
2016-09-25 08:20:29 -04:00
|
|
|
}
|
|
|
|
|
2023-07-24 07:47:28 -04:00
|
|
|
.scrollable > div:first-child .detailed-status {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.detailed-status__meta {
|
2022-10-25 13:02:21 -04:00
|
|
|
margin-top: 16px;
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
position: relative;
|
|
|
|
top: 0.145em;
|
|
|
|
}
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-03-30 09:16:20 -04:00
|
|
|
.detailed-status__wrapper-direct {
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: mix($ui-base-color, $ui-highlight-color, 95%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.detailed-status,
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
background: mix(lighten($ui-base-color, 4%), $ui-highlight-color, 95%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__action-bar {
|
|
|
|
border-top-color: mix(
|
|
|
|
lighten($ui-base-color, 8%),
|
|
|
|
$ui-highlight-color,
|
|
|
|
95%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__prepend {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.detailed-status__link {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2017-04-22 22:26:55 -04:00
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2023-10-24 13:45:08 -04:00
|
|
|
gap: 6px;
|
|
|
|
position: relative;
|
|
|
|
top: 0.145em;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
top: 0;
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__favorites,
|
|
|
|
.detailed-status__reblogs {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 12px;
|
2023-10-24 13:45:08 -04:00
|
|
|
line-height: 18px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
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 {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 16px;
|
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
|
|
|
|
|
|
|
.account__display-name {
|
|
|
|
flex: 1 1 auto;
|
2022-10-25 13:02:21 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
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;
|
2021-04-19 08:45:15 -04:00
|
|
|
|
2023-03-25 03:46:32 -04:00
|
|
|
.display-name {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name strong {
|
|
|
|
display: inline;
|
2021-04-19 08:45:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-01 03:27:23 -04:00
|
|
|
&--minimal {
|
|
|
|
.account__display-name {
|
|
|
|
.display-name {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name strong {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-19 08:45:15 -04:00
|
|
|
&__note {
|
2023-06-23 10:34:27 -04:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
2021-04-19 08:45:15 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-04-23 16:33:08 -04:00
|
|
|
display: -webkit-box;
|
2023-06-23 10:34:27 -04:00
|
|
|
-webkit-line-clamp: 1;
|
2023-04-23 16:33:08 -04:00
|
|
|
-webkit-box-orient: vertical;
|
2023-06-23 10:34:27 -04:00
|
|
|
margin-top: 10px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
&--missing {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2021-04-19 08:45:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.account__wrapper {
|
|
|
|
display: flex;
|
2022-10-25 13:02:21 -04:00
|
|
|
gap: 10px;
|
2023-06-05 22:14:28 -04:00
|
|
|
align-items: center;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
2019-06-06 12:51:46 -04:00
|
|
|
@include avatar-radius;
|
2022-06-01 13:22:35 -04:00
|
|
|
|
2020-05-03 16:04:18 -04:00
|
|
|
display: block;
|
2017-04-22 22:26:55 -04:00
|
|
|
position: relative;
|
2022-10-27 18:48:45 -04:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
2020-05-03 16:04:18 -04:00
|
|
|
|
2017-05-03 05:43:37 -04:00
|
|
|
&-inline {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 5px;
|
2017-05-03 05:43:37 -04:00
|
|
|
}
|
2018-10-19 20:23:58 -04:00
|
|
|
|
|
|
|
&-composite {
|
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 {
|
2023-04-04 10:48:34 -04:00
|
|
|
float: left;
|
2018-10-19 20:23:58 -04:00
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2019-09-21 14:01:16 -04:00
|
|
|
|
2022-10-27 18:48:45 -04:00
|
|
|
.account__avatar {
|
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
|
2019-09-21 14:01:16 -04:00
|
|
|
&__label {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 50%;
|
2019-09-21 14:01:16 -04:00
|
|
|
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 {
|
2022-06-27 03:30:15 -04:00
|
|
|
position: relative;
|
|
|
|
|
2017-05-03 05:43:37 -04:00
|
|
|
&-overlay {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 0;
|
2017-05-03 05:43:37 -04:00
|
|
|
z-index: 1;
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__relationship {
|
2017-11-14 21:56:41 -05:00
|
|
|
white-space: nowrap;
|
2017-04-22 22:26:55 -04:00
|
|
|
display: flex;
|
2023-06-05 22:14:28 -04:00
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
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 {
|
2023-04-04 10:48:34 -04:00
|
|
|
float: left;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
2023-03-25 03:46:32 -04:00
|
|
|
.display-name 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 {
|
2023-03-25 03:46:32 -04:00
|
|
|
&:hover .display-name strong {
|
2017-04-22 22:26:55 -04:00
|
|
|
text-decoration: underline;
|
2016-08-31 16:58:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-25 03:46:32 -04:00
|
|
|
.account__display-name .display-name strong {
|
2017-04-22 22:26:55 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
.detailed-status__display-name {
|
2022-10-25 13:02:21 -04:00
|
|
|
color: $darker-text-color;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-bottom: 16px;
|
2017-04-22 22:26:55 -04:00
|
|
|
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 {
|
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
|
|
|
.status__avatar {
|
2022-10-25 13:02:21 -04:00
|
|
|
width: 46px;
|
|
|
|
height: 46px;
|
2019-05-15 00:53:23 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-03-22 01:08:05 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
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
|
|
|
}
|
|
|
|
|
2022-06-27 03:30:15 -04:00
|
|
|
.notification__report {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 16px;
|
2022-06-27 03:30:15 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2022-10-25 13:02:21 -04:00
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
&__avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2022-06-27 03:30:15 -04:00
|
|
|
|
|
|
|
&__details {
|
2022-10-25 13:02:21 -04:00
|
|
|
flex: 1 1 auto;
|
2022-06-27 03:30:15 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
color: $darker-text-color;
|
2022-10-25 13:02:21 -04:00
|
|
|
gap: 10px;
|
2022-06-27 03:30:15 -04:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
2022-10-25 13:02:21 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-06-27 03:30:15 -04:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
&__actions {
|
|
|
|
flex: 0 0 auto;
|
2022-06-27 03:30:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.notification__message {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 16px;
|
|
|
|
padding-bottom: 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;
|
2022-10-25 13:02:21 -04:00
|
|
|
font-weight: 500;
|
|
|
|
display: flex;
|
2023-10-24 13:45:08 -04:00
|
|
|
align-items: center;
|
2022-10-25 13:02:21 -04:00
|
|
|
gap: 10px;
|
2017-02-10 16:58:29 -05:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $highlight-text-color;
|
2023-10-24 13:45:08 -04:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-star {
|
|
|
|
color: $gold-star;
|
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
|
|
|
}
|
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
.icon-button.star-icon.active {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $gold-star;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
.icon-button.bookmark-icon.active {
|
2019-11-13 17:02:10 -05:00
|
|
|
color: $red-bookmark;
|
|
|
|
}
|
|
|
|
|
2019-10-24 16:47:48 -04:00
|
|
|
.no-reduce-motion .icon-button.star-icon {
|
|
|
|
&.activate {
|
2023-10-24 13:45:08 -04:00
|
|
|
& > .icon {
|
2019-10-24 16:47:48 -04:00
|
|
|
animation: spring-rotate-in 1s linear;
|
2023-11-06 06:14:46 -05:00
|
|
|
transform-origin: 50% 55%;
|
2019-10-24 16:47:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.deactivate {
|
2023-10-24 13:45:08 -04:00
|
|
|
& > .icon {
|
2019-10-24 16:47:48 -04:00
|
|
|
animation: spring-rotate-out 1s linear;
|
2023-11-06 06:14:46 -05:00
|
|
|
transform-origin: 50% 55%;
|
2019-10-24 16:47:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.display-name {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2023-04-23 16:24:53 -04:00
|
|
|
|
|
|
|
&__account {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name__html {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2020-11-02 15:16:38 -05:00
|
|
|
scrollbar-width: none; /* Firefox */
|
2023-02-12 22:57:03 -05:00
|
|
|
-ms-overflow-style: none; /* IE 10+ */
|
2020-11-02 15:16:38 -05:00
|
|
|
|
|
|
|
* {
|
|
|
|
scrollbar-width: none; /* Firefox */
|
2023-02-12 22:57:03 -05:00
|
|
|
-ms-overflow-style: none; /* IE 10+ */
|
2020-11-02 15:16:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar,
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
background: transparent; /* Chrome/Safari/Webkit */
|
|
|
|
}
|
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;
|
2022-10-28 11:10:00 -04:00
|
|
|
background: url('~images/void.png') repeat;
|
2018-03-26 07:59:21 -04:00
|
|
|
object-fit: contain;
|
|
|
|
}
|
2018-03-04 14:32:24 -05:00
|
|
|
|
2022-07-20 07:56:44 -04:00
|
|
|
.loading-bar__container {
|
2018-07-14 19:18:09 -04:00
|
|
|
position: relative;
|
2017-06-27 07:43:53 -04:00
|
|
|
}
|
2017-06-06 13:30:17 -04:00
|
|
|
|
2022-07-20 07:56:44 -04:00
|
|
|
.loading-bar {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
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 {
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 15px;
|
2017-02-08 19:20:09 -05:00
|
|
|
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;
|
2022-10-25 13:02:21 -04:00
|
|
|
gap: 10px;
|
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
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
|
2018-06-13 08:44:50 -04:00
|
|
|
.navigation-bar__actions {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.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;
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
2018-06-13 08:44:50 -04:00
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile {
|
2023-07-21 07:20:14 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-04-22 22:26:55 -04:00
|
|
|
flex: 1 1 auto;
|
2018-06-15 12:00:03 -04:00
|
|
|
line-height: 20px;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-bar__profile-account {
|
2023-07-21 07:20:14 -04:00
|
|
|
display: inline;
|
2017-04-22 22:26:55 -04:00
|
|
|
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 {
|
2023-07-21 07:20:14 -04:00
|
|
|
display: inline;
|
2017-04-22 22:26:55 -04:00
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2017-02-08 19:20:09 -05:00
|
|
|
}
|
|
|
|
|
2023-01-11 15:58:46 -05:00
|
|
|
.dropdown-animation {
|
2023-06-06 15:49:49 -04:00
|
|
|
animation: dropdown 150ms cubic-bezier(0.1, 0.7, 0.1, 1);
|
2023-01-11 15:58:46 -05:00
|
|
|
|
|
|
|
@keyframes dropdown {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reduce-motion & {
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2023-06-06 15:49:49 -04:00
|
|
|
border-bottom: 1px solid var(--dropdown-border-color);
|
|
|
|
margin: 5px 0;
|
2017-09-21 22:59:17 -04:00
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
2023-06-06 15:49:49 -04:00
|
|
|
background: var(--dropdown-background-color);
|
|
|
|
border: 1px solid var(--dropdown-border-color);
|
|
|
|
padding: 4px;
|
2017-09-21 22:59:17 -04:00
|
|
|
border-radius: 4px;
|
2023-06-06 15:49:49 -04:00
|
|
|
box-shadow: var(--dropdown-shadow);
|
2018-10-28 01:39:59 -04:00
|
|
|
z-index: 9999;
|
2017-09-21 22:59:17 -04:00
|
|
|
|
2022-02-08 19:17:07 -05:00
|
|
|
&__text-button {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2022-02-08 19:17:07 -05:00
|
|
|
color: inherit;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:focus-visible {
|
2022-02-08 19:17:07 -05:00
|
|
|
outline: 1px dotted;
|
|
|
|
}
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
2022-02-08 19:17:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
&__header {
|
2023-06-06 15:49:49 -04:00
|
|
|
border-bottom: 1px solid var(--dropdown-border-color);
|
|
|
|
padding: 10px 14px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
margin-bottom: 4px;
|
2022-02-08 19:17:07 -05:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
2023-06-06 15:49:49 -04:00
|
|
|
color: $darker-text-color;
|
2022-02-08 19:17:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__list {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
&--scrollable {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--loading {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 30px 45px;
|
|
|
|
}
|
2017-09-21 22:59:17 -04:00
|
|
|
}
|
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__item {
|
2022-02-08 19:17:07 -05:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
2023-06-06 15:49:49 -04:00
|
|
|
font-weight: 500;
|
2022-02-08 19:17:07 -05:00
|
|
|
display: block;
|
2023-06-06 15:49:49 -04:00
|
|
|
|
|
|
|
&--dangerous {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
2022-02-08 19:17:07 -05:00
|
|
|
|
|
|
|
a,
|
|
|
|
button {
|
2023-06-06 15:49:49 -04:00
|
|
|
font: inherit;
|
2017-09-21 22:59:17 -04:00
|
|
|
display: block;
|
2022-02-08 19:17:07 -05:00
|
|
|
width: 100%;
|
2023-06-06 15:49:49 -04:00
|
|
|
padding: 10px 14px;
|
2022-02-08 19:17:07 -05:00
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
2023-06-06 15:49:49 -04:00
|
|
|
background: transparent;
|
2017-09-21 22:59:17 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
2022-02-08 19:17:07 -05:00
|
|
|
color: inherit;
|
2017-09-21 22:59:17 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2022-02-08 19:17:07 -05:00
|
|
|
text-align: inherit;
|
2023-06-06 15:49:49 -04:00
|
|
|
border-radius: 4px;
|
2017-09-21 22:59:17 -04:00
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2023-06-06 15:49:49 -04:00
|
|
|
background: var(--dropdown-border-color);
|
2017-09-21 22:59:17 -04:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 18:53:11 -05:00
|
|
|
}
|
|
|
|
|
2022-02-08 19:17:07 -05:00
|
|
|
.inline-account {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
.account__avatar {
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 5px;
|
2022-02-08 19:17:07 -05:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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%;
|
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;
|
2022-10-04 14:13:23 -04:00
|
|
|
max-width: 600px;
|
2019-05-23 14:01:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-12 07:17:17 -04:00
|
|
|
}
|
|
|
|
|
2022-10-04 14:13:23 -04:00
|
|
|
$ui-header-height: 55px;
|
|
|
|
|
|
|
|
.ui__header {
|
|
|
|
display: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: $ui-header-height;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
2023-04-28 04:00:33 -04:00
|
|
|
z-index: 3;
|
2022-10-04 14:13:23 -04:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__logo {
|
|
|
|
display: inline-flex;
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
height: $ui-header-height - 30px;
|
|
|
|
width: auto;
|
|
|
|
}
|
2023-04-28 04:00:33 -04:00
|
|
|
|
|
|
|
.logo--wordmark {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width >= 320px) {
|
2023-04-28 04:00:33 -04:00
|
|
|
.logo--wordmark {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo--icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-10-04 14:13:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__links {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
padding: 0 10px;
|
2022-12-06 18:40:18 -05:00
|
|
|
overflow: hidden;
|
2022-10-04 14:13:23 -04:00
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2022-12-06 18:40:18 -05:00
|
|
|
|
|
|
|
.button-tertiary {
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
2022-10-04 14:13:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-01 06:26:58 -04:00
|
|
|
.tabs-bar__wrapper {
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
position: sticky;
|
2022-10-04 14:13:23 -04:00
|
|
|
top: $ui-header-height;
|
2019-08-01 06:26:58 -04:00
|
|
|
z-index: 2;
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
padding-top: 10px;
|
2022-10-04 14:13:23 -04:00
|
|
|
top: 0;
|
2019-08-01 06:26:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2023-11-16 08:43:02 -05:00
|
|
|
border-radius: 0 0 4px 4px;
|
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 {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
2017-02-08 19:20:09 -05:00
|
|
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-02-08 19:20:09 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 5px;
|
|
|
|
padding-inline-end: 5px;
|
2017-04-10 10:27:30 -04:00
|
|
|
|
|
|
|
&:first-child {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 10px;
|
2017-04-10 10:27:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 10px;
|
2017-04-10 10:27:30 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-25 22:40:27 -04:00
|
|
|
|
|
|
|
.columns-area > div {
|
2017-05-07 14:47:31 -04:00
|
|
|
.column,
|
|
|
|
.drawer {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 5px;
|
|
|
|
padding-inline-end: 5px;
|
2017-04-25 22:40:27 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-10 10:27:30 -04:00
|
|
|
}
|
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2022-03-07 05:38:52 -05:00
|
|
|
.account-card {
|
2019-08-29 18:14:36 -04:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-form {
|
|
|
|
display: flex;
|
2023-08-31 08:15:58 -04:00
|
|
|
flex-wrap: wrap;
|
2019-08-29 18:14:36 -04:00
|
|
|
}
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 30px;
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.search__icon .fa {
|
|
|
|
top: 15px;
|
|
|
|
}
|
|
|
|
|
2019-07-19 03:25:22 -04:00
|
|
|
.scrollable {
|
|
|
|
overflow: visible;
|
2019-07-23 09:47:18 -04:00
|
|
|
|
2022-06-01 13:22:35 -04:00
|
|
|
@supports (display: grid) {
|
2019-07-23 09:47:18 -04:00
|
|
|
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
|
|
|
}
|
2019-05-25 15:27:00 -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
|
|
|
.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
|
|
|
}
|
|
|
|
|
2022-12-15 11:24:38 -05:00
|
|
|
.getting-started__wrapper {
|
2019-05-22 19:35:22 -04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2022-10-04 14:13:23 -04:00
|
|
|
.search-page .search {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel__legal {
|
2019-05-25 15:27:00 -04:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-04 14:13:23 -04:00
|
|
|
}
|
2022-05-06 15:40:49 -04:00
|
|
|
|
2022-10-04 14:13:23 -04:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
2022-10-09 09:55:32 -04:00
|
|
|
$sidebar-width: 285px;
|
|
|
|
|
2022-10-04 14:13:23 -04:00
|
|
|
.columns-area__panels__main {
|
2022-10-09 09:55:32 -04:00
|
|
|
width: calc(100% - $sidebar-width);
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
2022-10-04 14:13:23 -04:00
|
|
|
.columns-area__panels {
|
|
|
|
min-height: calc(100vh - $ui-header-height);
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area__panels__pane--navigational {
|
2022-10-09 09:55:32 -04:00
|
|
|
min-width: $sidebar-width;
|
2022-10-04 14:13:23 -04:00
|
|
|
|
|
|
|
.columns-area__panels__pane__inner {
|
2022-10-09 09:55:32 -04:00
|
|
|
width: $sidebar-width;
|
2022-10-04 14:13:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel {
|
|
|
|
margin: 0;
|
|
|
|
background: $ui-base-color;
|
2023-04-04 10:48:34 -04:00
|
|
|
border-inline-start: 1px solid lighten($ui-base-color, 8%);
|
2022-10-04 14:13:23 -04:00
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel__sign-in-banner,
|
|
|
|
.navigation-panel__logo,
|
2023-10-19 13:36:08 -04:00
|
|
|
.navigation-panel__banner,
|
2022-10-04 14:13:23 -04:00
|
|
|
.getting-started__trends {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-link__icon {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-15 10:40:45 -05:00
|
|
|
.layout-single-column .ui__header {
|
2022-10-04 14:13:23 -04:00
|
|
|
display: flex;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-header,
|
|
|
|
.column-back-button,
|
2022-10-22 17:18:32 -04:00
|
|
|
.scrollable,
|
|
|
|
.error-column {
|
2022-10-04 14:13:23 -04:00
|
|
|
border-radius: 0 !important;
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-09 09:55:32 -04:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 285px - 1px) {
|
|
|
|
$sidebar-width: 55px;
|
|
|
|
|
|
|
|
.columns-area__panels__main {
|
|
|
|
width: calc(100% - $sidebar-width);
|
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area__panels__pane--navigational {
|
|
|
|
min-width: $sidebar-width;
|
|
|
|
|
|
|
|
.columns-area__panels__pane__inner {
|
|
|
|
width: $sidebar-width;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-link span {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-10 15:41:25 -04:00
|
|
|
|
|
|
|
.list-panel {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-09 09:55:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-04 14:13:23 -04:00
|
|
|
.explore__search-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-09 09:55:32 -04:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
2022-10-04 14:13:23 -04:00
|
|
|
.columns-area__panels__pane--compositional {
|
2019-05-25 15:27:00 -04:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-04 14:13:23 -04:00
|
|
|
|
|
|
|
.explore__search-header {
|
|
|
|
display: flex;
|
|
|
|
}
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
.icon-with-badge {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: inline-flex;
|
2019-05-22 19:35:22 -04:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__badge {
|
|
|
|
position: absolute;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 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;
|
|
|
|
}
|
2020-10-12 18:37:21 -04:00
|
|
|
|
|
|
|
&__issue-badge {
|
|
|
|
position: absolute;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 11px;
|
2020-10-12 18:37:21 -04:00
|
|
|
bottom: 1px;
|
|
|
|
display: block;
|
|
|
|
background: $error-red;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
}
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
.column-link--transparent .icon-with-badge__badge {
|
|
|
|
border-color: darken($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2021-04-19 08:45:15 -04:00
|
|
|
.column-title {
|
|
|
|
text-align: center;
|
2023-11-15 06:13:53 -05:00
|
|
|
padding-bottom: 32px;
|
2021-04-19 08:45:15 -04:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
2023-04-23 16:24:53 -04:00
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width >= 600px) {
|
2023-04-23 16:24:53 -04:00
|
|
|
padding: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__footer {
|
|
|
|
margin-top: 30px;
|
|
|
|
color: $dark-text-color;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
.link-button {
|
|
|
|
display: inline-block;
|
|
|
|
color: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
2021-04-19 08:45:15 -04:00
|
|
|
}
|
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
.onboarding__link {
|
2021-05-11 15:16:24 -04:00
|
|
|
display: flex;
|
2023-04-23 16:24:53 -04:00
|
|
|
align-items: center;
|
2023-06-23 10:34:27 -04:00
|
|
|
justify-content: space-between;
|
2023-04-23 16:24:53 -04:00
|
|
|
gap: 10px;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
2023-06-23 10:34:27 -04:00
|
|
|
padding: 10px 15px;
|
2023-04-23 16:24:53 -04:00
|
|
|
box-sizing: border-box;
|
2023-06-23 10:34:27 -04:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
2023-04-23 16:24:53 -04:00
|
|
|
height: 56px;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
height: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__illustration {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
max-height: 200px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__lead {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
}
|
2021-05-11 15:16:24 -04:00
|
|
|
}
|
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
.onboarding__links {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onboarding__steps {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border: 0;
|
|
|
|
border-radius: 8px;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
padding: 10px;
|
2023-06-23 10:34:27 -04:00
|
|
|
padding-inline-end: 15px;
|
2023-04-23 16:24:53 -04:00
|
|
|
margin-bottom: 2px;
|
|
|
|
text-decoration: none;
|
|
|
|
text-align: start;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: none;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
2023-06-23 10:34:27 -04:00
|
|
|
color: $highlight-text-color;
|
|
|
|
font-size: 1.2rem;
|
2023-04-23 16:24:53 -04:00
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width >= 600px) {
|
2023-04-23 16:24:53 -04:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__progress {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
background: $valid-value-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 21px;
|
|
|
|
height: 21px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
height: 14px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-23 10:34:27 -04:00
|
|
|
&__go {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 21px;
|
|
|
|
height: 21px;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
font-size: 17px;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
height: 1.5em;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
&__description {
|
|
|
|
flex: 1 1 auto;
|
2023-06-23 10:34:27 -04:00
|
|
|
line-height: 20px;
|
2023-04-23 16:24:53 -04:00
|
|
|
|
|
|
|
h6 {
|
2023-06-23 10:34:27 -04:00
|
|
|
color: $highlight-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
2023-04-23 16:24:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-11 15:16:24 -04:00
|
|
|
}
|
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
.follow-recommendations {
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
|
|
|
margin-bottom: 30px;
|
2021-05-05 17:57:29 -04:00
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
.account:last-child {
|
|
|
|
border-bottom: 0;
|
2021-04-19 08:45:15 -04:00
|
|
|
}
|
2023-04-25 05:12:37 -04:00
|
|
|
|
|
|
|
&__empty {
|
2021-05-05 17:57:29 -04:00
|
|
|
text-align: center;
|
|
|
|
color: $darker-text-color;
|
2023-04-25 05:12:37 -04:00
|
|
|
font-weight: 500;
|
|
|
|
padding: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tip-carousel {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 16px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
border-color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__pagination {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-05-05 17:57:29 -04:00
|
|
|
}
|
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
.copy-paste-text {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
2021-05-05 17:57:29 -04:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2023-04-23 16:24:53 -04:00
|
|
|
padding: 16px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-end;
|
|
|
|
transition: border-color 300ms linear;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&.focused {
|
|
|
|
transition: none;
|
|
|
|
outline: 0;
|
|
|
|
border-color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
border-color: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
background: transparent;
|
|
|
|
color: inherit;
|
|
|
|
font: inherit;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
resize: none;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-15 06:13:53 -05:00
|
|
|
.onboarding__profile {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 40px + 20px;
|
|
|
|
|
|
|
|
.app-form__avatar-input {
|
|
|
|
border: 2px solid $ui-base-color;
|
|
|
|
position: absolute;
|
|
|
|
inset-inline-start: -2px;
|
|
|
|
bottom: -40px;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-form__header-input {
|
|
|
|
margin: 0 -20px;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
img {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
.compose-form__highlightable {
|
2023-05-05 12:58:58 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 0 1 auto;
|
2021-05-05 17:57:29 -04:00
|
|
|
border-radius: 4px;
|
2023-04-23 16:24:53 -04:00
|
|
|
transition: box-shadow 300ms linear;
|
2023-06-06 05:05:25 -04:00
|
|
|
min-height: 0;
|
2023-07-27 10:20:33 -04:00
|
|
|
position: relative;
|
2021-05-05 17:57:29 -04:00
|
|
|
|
2023-04-23 16:24:53 -04:00
|
|
|
&.active {
|
|
|
|
transition: none;
|
2023-05-16 08:59:44 -04:00
|
|
|
box-shadow: 0 0 0 6px rgba(lighten($highlight-text-color, 8%), 0.7);
|
2021-05-05 17:57:29 -04:00
|
|
|
}
|
2021-04-19 08:45:15 -04:00
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
.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
|
|
|
|
2022-09-28 22:39:33 -04:00
|
|
|
.hero-widget {
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
&__text,
|
|
|
|
&__img,
|
|
|
|
&__img img {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
padding: 15px;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
.navigation-bar {
|
2019-06-02 04:05:54 -04:00
|
|
|
flex: 0 1 48px;
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
|
2019-06-02 04:05:54 -04:00
|
|
|
.compose-form {
|
|
|
|
flex: 1;
|
|
|
|
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
|
|
|
|
2022-09-28 22:39:33 -04:00
|
|
|
.logo {
|
|
|
|
height: 30px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-panel,
|
|
|
|
.compose-panel {
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
border-radius: 4px;
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
|
|
|
|
2017-01-06 16:09:55 -05:00
|
|
|
.drawer__inner {
|
2017-03-31 13:59:54 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2023-10-24 13:45:08 -04:00
|
|
|
background: $ui-base-color;
|
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 {
|
2023-10-24 13:45:08 -04:00
|
|
|
background: $ui-base-color
|
2023-02-12 22:57:03 -05:00
|
|
|
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-select: none;
|
2017-12-26 21:31:30 -05:00
|
|
|
}
|
2019-05-22 19:35:22 -04:00
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (height >= 640px) {
|
2019-05-22 19:35:22 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
text-align: start;
|
2017-04-16 14:32:00 -04:00
|
|
|
}
|
|
|
|
|
2017-01-06 16:09:55 -05:00
|
|
|
.drawer__header {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 16px;
|
2023-10-24 13:45:08 -04:00
|
|
|
background: $ui-base-color;
|
2017-01-06 16:09:55 -05:00
|
|
|
margin-bottom: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-04-04 05:41:05 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
2017-01-06 16:09:55 -05:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
a:hover {
|
|
|
|
background: lighten($ui-base-color, 3%);
|
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
|
|
|
|
2023-02-12 22:57:03 -05:00
|
|
|
@supports (display: grid) {
|
|
|
|
// hack to fix Chrome <57
|
2017-10-01 21:01:01 -04:00
|
|
|
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
|
|
|
}
|
2022-02-24 18:34:33 -05:00
|
|
|
|
|
|
|
.scrollable {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-10-01 21:01:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollable.fullscreen {
|
2023-02-12 22:57:03 -05:00
|
|
|
@supports (display: grid) {
|
|
|
|
// hack to fix Chrome <57
|
2017-10-01 21:01:01 -04:00
|
|
|
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%;
|
2023-06-25 23:27:07 -04:00
|
|
|
background: $ui-base-color;
|
2022-09-28 22:39:33 -04:00
|
|
|
border-radius: 4px 4px 0 0;
|
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;
|
2023-06-25 23:27:07 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
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 {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-06-25 23:27:07 -04:00
|
|
|
background: $ui-base-color;
|
2017-06-03 19:39:38 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 5px;
|
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;
|
2023-11-15 06:13:53 -05:00
|
|
|
border-radius: 10px;
|
2016-11-23 12:53:23 -05:00
|
|
|
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 {
|
2023-11-15 06:13:53 -05:00
|
|
|
width: 32px;
|
|
|
|
height: 20px;
|
2016-11-23 12:53:23 -05:00
|
|
|
padding: 0;
|
2023-11-15 06:13:53 -05:00
|
|
|
border-radius: 10px;
|
|
|
|
background-color: #626982;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
2023-11-15 06:13:53 -05:00
|
|
|
.react-toggle--focus {
|
|
|
|
outline: $ui-button-focus-outline;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle--checked .react-toggle-track {
|
2022-06-19 02:18:08 -04:00
|
|
|
background-color: $ui-highlight-color;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
2023-11-15 06:13:53 -05:00
|
|
|
.react-toggle-track-check,
|
2016-11-23 12:53:23 -05:00
|
|
|
.react-toggle-track-x {
|
2023-11-15 06:13:53 -05:00
|
|
|
display: none;
|
2016-11-23 12:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-thumb {
|
|
|
|
position: absolute;
|
2023-11-15 06:13:53 -05:00
|
|
|
top: 2px;
|
|
|
|
inset-inline-start: 2px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2016-11-23 12:53:23 -05:00
|
|
|
border-radius: 50%;
|
2023-11-15 06:13:53 -05:00
|
|
|
background-color: $primary-text-color;
|
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 {
|
2023-11-15 06:13:53 -05:00
|
|
|
inset-inline-start: 32px - 16px - 2px;
|
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
|
|
|
|
2023-08-31 06:18:46 -04:00
|
|
|
.switch-to-advanced {
|
2023-09-04 04:14:01 -04:00
|
|
|
color: $light-text-color;
|
|
|
|
background-color: $ui-base-color;
|
2023-08-31 06:18:46 -04:00
|
|
|
padding: 15px;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
.switch-to-advanced__toggle {
|
|
|
|
color: $ui-button-tertiary-color;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
2017-04-22 22:26:55 -04:00
|
|
|
font-size: 16px;
|
|
|
|
padding: 15px;
|
|
|
|
text-decoration: none;
|
2022-10-09 09:55:32 -04:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2023-08-02 13:33:41 -04:00
|
|
|
border: 0;
|
|
|
|
border-left: 4px solid transparent;
|
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;
|
|
|
|
}
|
|
|
|
|
2023-08-02 13:33:41 -04:00
|
|
|
&:focus-visible {
|
|
|
|
border-color: $ui-button-focus-outline-color;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2019-05-25 15:27:00 -04:00
|
|
|
&--transparent {
|
|
|
|
background: transparent;
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: transparent;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2022-06-19 02:18:08 -04:00
|
|
|
color: $highlight-text-color;
|
2019-05-25 15:27:00 -04:00
|
|
|
}
|
|
|
|
}
|
2022-09-28 22:39:33 -04:00
|
|
|
|
|
|
|
&--logo {
|
|
|
|
background: transparent;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
2016-12-12 08:27:52 -05:00
|
|
|
}
|
2016-12-14 12:21:31 -05:00
|
|
|
|
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
|
|
|
&__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 {
|
2022-11-27 17:49:32 -05:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 10px;
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
2019-08-22 23:05:21 -04:00
|
|
|
font-weight: 500;
|
2022-11-27 17:49:32 -05:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-08-22 23:05:21 -04:00
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (height <= 810px) {
|
2021-08-05 07:05:32 -04:00
|
|
|
.trends__item:nth-of-type(3) {
|
2018-06-01 13:18:37 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (height <= 720px) {
|
2021-08-05 07:05:32 -04:00
|
|
|
.trends__item:nth-of-type(2) {
|
2018-06-01 13:18:37 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (height <= 670px) {
|
2018-06-01 13:18:37 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: -9999px;
|
2017-11-27 15:31:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
margin: 0;
|
2022-11-05 18:06:32 -04:00
|
|
|
color: $inverted-text-color;
|
|
|
|
background: $white;
|
|
|
|
padding: 7px 10px;
|
2019-06-08 04:23:41 -04:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
2022-11-05 18:06:32 -04:00
|
|
|
line-height: 22px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid $white;
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2022-11-05 18:06:32 -04:00
|
|
|
&:focus {
|
2019-06-08 04:23:41 -04:00
|
|
|
outline: 0;
|
2022-11-05 18:06:32 -04:00
|
|
|
border-color: lighten($ui-highlight-color, 12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__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;
|
2017-01-10 11:25:10 -05:00
|
|
|
}
|
2017-04-16 08:05:16 -04:00
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 600px) {
|
2017-04-16 08:05:16 -04:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
2017-01-10 11:25:10 -05:00
|
|
|
}
|
2017-04-23 18:38:37 -04:00
|
|
|
|
2017-01-19 19:00:14 -05:00
|
|
|
.status-card {
|
2023-07-29 21:35:17 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-06-25 16:42:01 -04:00
|
|
|
position: relative;
|
2017-02-10 16:58:29 -05:00
|
|
|
font-size: 14px;
|
2023-07-24 07:47:28 -04:00
|
|
|
color: $darker-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
margin-top: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
2023-07-29 21:35:17 -04:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
border-radius: 8px;
|
2017-02-10 16:58:29 -05:00
|
|
|
|
2018-02-15 01:04:28 -05:00
|
|
|
&__actions {
|
|
|
|
bottom: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2018-02-15 01:04:28 -05:00
|
|
|
position: absolute;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 0;
|
2018-02-15 01:04:28 -05:00
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-07-29 21:35:17 -04:00
|
|
|
cursor: pointer;
|
2018-02-15 01:04:28 -05:00
|
|
|
|
|
|
|
& > 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;
|
2023-07-29 21:35:17 -04:00
|
|
|
backdrop-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
2018-02-15 01:04:28 -05:00
|
|
|
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
|
|
|
|
2023-07-24 07:47:28 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
.status-card__title,
|
|
|
|
.status-card__host,
|
2023-07-29 21:35:17 -04:00
|
|
|
.status-card__author,
|
|
|
|
.status-card__description {
|
2023-07-24 07:47:28 -04:00
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
.status-card__title,
|
|
|
|
.status-card__host,
|
2023-07-29 21:35:17 -04:00
|
|
|
.status-card__author,
|
|
|
|
.status-card__description {
|
2023-07-24 07:47:28 -04:00
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
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 {
|
2023-05-02 07:58:48 -04:00
|
|
|
// Firefox has a bug where frameborder=0 iframes add some extra blank space
|
|
|
|
// see https://bugzilla.mozilla.org/show_bug.cgi?id=155174
|
|
|
|
overflow: hidden;
|
|
|
|
|
2017-05-07 09:21:46 -04:00
|
|
|
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;
|
2023-07-24 07:47:28 -04:00
|
|
|
font-weight: 700;
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
color: $primary-text-color;
|
2017-02-10 16:58:29 -05:00
|
|
|
overflow: hidden;
|
2023-07-29 21:35:17 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card.expanded .status-card__title {
|
|
|
|
white-space: normal;
|
2023-08-01 22:17:23 -04:00
|
|
|
display: -webkit-box;
|
2023-07-29 21:35:17 -04:00
|
|
|
-webkit-line-clamp: 2;
|
2023-08-01 22:17:23 -04:00
|
|
|
-webkit-box-orient: vertical;
|
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;
|
2023-07-29 21:35:17 -04:00
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
max-width: 100%;
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2023-07-24 07:47:28 -04:00
|
|
|
.status-card__host {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 8px;
|
2023-07-29 21:35:17 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
|
|
|
|
2023-07-24 07:47:28 -04:00
|
|
|
.status-card__author {
|
2017-05-04 09:52:08 -04:00
|
|
|
display: block;
|
2023-07-24 07:47:28 -04:00
|
|
|
margin-top: 8px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $primary-text-color;
|
2023-07-29 21:35:17 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-07-24 07:47:28 -04:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-05-04 09:52:08 -04:00
|
|
|
}
|
|
|
|
|
2023-07-29 21:35:17 -04:00
|
|
|
.status-card__description {
|
|
|
|
display: block;
|
|
|
|
margin-top: 8px;
|
|
|
|
font-size: 14px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2017-02-10 16:58:29 -05:00
|
|
|
.status-card__image {
|
2023-07-29 21:35:17 -04:00
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 120px;
|
|
|
|
aspect-ratio: 1;
|
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
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
& > .icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2019-01-04 06:44:46 -05:00
|
|
|
position: absolute;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
top: 50%;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 50%;
|
2019-01-04 06:44:46 -05:00
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
2017-02-10 16:58:29 -05:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
.status-card__image-image {
|
|
|
|
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 {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: fill;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2020-06-06 11:41:56 -04:00
|
|
|
z-index: 0;
|
|
|
|
background: $base-overlay-background;
|
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-29 21:35:17 -04:00
|
|
|
.status-card.expanded {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card.expanded .status-card__image {
|
|
|
|
width: 100%;
|
|
|
|
aspect-ratio: auto;
|
|
|
|
}
|
|
|
|
|
2023-08-01 19:57:31 -04:00
|
|
|
.status-card__image,
|
|
|
|
.status-card__image-image,
|
|
|
|
.status-card__image-preview {
|
|
|
|
border-start-start-radius: 8px;
|
|
|
|
border-start-end-radius: 0;
|
|
|
|
border-end-end-radius: 0;
|
|
|
|
border-end-start-radius: 8px;
|
|
|
|
}
|
|
|
|
|
2023-07-29 21:35:17 -04:00
|
|
|
.status-card.expanded .status-card__image,
|
|
|
|
.status-card.expanded .status-card__image-image,
|
|
|
|
.status-card.expanded .status-card__image-preview {
|
|
|
|
border-start-end-radius: 8px;
|
|
|
|
border-end-end-radius: 0;
|
|
|
|
border-end-start-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-card.expanded > a {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
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 {
|
2022-06-19 02:18:08 -04:00
|
|
|
color: $highlight-text-color;
|
2020-06-14 16:29:40 -04:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
2022-06-19 02:18:08 -04:00
|
|
|
color: lighten($highlight-text-color, 4%);
|
2020-06-14 16:29:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2023-02-12 22:57:03 -05:00
|
|
|
content: '';
|
2017-06-12 14:02:17 -04:00
|
|
|
position: absolute;
|
2020-01-25 13:40:36 -05:00
|
|
|
bottom: -13px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-06-12 14:02:17 -04:00
|
|
|
margin: 0 auto;
|
|
|
|
width: 60%;
|
|
|
|
pointer-events: none;
|
|
|
|
height: 28px;
|
|
|
|
z-index: 1;
|
2023-02-12 22:57:03 -05:00
|
|
|
background: radial-gradient(
|
|
|
|
ellipse,
|
|
|
|
rgba($ui-highlight-color, 0.23) 0%,
|
|
|
|
rgba($ui-highlight-color, 0) 60%
|
|
|
|
);
|
2017-06-12 14:02:17 -04:00
|
|
|
}
|
|
|
|
}
|
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;
|
2023-06-25 23:27:07 -04:00
|
|
|
background: $ui-base-color;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2022-09-28 22:39:33 -04:00
|
|
|
border-radius: 4px 4px 0 0;
|
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
|
|
|
|
|
|
|
& > button {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
2018-01-14 22:33:06 -05:00
|
|
|
margin: 0;
|
2019-06-06 12:51:46 -04:00
|
|
|
border: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding: 15px;
|
|
|
|
padding-inline-end: 0;
|
2018-01-14 22:33:06 -05:00
|
|
|
color: inherit;
|
|
|
|
background: transparent;
|
|
|
|
font: inherit;
|
2023-03-27 04:56:25 -04:00
|
|
|
text-align: start;
|
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;
|
2023-07-23 11:55:13 -04:00
|
|
|
|
|
|
|
&:focus-visible {
|
|
|
|
outline: $ui-button-icon-focus-outline;
|
|
|
|
}
|
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 {
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2017-12-05 17:02:27 -05:00
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
.column-header__button {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-06-25 23:27:07 -04:00
|
|
|
background: $ui-base-color;
|
2017-06-03 19:39:38 -04:00
|
|
|
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
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:last-child {
|
|
|
|
border-start-end-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
&:hover {
|
2023-06-25 23:27:07 -04:00
|
|
|
color: lighten($darker-text-color, 4%);
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:focus-visible {
|
2023-08-02 13:33:41 -04:00
|
|
|
outline: $ui-button-focus-outline;
|
2023-07-23 11:55:13 -04:00
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
&.active {
|
|
|
|
color: $primary-text-color;
|
2023-06-25 23:27:07 -04:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 00:21:51 -04:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
color: $dark-text-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-header__collapsible {
|
|
|
|
max-height: 70vh;
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-y: auto;
|
2023-06-25 23:27:07 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2023-07-13 05:26:45 -04:00
|
|
|
transition:
|
|
|
|
max-height 150ms ease-in-out,
|
|
|
|
opacity 300ms linear;
|
2017-06-03 19:39:38 -04:00
|
|
|
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;
|
2023-06-25 23:27:07 -04:00
|
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
2017-12-05 17:02:27 -05:00
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2017-06-24 17:18:11 -04:00
|
|
|
.column-header__collapsible-inner {
|
2023-06-25 23:27:07 -04:00
|
|
|
background: $ui-base-color;
|
2017-06-24 17:18:11 -04:00
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
.column-header__setting-btn {
|
2021-09-30 18:55:51 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $darker-text-color;
|
2017-06-03 19:39:38 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-30 18:55:51 -04:00
|
|
|
.column-header__collapsible__extra + .column-header__setting-btn {
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
|
2020-12-15 12:43:54 -05:00
|
|
|
.column-header__permission-btn {
|
|
|
|
display: inline;
|
|
|
|
font-weight: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
.column-header__setting-arrows {
|
2023-04-04 10:48:34 -04:00
|
|
|
float: right;
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
.column-header__setting-btn {
|
2021-09-30 18:55:51 -04:00
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
&:first-child {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 7px;
|
2021-09-30 18:55:51 -04:00
|
|
|
}
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
&:last-child {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 7px;
|
|
|
|
margin-inline-start: 5px;
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-btn {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
2017-06-03 19:39:38 -04:00
|
|
|
padding: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
color: inherit;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
}
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2020-10-12 18:37:21 -04:00
|
|
|
.column-header__issue-btn {
|
|
|
|
color: $warning-red;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $error-red;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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%;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 50%;
|
2017-07-23 14:28:18 -04:00
|
|
|
transform: translate(-50%, -50%);
|
2022-02-08 19:17:07 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2017-07-23 14:28:18 -04:00
|
|
|
|
2023-11-15 06:13:53 -05:00
|
|
|
.button .loading-indicator {
|
|
|
|
position: static;
|
|
|
|
transform: none;
|
|
|
|
|
|
|
|
.circular-progress {
|
|
|
|
color: $primary-text-color;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-08 19:17:07 -05:00
|
|
|
.circular-progress {
|
|
|
|
color: lighten($ui-base-color, 26%);
|
|
|
|
animation: 1.4s linear 0s infinite normal none running simple-rotate;
|
|
|
|
|
|
|
|
circle {
|
|
|
|
stroke: currentColor;
|
|
|
|
stroke-dasharray: 80px, 200px;
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
animation: circular-progress 1.4s ease-in-out infinite;
|
2017-07-23 14:28:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-08 19:17:07 -05:00
|
|
|
@keyframes circular-progress {
|
|
|
|
0% {
|
|
|
|
stroke-dasharray: 1px, 200px;
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -15px;
|
|
|
|
}
|
2018-12-17 11:02:59 -05:00
|
|
|
|
2022-02-08 19:17:07 -05:00
|
|
|
100% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -125px;
|
|
|
|
}
|
2018-12-17 11:02:59 -05:00
|
|
|
}
|
|
|
|
|
2022-02-08 19:17:07 -05:00
|
|
|
@keyframes simple-rotate {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
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-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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2019-04-26 21:24:09 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 4px;
|
2019-04-26 21:24:09 -04:00
|
|
|
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 {
|
2023-07-08 14:05:33 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-08-03 14:39:45 -04:00
|
|
|
background: transparent;
|
2019-04-26 21:24:09 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-07-08 14:05:33 -04:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2019-04-26 21:24:09 -04:00
|
|
|
border: 0;
|
2023-07-24 16:04:38 -04:00
|
|
|
color: $white;
|
2019-04-26 21:24:09 -04:00
|
|
|
|
|
|
|
&__label {
|
2023-08-03 14:39:45 -04:00
|
|
|
background-color: rgba($black, 0.45);
|
|
|
|
backdrop-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 10px 15px;
|
2023-07-08 14:05:33 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 8px;
|
|
|
|
flex-direction: column;
|
2019-04-26 21:24:09 -04:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2023-07-08 14:05:33 -04:00
|
|
|
&__action {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 13px;
|
2019-09-01 13:43:35 -04:00
|
|
|
}
|
2023-08-03 14:39:45 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
.spoiler-button__overlay__label {
|
|
|
|
background-color: rgba($black, 0.9);
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2020-10-15 10:24:47 -04:00
|
|
|
.column-settings__row--with-margin {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
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%);
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 600px) {
|
2019-09-19 13:58:40 -04:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
2018-11-05 12:53:25 -05:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:34:58 -05:00
|
|
|
&__placeholder {
|
|
|
|
color: $dark-text-color;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 2px;
|
2019-02-13 12:34:58 -05:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__value-container {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 6px;
|
2019-02-13 12:34:58 -05:00
|
|
|
}
|
|
|
|
|
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,
|
2021-11-26 16:09:11 -05:00
|
|
|
&__input,
|
|
|
|
&__input-container {
|
2018-11-05 12:53:25 -05:00
|
|
|
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;
|
2022-06-01 13:22:35 -04:00
|
|
|
|
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 {
|
2020-12-15 12:43:54 -05:00
|
|
|
.text-btn:not(.column-header__permission-btn) {
|
2017-06-12 06:26:23 -04:00
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
.relationship-tag {
|
2023-07-17 05:51:00 -04:00
|
|
|
color: $white;
|
2019-03-25 19:36:25 -04:00
|
|
|
margin-bottom: 4px;
|
|
|
|
display: block;
|
2023-06-25 23:27:07 -04:00
|
|
|
background-color: rgba($black, 0.45);
|
|
|
|
backdrop-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
2020-01-27 07:44:29 -05:00
|
|
|
font-size: 11px;
|
2023-06-25 23:27:07 -04:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 700;
|
|
|
|
padding: 2px 6px;
|
2018-03-04 23:09:35 -05:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: 8px;
|
2017-04-22 22:26:55 -04:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2022-05-10 03:44:35 -04:00
|
|
|
.limited-account-hint {
|
|
|
|
p {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
.empty-column-indicator,
|
2020-04-04 13:02:10 -04:00
|
|
|
.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
|
|
|
|
2019-05-22 19:35:22 -04:00
|
|
|
& > span {
|
2022-05-03 03:09:09 -04:00
|
|
|
max-width: 500px;
|
2019-05-22 19:35:22 -04:00
|
|
|
}
|
|
|
|
|
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%);
|
2023-06-25 23:27:07 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2020-04-04 13:02:10 -04:00
|
|
|
contain: initial;
|
2023-04-07 09:44:31 -04:00
|
|
|
flex-grow: 0;
|
2020-04-04 13:02:10 -04:00
|
|
|
}
|
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
.error-column {
|
2022-10-22 17:18:32 -04:00
|
|
|
padding: 20px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-07-07 18:06:02 -04:00
|
|
|
flex-direction: column;
|
2022-10-22 17:18:32 -04:00
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
&__image {
|
2022-10-23 09:58:24 -04:00
|
|
|
width: 70%;
|
2022-10-22 17:18:32 -04:00
|
|
|
max-width: 350px;
|
|
|
|
margin-top: -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
text-align: center;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
max-width: 48ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
margin-top: 30px;
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
2017-07-07 18:06:02 -04:00
|
|
|
}
|
|
|
|
|
2017-10-07 13:02:30 -04:00
|
|
|
@keyframes heartbeat {
|
2023-01-04 07:13:57 -05:00
|
|
|
0% {
|
2017-10-07 13:02:30 -04:00
|
|
|
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;
|
2023-01-12 10:43:02 -05:00
|
|
|
position: relative;
|
2023-07-23 11:55:13 -04:00
|
|
|
box-shadow: var(--dropdown-shadow);
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 11px;
|
2017-09-22 19:41:00 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: -8px;
|
2017-09-22 19:41:00 -04:00
|
|
|
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;
|
2023-01-23 11:42:58 -05:00
|
|
|
height: 100vh;
|
2017-03-23 22:50:30 -04:00
|
|
|
justify-content: center;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2017-03-23 22:50:30 -04:00
|
|
|
opacity: 0;
|
2023-01-23 11:42:58 -05:00
|
|
|
position: fixed;
|
2017-04-22 22:26:55 -04:00
|
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
2023-01-23 11:42:58 -05:00
|
|
|
width: 100vw;
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 0;
|
2017-03-23 22:50:30 -04:00
|
|
|
bottom: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2017-03-23 22:50:30 -04:00
|
|
|
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;
|
2023-03-09 08:35:44 -05:00
|
|
|
text-align: 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;
|
2023-10-24 13:45:08 -04:00
|
|
|
gap: 10px;
|
2017-03-23 22:50:30 -04:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2017-03-23 22:50:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-06 16:51:40 -05:00
|
|
|
.upload-progress__message {
|
2017-04-22 22:26:55 -04:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2017-03-23 22:50:30 -04:00
|
|
|
.upload-progress__backdrop {
|
|
|
|
width: 100%;
|
|
|
|
height: 6px;
|
|
|
|
border-radius: 6px;
|
2023-02-23 06:58:42 -05:00
|
|
|
background: darken($simple-background-color, 8%);
|
2017-03-23 22:50:30 -04:00
|
|
|
position: relative;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-progress__tracker {
|
|
|
|
position: absolute;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2017-03-23 22:50:30 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
padding-inline-start: 2px;
|
|
|
|
padding-inline-end: 5px;
|
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-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;
|
2023-07-21 07:20:14 -04:00
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-23 11:55:13 -04:00
|
|
|
&:focus-visible {
|
2023-07-21 07:20:14 -04:00
|
|
|
img {
|
|
|
|
outline: $ui-button-icon-focus-outline;
|
2017-03-23 22:50:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown--active .emoji-button img {
|
|
|
|
opacity: 1;
|
|
|
|
filter: none;
|
|
|
|
}
|
2017-03-24 19:01:43 -04:00
|
|
|
|
|
|
|
.privacy-dropdown__dropdown {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $simple-background-color;
|
2023-07-23 11:55:13 -04:00
|
|
|
box-shadow: var(--dropdown-shadow);
|
2017-10-01 06:20:00 -04:00
|
|
|
border-radius: 4px;
|
2017-03-24 19:01:43 -04:00
|
|
|
overflow: hidden;
|
2021-02-10 18:53:12 -05:00
|
|
|
z-index: 2;
|
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
|
|
|
}
|
|
|
|
|
2021-02-10 18:53:12 -05:00
|
|
|
.modal-root__container .privacy-dropdown {
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-root__container .privacy-dropdown__dropdown {
|
|
|
|
pointer-events: auto;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2017-03-24 19:01:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-16 05:18:35 -04:00
|
|
|
.language-dropdown {
|
|
|
|
&__dropdown {
|
|
|
|
background: $simple-background-color;
|
2023-07-23 11:55:13 -04:00
|
|
|
box-shadow: var(--dropdown-shadow);
|
2022-05-16 05:18:35 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
transform-origin: 50% 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-search {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 10px;
|
2022-05-16 05:18:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-search-icon {
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 10px + 5px;
|
2022-05-16 05:18:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-scroll {
|
|
|
|
padding: 0 10px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__results {
|
|
|
|
&__item {
|
|
|
|
cursor: pointer;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 4px;
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
align-items: center;
|
2022-05-16 05:18:35 -04:00
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:active,
|
|
|
|
&:hover {
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__common-name {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
outline: 0;
|
|
|
|
|
|
|
|
.language-dropdown__dropdown__results__item__common-name {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-highlight-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
.search {
|
2022-12-15 11:24:38 -05:00
|
|
|
margin-bottom: 10px;
|
2017-03-31 13:59:54 -04:00
|
|
|
position: relative;
|
2023-04-01 03:59:10 -04:00
|
|
|
|
|
|
|
&__popout {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
inset-inline-start: 0;
|
|
|
|
margin-top: -2px;
|
|
|
|
width: 100%;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-radius: 0 0 4px 4px;
|
2023-07-29 21:35:17 -04:00
|
|
|
box-shadow: var(--dropdown-shadow);
|
2023-04-28 04:00:33 -04:00
|
|
|
z-index: 99;
|
2023-04-01 03:59:10 -04:00
|
|
|
font-size: 13px;
|
|
|
|
padding: 15px 5px;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $dark-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 0 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon-button {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
2023-04-01 03:59:10 -04:00
|
|
|
&__menu {
|
2023-08-28 07:18:39 -04:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2023-04-01 03:59:10 -04:00
|
|
|
&__message {
|
|
|
|
color: $dark-text-color;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
font: inherit;
|
|
|
|
background: transparent;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 4px;
|
|
|
|
text-align: start;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active,
|
|
|
|
&.selected {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mark {
|
|
|
|
background: transparent;
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
2023-09-11 22:20:57 -04:00
|
|
|
|
|
|
|
span {
|
|
|
|
overflow: inherit;
|
|
|
|
text-overflow: inherit;
|
|
|
|
}
|
2023-04-01 03:59:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
.search__popout {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 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%);
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
2017-03-31 13:59:54 -04:00
|
|
|
position: absolute;
|
2023-10-24 13:45:08 -04:00
|
|
|
top: 13px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 10px;
|
2017-03-31 13:59:54 -04:00
|
|
|
display: inline-block;
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 100ms linear;
|
2019-05-04 11:39:53 -04:00
|
|
|
transition-property: transform, opacity;
|
2023-10-24 13:45:08 -04:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon-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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon-times-circle {
|
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);
|
2023-08-23 09:51:07 -04:00
|
|
|
opacity: 1;
|
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;
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
|
|
|
|
2018-02-09 17:04:47 -05:00
|
|
|
.search-results__section {
|
2023-09-05 17:54:24 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
2018-02-09 17:04:47 -05:00
|
|
|
|
2023-09-05 17:54:24 -04:00
|
|
|
&__header {
|
2018-05-28 20:01:24 -04:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 15px;
|
|
|
|
font-weight: 500;
|
2023-09-05 17:54:24 -04:00
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2018-02-09 17:04:47 -05:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
h3 {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
2018-02-09 17:04:47 -05:00
|
|
|
}
|
2023-09-05 17:54:24 -04:00
|
|
|
|
|
|
|
button {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
background: 0;
|
|
|
|
font: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-04-01 16:11:28 -04:00
|
|
|
bottom: 0;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: rgba($base-overlay-background, 0.7);
|
2021-03-24 08:51:32 -04:00
|
|
|
transition: background 0.5s;
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2017-04-01 16:11:28 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-10-07 04:14:31 -04:00
|
|
|
box-sizing: border-box;
|
2017-04-01 16:11:28 -04:00
|
|
|
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;
|
2023-11-13 08:27:50 -05:00
|
|
|
user-select: text;
|
2017-04-01 16:11:28 -04:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2023-07-24 07:46:55 -04:00
|
|
|
.video-modal .video-player {
|
|
|
|
max-height: 80vh;
|
2018-03-04 14:32:24 -05:00
|
|
|
max-width: 100vw;
|
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
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
&__close,
|
|
|
|
&__zoom-button {
|
|
|
|
color: rgba($white, 0.7);
|
2018-03-27 06:30:28 -04:00
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: $white;
|
|
|
|
background-color: rgba($white, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($white, 0.3);
|
2018-03-27 06:30:28 -04:00
|
|
|
}
|
|
|
|
}
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2018-03-04 14:32:24 -05:00
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__navigation {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2018-03-04 14:32:24 -05:00
|
|
|
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 {
|
2020-11-26 21:24:11 -05:00
|
|
|
background: transparent;
|
2018-03-04 14:32:24 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
border: 0;
|
2023-05-31 20:25:38 -04:00
|
|
|
color: rgba($white, 0.7);
|
2018-03-04 14:32:24 -05:00
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 24px;
|
|
|
|
height: 20vmax;
|
|
|
|
margin: auto 0;
|
|
|
|
padding: 30px 15px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2020-11-26 21:24:11 -05:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2023-05-31 20:25:38 -04:00
|
|
|
color: $white;
|
2020-11-26 21:24:11 -05:00
|
|
|
}
|
2018-03-04 14:32:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav--left {
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2018-03-04 14:32:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__nav--right {
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 0;
|
2017-07-23 14:28:31 -04:00
|
|
|
}
|
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
.media-modal__overlay {
|
|
|
|
max-width: 600px;
|
2017-10-03 11:11:22 -04:00
|
|
|
position: absolute;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2020-11-26 21:24:11 -05:00
|
|
|
bottom: 0;
|
|
|
|
margin: 0 auto;
|
2017-10-03 11:11:22 -04:00
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
.picture-in-picture__footer {
|
|
|
|
border-radius: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 20px 0;
|
2019-05-03 10:16:30 -04:00
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
.icon-button {
|
|
|
|
color: $white;
|
2019-05-03 10:16:30 -04:00
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: $white;
|
|
|
|
background-color: rgba($white, 0.15);
|
|
|
|
}
|
2019-05-03 10:16:30 -04:00
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
&:focus {
|
|
|
|
background-color: rgba($white, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($highlight-text-color, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: rgba($highlight-text-color, 0.3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.star-icon.active {
|
|
|
|
color: $gold-star;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($gold-star, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: rgba($gold-star, 0.3);
|
|
|
|
}
|
|
|
|
}
|
2021-06-24 22:45:30 -04:00
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
color: $white;
|
|
|
|
background-color: transparent;
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2019-05-03 10:16:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
.media-modal__pagination {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 20px;
|
2017-10-03 11:11:22 -04:00
|
|
|
}
|
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
.media-modal__page-dot {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
background-color: $white;
|
|
|
|
opacity: 0.4;
|
|
|
|
height: 6px;
|
|
|
|
width: 6px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin: 0 4px;
|
2017-10-03 11:11:22 -04:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 0;
|
2022-06-01 13:22:35 -04:00
|
|
|
transition: opacity 0.2s ease-in-out;
|
2017-10-03 11:11:22 -04:00
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-04-25 05:12:37 -04:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 8px;
|
2018-03-04 14:32:24 -05:00
|
|
|
top: 8px;
|
2017-04-22 22:26:55 -04:00
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2020-11-02 15:16:38 -05:00
|
|
|
.media-modal__zoom-button {
|
|
|
|
position: absolute;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 64px;
|
2020-11-02 15:16:38 -05:00
|
|
|
top: 8px;
|
|
|
|
z-index: 100;
|
|
|
|
pointer-events: auto;
|
|
|
|
transition: opacity 0.3s linear;
|
|
|
|
will-change: opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal__zoom-button--hidden {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2017-04-16 14:32:00 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 25px;
|
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: 10px;
|
2018-01-19 19:32:37 -05:00
|
|
|
}
|
|
|
|
|
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,
|
2022-02-08 19:17:07 -05:00
|
|
|
.block-modal,
|
|
|
|
.compare-history-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-10 22:28:52 -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;
|
2022-10-25 13:02:21 -04:00
|
|
|
align-items: center;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-secondary-color;
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 15px;
|
2017-04-10 22:28:52 -04:00
|
|
|
|
2017-04-11 15:24:17 -04:00
|
|
|
& > div {
|
|
|
|
flex: 1 1 auto;
|
2023-03-27 04:56:25 -04:00
|
|
|
text-align: end;
|
2018-04-18 10:52:15 -04:00
|
|
|
color: $lighter-text-color;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 10px;
|
2017-04-11 15:24:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
2017-04-10 22:28:52 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-15 07:17:54 -04:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
.report-dialog-modal {
|
|
|
|
max-width: 90vw;
|
|
|
|
width: 480px;
|
|
|
|
height: 80vh;
|
|
|
|
background: lighten($ui-secondary-color, 8%);
|
|
|
|
color: $inverted-text-color;
|
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
flex-direction: column;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-top: 1px solid $ui-secondary-color;
|
|
|
|
padding: 20px;
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (height <= 800px) {
|
2022-02-23 14:03:46 -05:00
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__subtitle {
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__lead {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: lighten($inverted-text-color, 16%);
|
|
|
|
margin-bottom: 30px;
|
2022-08-24 22:27:47 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2022-02-23 14:03:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
margin-top: 30px;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__statuses {
|
|
|
|
flex-grow: 1;
|
|
|
|
min-height: 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content,
|
|
|
|
.status__content p {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
|
2022-03-22 01:08:05 -04:00
|
|
|
.status__content__spoiler-link {
|
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-primary-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-primary-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-23 14:03:46 -05:00
|
|
|
.dialog-option .poll__input {
|
|
|
|
border-color: $inverted-text-color;
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 8px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
border-color: lighten($inverted-text-color, 15%);
|
|
|
|
border-width: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border-color: $inverted-text-color;
|
|
|
|
background: $inverted-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll__option.dialog-option {
|
|
|
|
padding: 15px 0;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
border-bottom: 1px solid $ui-secondary-color;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .poll__option__text {
|
|
|
|
font-size: 13px;
|
|
|
|
color: lighten($inverted-text-color, 16%);
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 22px;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-spacer {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__textarea {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
background: $simple-background-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
resize: vertical;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__toggle {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-11-15 06:13:53 -05:00
|
|
|
margin-bottom: 16px;
|
|
|
|
gap: 8px;
|
2022-02-23 14:03:46 -05:00
|
|
|
|
|
|
|
& > span {
|
2023-11-15 06:13:53 -05:00
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
2022-02-23 14:03:46 -05:00
|
|
|
font-weight: 500;
|
2023-11-15 06:13:53 -05:00
|
|
|
line-height: 20px;
|
2022-02-23 14:03:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.button-secondary {
|
2023-08-04 10:25:44 -04:00
|
|
|
border-color: $inverted-text-color;
|
|
|
|
color: $inverted-text-color;
|
2022-02-23 14:03:46 -05:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2023-08-04 10:25:44 -04:00
|
|
|
background: transparent;
|
|
|
|
border-color: $ui-button-background-color;
|
|
|
|
color: $ui-button-background-color;
|
2022-02-23 14:03:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
margin: 15px 0;
|
|
|
|
}
|
2022-08-24 22:27:47 -04:00
|
|
|
|
|
|
|
.emoji-mart-search {
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 10px;
|
2022-08-24 22:27:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.emoji-mart-search-icon {
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 10px + 5px;
|
2022-08-24 22:27:47 -04:00
|
|
|
}
|
2022-02-23 14:03:46 -05:00
|
|
|
}
|
|
|
|
|
2018-02-28 00:54:55 -05:00
|
|
|
.report-modal__container {
|
|
|
|
display: flex;
|
|
|
|
border-top: 1px solid $ui-secondary-color;
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 00:54:55 -05:00
|
|
|
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%;
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 00:54:55 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 00:54:55 -05:00
|
|
|
max-height: 10vh;
|
|
|
|
}
|
2017-06-27 12:07:21 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 16:49:00 -04:00
|
|
|
.focal-point-modal__content {
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 480px) {
|
2019-08-15 16:49:00 -04:00
|
|
|
max-height: 40vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-07 06:14:19 -04:00
|
|
|
.setting-divider {
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
margin-bottom: 29px;
|
|
|
|
}
|
|
|
|
|
2017-06-27 12:07:21 -04:00
|
|
|
.report-modal__comment {
|
2018-02-28 00:54:55 -05:00
|
|
|
padding: 20px;
|
2023-04-04 10:48:34 -04:00
|
|
|
border-inline-end: 1px solid $ui-secondary-color;
|
2018-02-28 00:54:55 -05:00
|
|
|
max-width: 320px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2022-11-05 18:06:32 -04:00
|
|
|
.setting-text {
|
|
|
|
width: 100%;
|
|
|
|
resize: none;
|
|
|
|
min-height: 100px;
|
|
|
|
max-height: 50vh;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 480px) {
|
2018-02-28 00:54:55 -05:00
|
|
|
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-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 {
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2017-07-27 16:31:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2020-10-12 19:01:14 -04:00
|
|
|
|
|
|
|
select {
|
|
|
|
appearance: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
outline: 0;
|
|
|
|
font-family: inherit;
|
2023-02-12 22:57:03 -05:00
|
|
|
background: $simple-background-color
|
|
|
|
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.933 18.467' height='19.698' width='15.929'><path d='M3.467 14.967l-3.393-3.5H14.86l-3.392 3.5c-1.866 1.925-3.666 3.5-4 3.5-.335 0-2.135-1.575-4-3.5zm.266-11.234L7.467 0 11.2 3.733l3.733 3.734H0l3.733-3.734z' fill='#{hex-color(darken($simple-background-color, 14%))}'/></svg>")
|
|
|
|
no-repeat right 8px center / auto 16px;
|
2020-10-12 19:01:14 -04:00
|
|
|
border: 1px solid darken($simple-background-color, 14%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 6px 10px;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 30px;
|
2020-10-12 19:01:14 -04:00
|
|
|
}
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: 8px;
|
2019-09-29 15:46:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2021-05-11 15:15:57 -04:00
|
|
|
.report-modal__close {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 10px;
|
2018-03-01 22:36:00 -05:00
|
|
|
}
|
2018-02-28 00:54:55 -05:00
|
|
|
}
|
|
|
|
|
2022-02-08 19:17:07 -05:00
|
|
|
.compare-history-modal {
|
|
|
|
.report-modal__target {
|
|
|
|
border-bottom: 1px solid $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
padding: 30px;
|
|
|
|
pointer-events: all;
|
2023-02-06 10:53:31 -05:00
|
|
|
overflow-y: auto;
|
2022-02-08 19:17:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
color: $inverted-text-color;
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin: -1px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
height: 0.25rem;
|
|
|
|
padding: 0;
|
|
|
|
background-color: $ui-secondary-color;
|
|
|
|
border: 0;
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
}
|
2022-03-09 15:15:24 -05:00
|
|
|
|
|
|
|
.media-gallery,
|
|
|
|
.audio-player,
|
|
|
|
.video-player {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
2022-02-08 19:17:07 -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;
|
2022-04-28 18:15:27 -04:00
|
|
|
position: fixed;
|
2017-04-15 07:17:54 -04:00
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 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
|
|
|
|
2023-05-02 08:47:04 -04:00
|
|
|
.media-gallery__item__badges {
|
2017-04-17 19:57:50 -04:00
|
|
|
position: absolute;
|
|
|
|
bottom: 6px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 6px;
|
2023-05-02 08:47:04 -04:00
|
|
|
display: flex;
|
|
|
|
gap: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__gifv__label {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-05-02 08:47:04 -04:00
|
|
|
color: $white;
|
|
|
|
background: rgba($black, 0.65);
|
2023-06-25 23:27:07 -04:00
|
|
|
backdrop-filter: blur(10px) saturate(180%) contrast(75%) brightness(70%);
|
2017-04-17 19:57:50 -04:00
|
|
|
padding: 2px 6px;
|
2023-05-02 08:47:04 -04:00
|
|
|
border-radius: 4px;
|
2017-04-17 19:57:50 -04:00
|
|
|
font-size: 11px;
|
2023-05-02 08:47:04 -04:00
|
|
|
font-weight: 700;
|
2017-04-17 19:57:50 -04:00
|
|
|
z-index: 1;
|
|
|
|
pointer-events: none;
|
2019-05-02 02:34:32 -04:00
|
|
|
line-height: 18px;
|
2023-10-24 13:45:08 -04:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
2017-04-17 19:57:50 -04:00
|
|
|
}
|
|
|
|
|
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;
|
2022-10-25 13:02:21 -04:00
|
|
|
margin-top: 16px;
|
2017-04-19 09:37:18 -04:00
|
|
|
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;
|
2023-04-04 10:48:34 -04:00
|
|
|
border-inline-end: 1px solid lighten($ui-base-color, 8%);
|
2018-03-07 22:54:26 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 26px;
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 8px;
|
2018-03-07 22:54:26 -05:00
|
|
|
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;
|
2017-04-19 09:37:18 -04:00
|
|
|
|
2018-03-07 22:54:26 -05:00
|
|
|
.attachment-list__list {
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
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;
|
2023-07-24 07:46:55 -04:00
|
|
|
border-radius: 8px;
|
2017-04-22 22:26:55 -04:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2020-06-23 11:24:29 -04:00
|
|
|
min-height: 64px;
|
2023-05-02 08:47:04 -04:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 50%;
|
|
|
|
grid-template-rows: 50% 50%;
|
|
|
|
gap: 2px;
|
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;
|
|
|
|
position: relative;
|
2023-07-24 07:46:55 -04:00
|
|
|
border-radius: 8px;
|
2018-02-18 20:39:18 -05:00
|
|
|
overflow: hidden;
|
2017-09-23 23:58:30 -04:00
|
|
|
|
2023-05-02 08:47:04 -04:00
|
|
|
&--tall {
|
|
|
|
grid-row: span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--wide {
|
|
|
|
grid-column: span 2;
|
|
|
|
}
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2019-04-26 21:24:09 -04:00
|
|
|
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;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery__item-thumbnail-label {
|
|
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
}
|
2022-06-01 13:22:35 -04:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
/* 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%);
|
2023-07-24 07:46:55 -04:00
|
|
|
border-radius: 8px;
|
2019-08-23 16:38:02 -04:00
|
|
|
padding-bottom: 44px;
|
2023-04-30 00:42:22 -04:00
|
|
|
width: 100%;
|
2019-08-23 16:38:02 -04:00
|
|
|
|
|
|
|
&.editable {
|
|
|
|
border-radius: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-08-13 09:39:05 -04:00
|
|
|
&.inactive {
|
|
|
|
audio,
|
|
|
|
.video-player__controls {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 06:20:14 -04:00
|
|
|
.video-player__volume::before,
|
|
|
|
.video-player__seek::before {
|
2020-07-05 12:28:25 -04:00
|
|
|
background: currentColor;
|
|
|
|
opacity: 0.15;
|
2020-06-23 06:20:14 -04:00
|
|
|
}
|
|
|
|
|
2020-07-05 12:28:25 -04:00
|
|
|
.video-player__seek__buffer {
|
|
|
|
background: currentColor;
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
2020-06-20 20:27:19 -04:00
|
|
|
|
2021-08-11 11:48:55 -04:00
|
|
|
.video-player__buttons button,
|
|
|
|
.video-player__buttons a {
|
2020-07-05 12:28:25 -04:00
|
|
|
color: currentColor;
|
|
|
|
opacity: 0.75;
|
2020-06-20 20:27:19 -04:00
|
|
|
|
2020-07-05 12:28:25 -04:00
|
|
|
&:active,
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: currentColor;
|
|
|
|
opacity: 1;
|
2020-06-20 20:27:19 -04:00
|
|
|
}
|
2020-07-05 12:28:25 -04:00
|
|
|
}
|
2020-06-20 20:27:19 -04:00
|
|
|
|
2020-07-05 12:28:25 -04:00
|
|
|
.video-player__time-sep,
|
|
|
|
.video-player__time-total,
|
|
|
|
.video-player__time-current {
|
|
|
|
color: currentColor;
|
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-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%;
|
2023-07-24 07:46:55 -04:00
|
|
|
border-radius: 8px;
|
2019-08-23 16:38:02 -04:00
|
|
|
box-sizing: border-box;
|
2020-06-23 06:20:14 -04:00
|
|
|
color: $white;
|
2023-05-10 11:22:34 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
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;
|
2017-09-13 21:39:10 -04:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.fullscreen {
|
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
margin: 0;
|
2023-07-24 07:46:55 -04:00
|
|
|
aspect-ratio: auto !important;
|
2017-09-13 21:39:10 -04:00
|
|
|
|
|
|
|
video {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__controls {
|
|
|
|
position: absolute;
|
2023-04-28 07:12:35 -04:00
|
|
|
direction: ltr;
|
2017-09-13 21:39:10 -04:00
|
|
|
z-index: 2;
|
|
|
|
bottom: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
inset-inline-end: 0;
|
2017-09-13 21:39:10 -04:00
|
|
|
box-sizing: border-box;
|
2023-02-12 22:57:03 -05:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
rgba($base-shadow-color, 0.85) 0,
|
|
|
|
rgba($base-shadow-color, 0.45) 60%,
|
|
|
|
transparent
|
|
|
|
);
|
2017-12-08 18:55:58 -05:00
|
|
|
padding: 0 15px;
|
2017-09-13 21:39:10 -04:00
|
|
|
opacity: 0;
|
2022-06-01 13:22:35 -04:00
|
|
|
transition: opacity 0.1s ease;
|
2017-09-13 21:39:10 -04:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inactive {
|
|
|
|
video,
|
|
|
|
.video-player__controls {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__spoiler {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2017-09-13 21:39:10 -04:00
|
|
|
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;
|
2020-10-26 21:58:47 -04:00
|
|
|
padding-bottom: 8px;
|
|
|
|
margin: 0 -5px;
|
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-12-08 18:55:58 -05:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-10-24 13:45:08 -04:00
|
|
|
gap: 5px;
|
2017-09-13 21:39:10 -04:00
|
|
|
|
2020-10-26 21:58:47 -04:00
|
|
|
.player-button {
|
|
|
|
display: inline-block;
|
|
|
|
outline: 0;
|
2023-10-24 13:45:08 -04:00
|
|
|
padding: 5px;
|
2020-06-23 06:20:14 -04:00
|
|
|
flex: 0 0 auto;
|
2017-09-13 21:39:10 -04:00
|
|
|
background: transparent;
|
|
|
|
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;
|
2020-10-26 21:58:47 -04:00
|
|
|
margin: 0 5px;
|
2020-06-23 06:20:14 -04:00
|
|
|
}
|
|
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 16px;
|
2020-06-23 06:20:14 -04:00
|
|
|
}
|
2018-11-27 06:25:38 -05:00
|
|
|
|
|
|
|
&::before {
|
2023-02-12 22:57:03 -05:00
|
|
|
content: '';
|
2018-11-27 06:25:38 -05:00
|
|
|
width: 50px;
|
|
|
|
background: rgba($white, 0.35);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2020-06-23 06:20:14 -04:00
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2018-11-27 06:25:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__current {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
|
|
|
border-radius: 4px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2020-06-23 06:20:14 -04:00
|
|
|
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%;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
|
|
|
margin-inline-start: -6px;
|
2020-06-23 06:20:14 -04:00
|
|
|
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 {
|
2023-02-12 22:57:03 -05:00
|
|
|
content: '';
|
2017-09-13 21:39:10 -04:00
|
|
|
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;
|
2020-10-26 21:58:47 -04:00
|
|
|
top: 14px;
|
2017-09-13 21:39:10 -04:00
|
|
|
}
|
|
|
|
|
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;
|
2020-10-26 21:58:47 -04:00
|
|
|
top: 14px;
|
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;
|
2020-10-26 21:58:47 -04:00
|
|
|
top: 10px;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: -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 & {
|
2022-06-01 13:22:35 -04:00
|
|
|
transition: opacity 0.1s ease;
|
2020-06-24 04:25:32 -04:00
|
|
|
}
|
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 {
|
2020-10-26 21:58:47 -04:00
|
|
|
.player-button {
|
2017-12-08 18:55:58 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 05:38:52 -05:00
|
|
|
.scrollable .account-card {
|
|
|
|
margin: 10px;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
2019-08-29 18:14:36 -04:00
|
|
|
|
2022-03-07 05:38:52 -05:00
|
|
|
.scrollable .account-card__title__avatar {
|
|
|
|
img,
|
|
|
|
.account__avatar {
|
|
|
|
border-color: lighten($ui-base-color, 8%);
|
2019-08-29 18:14:36 -04:00
|
|
|
}
|
2022-03-07 05:38:52 -05:00
|
|
|
}
|
2019-08-29 18:14:36 -04:00
|
|
|
|
2022-03-07 05:38:52 -05:00
|
|
|
.scrollable .account-card__bio::after {
|
2023-02-12 22:57:03 -05:00
|
|
|
background: linear-gradient(
|
|
|
|
to left,
|
|
|
|
lighten($ui-base-color, 8%),
|
|
|
|
transparent
|
|
|
|
);
|
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%;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 50%;
|
2019-05-08 12:01:33 -04:00
|
|
|
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 {
|
2023-09-05 17:54:24 -04:00
|
|
|
background: $ui-base-color;
|
2018-03-01 22:35:49 -05:00
|
|
|
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 {
|
2023-09-05 17:54:24 -04:00
|
|
|
background: transparent;
|
2018-12-17 15:08:40 -05:00
|
|
|
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 {
|
2023-09-05 17:54:24 -04:00
|
|
|
color: $primary-text-color;
|
2018-02-28 20:48:44 -05:00
|
|
|
|
2023-09-05 17:54:24 -04:00
|
|
|
&::before {
|
2018-02-28 20:48:44 -05:00
|
|
|
display: block;
|
2023-02-12 22:57:03 -05:00
|
|
|
content: '';
|
2018-02-28 20:48:44 -05:00
|
|
|
position: absolute;
|
|
|
|
bottom: -1px;
|
2023-09-05 17:54:24 -04:00
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 3px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: $highlight-text-color;
|
2018-02-28 20:48:44 -05:00
|
|
|
}
|
|
|
|
}
|
2017-05-19 19:28:25 -04:00
|
|
|
}
|
2019-08-29 18:14:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.filter-form {
|
|
|
|
background: $ui-base-color;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
padding: 10px 15px;
|
2022-03-07 05:38:52 -05:00
|
|
|
padding-bottom: 0;
|
2019-08-29 18:14:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.radio-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-01 07:31:28 -04:00
|
|
|
.column-settings__row .radio-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-08-29 18:14:36 -04:00
|
|
|
.radio-button {
|
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 0;
|
|
|
|
line-height: 18px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2023-02-12 22:57:03 -05:00
|
|
|
input[type='radio'],
|
|
|
|
input[type='checkbox'] {
|
2019-08-29 18:14:36 -04:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2019-08-29 18:14:36 -04:00
|
|
|
top: -1px;
|
|
|
|
border-radius: 50%;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&.checked {
|
2022-06-19 02:18:08 -04:00
|
|
|
border-color: lighten($ui-highlight-color, 4%);
|
|
|
|
background: lighten($ui-highlight-color, 4%);
|
2019-08-29 18:14:36 -04:00
|
|
|
}
|
|
|
|
}
|
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-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 {
|
2023-02-12 22:57:03 -05:00
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-07-23 14:28:06 -04:00
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 630px) and (height <= 400px) {
|
2017-07-20 19:38:24 -04:00
|
|
|
$duration: 400ms;
|
|
|
|
$delay: 100ms;
|
|
|
|
|
|
|
|
.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 {
|
2023-03-27 04:56:25 -04:00
|
|
|
will-change: margin-top, margin-inline-start, margin-inline-end, width;
|
2023-07-13 05:26:45 -04:00
|
|
|
transition:
|
|
|
|
margin-top $duration $delay,
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start $duration ($duration + $delay),
|
|
|
|
margin-inline-end $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;
|
2023-07-13 05:26:45 -04:00
|
|
|
transition:
|
|
|
|
opacity $duration * 0.5 $delay,
|
|
|
|
transform $duration $delay;
|
2018-06-13 08:44:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
& > .compose__action-bar .icon-button {
|
|
|
|
will-change: opacity transform;
|
2023-07-13 05:26:45 -04:00
|
|
|
transition:
|
|
|
|
opacity $duration * 0.5 $delay + $duration * 0.5,
|
2022-06-01 13:22:35 -04:00
|
|
|
transform $duration $delay;
|
2018-06-13 08:44:50 -04:00
|
|
|
}
|
2017-07-20 19:38:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-composing {
|
|
|
|
.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%);
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 600px) {
|
2017-09-05 06:31:24 -04:00
|
|
|
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
|
|
|
|
2022-12-15 12:50:11 -05:00
|
|
|
.moved-account-banner,
|
2023-04-12 08:50:02 -04:00
|
|
|
.follow-request-banner,
|
|
|
|
.account-memorial-banner {
|
2022-11-05 16:11:24 -04:00
|
|
|
padding: 20px;
|
2017-11-18 13:39:02 -05:00
|
|
|
background: lighten($ui-base-color, 4%);
|
2022-11-05 16:11:24 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2017-11-18 13:39:02 -05:00
|
|
|
|
|
|
|
&__message {
|
2022-11-05 16:11:24 -04:00
|
|
|
color: $darker-text-color;
|
2017-11-18 13:39:02 -05:00
|
|
|
padding: 8px 0;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
font-size: 14px;
|
2022-11-05 16:11:24 -04:00
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 16px;
|
2017-11-18 13:39:02 -05:00
|
|
|
}
|
|
|
|
|
2022-11-05 16:11:24 -04:00
|
|
|
&__action {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
gap: 15px;
|
2022-12-15 12:50:11 -05:00
|
|
|
width: 100%;
|
2017-11-18 13:39:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-name {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-12-05 17:02:27 -05:00
|
|
|
|
2022-12-15 12:50:11 -05:00
|
|
|
.follow-request-banner .button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-04-12 08:50:02 -04:00
|
|
|
.account-memorial-banner__message {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-12-05 17:02:27 -05:00
|
|
|
.column-inline-form {
|
2019-06-08 04:23:41 -04:00
|
|
|
padding: 15px;
|
2017-12-05 17:02:27 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2022-11-05 18:06:32 -04:00
|
|
|
gap: 15px;
|
2017-12-05 17:02:27 -05:00
|
|
|
align-items: center;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
label {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer__backdrop {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2017-12-05 17:02:27 -05:00
|
|
|
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;
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 420px) {
|
2017-12-06 13:48:48 -05:00
|
|
|
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;
|
2023-04-04 05:41:05 -04:00
|
|
|
border-radius: 4px;
|
2017-12-05 17:02:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 420px) {
|
2018-11-05 12:52:38 -05:00
|
|
|
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%);
|
2022-10-28 11:10:00 -04:00
|
|
|
background: url('~images/reticle.png') no-repeat 0 0;
|
2018-02-21 18:35:46 -05:00
|
|
|
border-radius: 50%;
|
|
|
|
box-shadow: 0 0 0 9999em rgba($base-shadow-color, 0.35);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__overlay {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2018-02-21 18:35:46 -05:00
|
|
|
}
|
2019-08-13 22:07:32 -04:00
|
|
|
|
|
|
|
&__preview {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 10px;
|
2019-08-13 22:07:32 -04:00
|
|
|
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
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 480px) {
|
2019-08-15 14:28:56 -04:00
|
|
|
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;
|
2023-11-16 06:59:45 -05:00
|
|
|
container: account-header / inline-size;
|
2018-04-14 06:41:08 -04:00
|
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 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%);
|
2023-06-25 23:27:07 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
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;
|
2022-10-25 13:02:21 -04:00
|
|
|
padding: 0 20px;
|
2023-06-25 23:27:07 -04:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
flex: 0 0 auto;
|
2019-03-26 18:05:21 -04:00
|
|
|
width: 94px;
|
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%);
|
2023-06-25 23:27:07 -04:00
|
|
|
border: 2px solid $ui-base-color;
|
2019-03-25 19:36:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-27 10:05:24 -04:00
|
|
|
&__badges {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 8px;
|
|
|
|
|
|
|
|
.account-role {
|
|
|
|
line-height: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 19:36:25 -04:00
|
|
|
&__tabs {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
2022-11-14 00:05:10 -05:00
|
|
|
justify-content: space-between;
|
2019-03-25 19:36:25 -04:00
|
|
|
margin-top: -55px;
|
2022-10-25 13:02:21 -04:00
|
|
|
padding-top: 10px;
|
2022-11-14 00:05:10 -05:00
|
|
|
gap: 8px;
|
|
|
|
overflow: hidden;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: -2px; // aligns the pfp with content below
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-10-23 09:58:24 -04:00
|
|
|
gap: 8px;
|
2019-03-25 19:36:25 -04:00
|
|
|
padding-top: 55px;
|
2019-03-26 18:05:21 -04:00
|
|
|
overflow: hidden;
|
2019-03-25 19:36:25 -04:00
|
|
|
|
2022-11-14 00:05:10 -05:00
|
|
|
.button {
|
|
|
|
flex-shrink: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2023-10-26 19:37:58 -04:00
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
2023-11-16 05:23:14 -05:00
|
|
|
|
|
|
|
&.copied {
|
|
|
|
border-color: $valid-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-16 06:59:45 -05:00
|
|
|
@container account-header (max-width: 372px) {
|
2023-11-16 05:23:14 -05:00
|
|
|
.optional {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-03-26 18:05:21 -04:00
|
|
|
}
|
2019-03-25 19:36:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
2022-10-25 13:02:21 -04:00
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2022-10-25 13:02:21 -04:00
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
2019-03-25 19:36:25 -04:00
|
|
|
color: $primary-text-color;
|
2022-10-25 13:02:21 -04:00
|
|
|
font-weight: 700;
|
2019-03-25 19:36:25 -04:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
2022-10-25 13:02:21 -04:00
|
|
|
font-size: 15px;
|
2019-03-25 19:36:25 -04:00
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2022-12-13 13:43:03 -05:00
|
|
|
|
|
|
|
span {
|
|
|
|
user-select: all;
|
|
|
|
}
|
2019-03-25 19:36:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bio {
|
|
|
|
.account__header__content {
|
|
|
|
color: $primary-text-color;
|
2022-10-25 13:02:21 -04:00
|
|
|
}
|
2020-07-06 19:24:03 -04:00
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
.account__header__fields {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 16px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
dl {
|
|
|
|
display: block;
|
|
|
|
padding: 11px 16px;
|
|
|
|
border-bottom-color: lighten($ui-base-color, 4%);
|
2020-07-06 19:24:03 -04:00
|
|
|
}
|
2019-03-25 19:36:25 -04:00
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
dd,
|
|
|
|
dt {
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
padding: 0;
|
|
|
|
text-align: initial;
|
|
|
|
}
|
2021-05-07 08:33:19 -04:00
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
dt {
|
|
|
|
width: auto;
|
|
|
|
background: transparent;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $dark-text-color;
|
2021-05-07 08:33:19 -04:00
|
|
|
}
|
|
|
|
|
2022-10-25 13:02:21 -04:00
|
|
|
dd {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: lighten($ui-highlight-color, 8%);
|
|
|
|
}
|
|
|
|
|
2023-10-26 19:37:58 -04:00
|
|
|
.icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
2022-11-03 21:28:00 -04:00
|
|
|
.verified {
|
|
|
|
border: 1px solid rgba($valid-value-color, 0.5);
|
2022-12-06 17:54:02 -05:00
|
|
|
margin-top: -1px;
|
2022-11-03 21:28:00 -04:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
2022-12-06 17:54:02 -05:00
|
|
|
margin-top: 0;
|
2022-11-03 21:28:00 -04:00
|
|
|
}
|
2019-03-25 19:36:25 -04:00
|
|
|
|
2022-11-03 21:28:00 -04:00
|
|
|
&:last-child {
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt,
|
|
|
|
dd {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
2019-03-25 19:36:25 -04:00
|
|
|
|
2023-10-26 19:37:58 -04:00
|
|
|
dd {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-03 21:28:00 -04:00
|
|
|
a {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
2019-03-25 19:36:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__extra {
|
2022-10-25 13:02:21 -04:00
|
|
|
margin-top: 16px;
|
2019-03-25 19:36:25 -04:00
|
|
|
|
|
|
|
&__links {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
2022-10-25 13:02:21 -04:00
|
|
|
margin: 0 -10px;
|
|
|
|
padding-top: 16px;
|
|
|
|
padding-bottom: 10px;
|
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
|
|
|
}
|
2020-06-30 13:19:50 -04:00
|
|
|
|
|
|
|
&__account-note {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
2022-10-25 13:02:21 -04:00
|
|
|
margin-bottom: 10px;
|
2020-06-30 13:19:50 -04:00
|
|
|
|
2020-07-06 19:24:03 -04:00
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
2020-06-30 13:19:50 -04:00
|
|
|
font-weight: 500;
|
2020-07-06 19:24:03 -04:00
|
|
|
color: $darker-text-color;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 5px;
|
2020-06-30 13:19:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
2020-07-06 19:24:03 -04:00
|
|
|
width: calc(100% + 20px);
|
|
|
|
color: $secondary-text-color;
|
|
|
|
background: transparent;
|
2020-06-30 13:19:50 -04:00
|
|
|
padding: 10px;
|
2020-07-06 19:24:03 -04:00
|
|
|
margin: 0 -10px;
|
2020-06-30 13:19:50 -04:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
resize: none;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
border-radius: 4px;
|
2020-07-06 19:24:03 -04:00
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: $dark-text-color;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: $ui-base-color;
|
|
|
|
}
|
2020-06-30 13:19:50 -04:00
|
|
|
}
|
|
|
|
}
|
2018-04-14 06:41:08 -04:00
|
|
|
}
|
2018-05-27 15:45:30 -04:00
|
|
|
|
2023-06-01 08:47:55 -04:00
|
|
|
.account__contents {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__details {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
column-gap: 1em;
|
|
|
|
}
|
|
|
|
|
2023-03-25 03:46:32 -04:00
|
|
|
.verified-badge {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
color: $valid-value-color;
|
|
|
|
gap: 4px;
|
2023-04-23 16:24:53 -04:00
|
|
|
overflow: hidden;
|
2023-06-01 08:47:55 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2023-03-25 03:46:32 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2018-05-27 15:45:30 -04:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2018-05-27 15:45:30 -04:00
|
|
|
}
|
2023-10-24 13:45:08 -04:00
|
|
|
}
|
2018-05-27 15:45:30 -04:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.trends {
|
2018-05-27 15:45:30 -04:00
|
|
|
&__item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 15px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2022-10-28 06:56:51 -04:00
|
|
|
gap: 15px;
|
2018-05-27 15:45:30 -04:00
|
|
|
|
|
|
|
&: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;
|
|
|
|
font-weight: 500;
|
2023-03-27 04:56:25 -04:00
|
|
|
text-align: end;
|
2018-05-27 15:45:30 -04:00
|
|
|
color: $secondary-text-color;
|
2022-07-21 21:17:41 -04:00
|
|
|
text-decoration: none;
|
2018-05-27 15:45:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__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;
|
2023-01-04 07:13:57 -05:00
|
|
|
fill-opacity: 1 !important;
|
2019-08-06 11:57:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2021-10-14 14:44:59 -04:00
|
|
|
|
|
|
|
&--requires-review {
|
|
|
|
.trends__item__name {
|
|
|
|
color: $gold-star;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__current {
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__sparkline {
|
|
|
|
path:first-child {
|
|
|
|
fill: rgba($gold-star, 0.25) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
path:last-child {
|
|
|
|
stroke: lighten($gold-star, 6%) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--disabled {
|
|
|
|
.trends__item__name {
|
|
|
|
color: lighten($ui-base-color, 12%);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: lighten($ui-base-color, 12%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__current {
|
|
|
|
color: lighten($ui-base-color, 12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item__sparkline {
|
|
|
|
path:first-child {
|
|
|
|
fill: rgba(lighten($ui-base-color, 12%), 0.25) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
path:last-child {
|
|
|
|
stroke: lighten(lighten($ui-base-color, 12%), 6%) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--compact &__item {
|
|
|
|
padding: 10px;
|
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;
|
2022-06-01 13:22:35 -04:00
|
|
|
margin: -0.1ex 0.15em 0.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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 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;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-end: 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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 19px;
|
2020-02-08 17:44:01 -05:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 0;
|
2020-01-23 16:00:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: -2px;
|
2020-01-23 16:00:13 -05:00
|
|
|
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;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: 6px;
|
2020-01-23 16:00:13 -05:00
|
|
|
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;
|
2023-02-12 22:57:03 -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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-26 14:57:07 -04:00
|
|
|
|
|
|
|
.notification,
|
|
|
|
.status__wrapper {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&.unread {
|
|
|
|
&::before {
|
2023-02-12 22:57:03 -05:00
|
|
|
content: '';
|
2020-09-26 14:57:07 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2020-09-26 14:57:07 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-04-04 10:48:34 -04:00
|
|
|
border-inline-start: 4px solid $highlight-text-color;
|
2020-09-26 14:57:07 -04:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 07:29:43 -04:00
|
|
|
|
|
|
|
.picture-in-picture {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 20px;
|
2020-09-28 07:29:43 -04:00
|
|
|
width: 300px;
|
|
|
|
|
|
|
|
&__footer {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 12px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
padding: 10px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
&__account {
|
|
|
|
display: flex;
|
|
|
|
text-decoration: none;
|
2021-07-05 13:16:06 -04:00
|
|
|
overflow: hidden;
|
2020-09-28 07:29:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2020-09-28 07:29:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
strong,
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.picture-in-picture-placeholder {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 2px dashed lighten($ui-base-color, 8%);
|
|
|
|
background: $base-shadow-color;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
cursor: pointer;
|
|
|
|
color: $darker-text-color;
|
2023-05-02 07:58:48 -04:00
|
|
|
aspect-ratio: 16 / 9;
|
2020-09-28 07:29:43 -04:00
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.icon {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2020-09-28 07:29:43 -04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-color: lighten($ui-base-color, 12%);
|
|
|
|
}
|
|
|
|
}
|
2020-10-15 10:24:47 -04:00
|
|
|
|
|
|
|
.notifications-permission-banner {
|
|
|
|
padding: 30px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-11-10 23:36:29 -05:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__close {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 10px;
|
2020-11-10 23:36:29 -05:00
|
|
|
}
|
2020-10-15 10:24:47 -04:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2022-02-24 18:34:33 -05:00
|
|
|
|
|
|
|
.explore__search-header {
|
2022-10-04 14:13:23 -04:00
|
|
|
background: darken($ui-base-color, 4%);
|
2022-02-24 18:34:33 -05:00
|
|
|
justify-content: center;
|
2022-10-04 14:13:23 -04:00
|
|
|
align-items: center;
|
2022-02-24 18:34:33 -05:00
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
.search {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search__input {
|
2022-10-04 14:13:23 -04:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2022-02-24 18:34:33 -05:00
|
|
|
padding: 10px;
|
2023-07-24 11:56:20 -04:00
|
|
|
padding-inline-end: 28px;
|
2022-02-24 18:34:33 -05:00
|
|
|
}
|
|
|
|
|
2023-04-01 03:59:10 -04:00
|
|
|
.search__popout {
|
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2023-10-24 13:45:08 -04:00
|
|
|
.search .icon {
|
|
|
|
top: 9px;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-end: 10px;
|
2022-02-24 18:34:33 -05:00
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.explore__search-results {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-10-03 07:12:39 -04:00
|
|
|
background: $ui-base-color;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
2022-02-24 18:34:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.story {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
2023-07-24 18:57:15 -04:00
|
|
|
padding: 15px;
|
2022-02-24 18:34:33 -05:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2023-07-24 18:57:15 -04:00
|
|
|
gap: 15px;
|
2022-02-24 18:34:33 -05:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2023-07-24 18:57:15 -04:00
|
|
|
color: $highlight-text-color;
|
|
|
|
|
|
|
|
.story__details__publisher,
|
|
|
|
.story__details__shared {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
2022-02-24 18:34:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__details {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
&__publisher {
|
|
|
|
color: $darker-text-color;
|
2023-07-24 18:57:15 -04:00
|
|
|
margin-bottom: 8px;
|
2022-02-24 18:34:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 500;
|
2023-07-24 18:57:15 -04:00
|
|
|
margin-bottom: 8px;
|
2022-02-24 18:34:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__shared {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
2023-07-24 18:57:15 -04:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2022-02-24 18:34:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&__thumbnail {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
position: relative;
|
|
|
|
width: 120px;
|
2023-07-29 21:35:17 -04:00
|
|
|
aspect-ratio: 1;
|
2022-02-24 18:34:33 -05:00
|
|
|
|
|
|
|
.skeleton {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2023-07-24 18:57:15 -04:00
|
|
|
border-radius: 8px;
|
2022-02-24 18:34:33 -05:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__preview {
|
2023-07-24 18:57:15 -04:00
|
|
|
border-radius: 8px;
|
2022-02-24 18:34:33 -05:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: fill;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2022-02-24 18:34:33 -05:00
|
|
|
z-index: 0;
|
|
|
|
|
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-24 18:57:15 -04:00
|
|
|
|
|
|
|
&.expanded {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.story__thumbnail {
|
|
|
|
order: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
aspect-ratio: 1.91 / 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.story__details {
|
|
|
|
order: 2;
|
|
|
|
width: 100%;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
2022-02-24 18:34:33 -05:00
|
|
|
}
|
2022-10-04 21:47:56 -04:00
|
|
|
|
|
|
|
.server-banner {
|
|
|
|
padding: 20px 0;
|
|
|
|
|
|
|
|
&__introduction {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__hero {
|
|
|
|
display: block;
|
|
|
|
border-radius: 4px;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
aspect-ratio: 1.9;
|
|
|
|
border: 0;
|
|
|
|
background: $ui-base-color;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: calc(50% - 5px);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__number {
|
|
|
|
font-weight: 600;
|
|
|
|
color: $primary-text-color;
|
2022-10-05 01:02:09 -04:00
|
|
|
font-size: 14px;
|
2022-10-04 21:47:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__number-label {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 500;
|
2022-10-05 01:02:09 -04:00
|
|
|
font-size: 14px;
|
2022-10-04 21:47:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar-wrapper {
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: 0;
|
2022-10-04 21:47:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
}
|
2022-10-07 04:14:31 -04:00
|
|
|
|
|
|
|
.interaction-modal {
|
|
|
|
max-width: 90vw;
|
|
|
|
width: 600px;
|
2023-07-27 10:11:17 -04:00
|
|
|
background: var(--modal-background-color);
|
|
|
|
border: 1px solid var(--modal-border-color);
|
2022-10-07 04:14:31 -04:00
|
|
|
border-radius: 8px;
|
2023-07-27 10:11:17 -04:00
|
|
|
overflow: visible;
|
2022-10-07 04:14:31 -04:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
2023-07-27 10:11:17 -04:00
|
|
|
padding: 40px;
|
2022-10-07 04:14:31 -04:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 22px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
p {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p.hint {
|
|
|
|
margin-bottom: 14px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2022-10-07 04:14:31 -04:00
|
|
|
&__icon {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__lead {
|
2023-07-27 10:11:17 -04:00
|
|
|
margin-bottom: 20px;
|
2022-10-07 04:14:31 -04:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
&__login {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 20px;
|
2022-10-07 04:14:31 -04:00
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
&__input {
|
|
|
|
@include search-input;
|
2022-10-07 04:14:31 -04:00
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 4px 6px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 18px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-10-07 04:14:31 -04:00
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
input {
|
|
|
|
background: transparent;
|
|
|
|
color: inherit;
|
|
|
|
font: inherit;
|
|
|
|
border: 0;
|
|
|
|
padding: 15px - 4px 15px - 6px;
|
|
|
|
flex: 1 1 auto;
|
2022-10-07 04:14:31 -04:00
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
&::placeholder {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
2022-10-07 04:14:31 -04:00
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
2022-10-07 04:14:31 -04:00
|
|
|
}
|
|
|
|
}
|
2023-07-27 10:11:17 -04:00
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search__popout {
|
|
|
|
margin-top: -1px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.focused &__input {
|
|
|
|
border-color: $highlight-text-color;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
2022-10-07 04:14:31 -04:00
|
|
|
}
|
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
&.invalid &__input {
|
|
|
|
border-color: $error-red;
|
2022-10-07 04:14:31 -04:00
|
|
|
}
|
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
&.expanded .search__popout {
|
2022-10-07 04:14:31 -04:00
|
|
|
display: block;
|
2023-07-27 10:11:17 -04:00
|
|
|
}
|
2022-10-07 04:14:31 -04:00
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
&.expanded &__input {
|
|
|
|
border-radius: 4px 4px 0 0;
|
2022-10-07 04:14:31 -04:00
|
|
|
}
|
|
|
|
}
|
2023-07-27 10:11:17 -04:00
|
|
|
|
2023-08-22 03:11:59 -04:00
|
|
|
&__choices {
|
|
|
|
display: flex;
|
|
|
|
gap: 40px;
|
|
|
|
|
|
|
|
&__choice {
|
|
|
|
flex: 1;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-gap-breakpoint - 1px) {
|
|
|
|
&__choices {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
&__choice {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-27 10:11:17 -04:00
|
|
|
.link-button {
|
|
|
|
font-size: inherit;
|
|
|
|
display: inline;
|
|
|
|
}
|
2022-10-07 04:14:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.copypaste {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
input {
|
|
|
|
display: block;
|
|
|
|
font-family: inherit;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
border: 1px solid $highlight-text-color;
|
|
|
|
color: $darker-text-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 6px 9px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-size: 14px;
|
|
|
|
transition: border-color 300ms linear;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
transition: background 300ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
input {
|
|
|
|
border: 1px solid $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
|
|
|
.privacy-policy {
|
|
|
|
background: $ui-base-color;
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
margin-top: 20px;
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
.prose {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
p,
|
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
margin-top: 1.25em;
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
img {
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 2em;
|
2023-03-20 15:04:25 -04:00
|
|
|
max-width: 100%;
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
video {
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 2em;
|
2023-03-20 15:04:25 -04:00
|
|
|
max-width: 100%;
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
figure {
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
|
|
|
figcaption {
|
|
|
|
font-size: 0.875em;
|
|
|
|
line-height: 1.4285714;
|
|
|
|
margin-top: 0.8571429em;
|
2022-10-08 00:01:11 -04:00
|
|
|
}
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
figure > * {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
h1 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
line-height: 1.33;
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
h2 {
|
|
|
|
font-size: 1.25em;
|
|
|
|
margin-top: 1.6em;
|
|
|
|
margin-bottom: 0.6em;
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
margin-top: 1.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
ol {
|
|
|
|
counter-reset: list-counter;
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
li {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
ol > li {
|
|
|
|
counter-increment: list-counter;
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
&::before {
|
2023-02-12 22:57:03 -05:00
|
|
|
content: counter(list-counter) '.';
|
2022-10-13 08:42:37 -04:00
|
|
|
position: absolute;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2022-10-08 00:01:11 -04:00
|
|
|
}
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
ul > li::before {
|
2023-02-12 22:57:03 -05:00
|
|
|
content: '';
|
2022-10-13 08:42:37 -04:00
|
|
|
position: absolute;
|
|
|
|
background-color: $darker-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.375em;
|
|
|
|
height: 0.375em;
|
|
|
|
top: 0.5em;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0.25em;
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
ul > li,
|
|
|
|
ol > li {
|
|
|
|
position: relative;
|
2023-03-27 04:56:25 -04:00
|
|
|
padding-inline-start: 1.75em;
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
& > ul > li p {
|
|
|
|
margin-top: 0.75em;
|
|
|
|
margin-bottom: 0.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ul > li > *:first-child {
|
|
|
|
margin-top: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ul > li > *:last-child {
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ol > li > *:first-child {
|
|
|
|
margin-top: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ol > li > *:last-child {
|
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul ul,
|
|
|
|
ul ol,
|
|
|
|
ol ul,
|
|
|
|
ol ol {
|
|
|
|
margin-top: 0.75em;
|
|
|
|
margin-bottom: 0.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
strong,
|
|
|
|
b {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
em,
|
|
|
|
i {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
2022-10-08 00:01:11 -04:00
|
|
|
}
|
|
|
|
}
|
2022-10-13 08:42:37 -04:00
|
|
|
|
|
|
|
code {
|
|
|
|
font-size: 0.875em;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0.2em 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 0;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
margin-top: 3em;
|
|
|
|
margin-bottom: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 + *,
|
|
|
|
h5 + *,
|
|
|
|
h6 + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > :first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > :last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-10-08 00:01:11 -04:00
|
|
|
}
|
2022-10-09 00:08:37 -04:00
|
|
|
|
2023-09-01 11:47:07 -04:00
|
|
|
.dismissable-banner,
|
|
|
|
.warning-banner {
|
2023-06-22 17:48:40 -04:00
|
|
|
position: relative;
|
|
|
|
margin: 10px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 1px solid $highlight-text-color;
|
|
|
|
background: rgba($highlight-text-color, 0.15);
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__background-image {
|
|
|
|
width: 125%;
|
|
|
|
position: absolute;
|
|
|
|
bottom: -25%;
|
|
|
|
inset-inline-end: -25%;
|
|
|
|
z-index: -1;
|
|
|
|
opacity: 0.15;
|
|
|
|
mix-blend-mode: luminosity;
|
|
|
|
}
|
2022-10-09 00:08:37 -04:00
|
|
|
|
|
|
|
&__message {
|
|
|
|
flex: 1 1 auto;
|
2023-06-22 17:48:40 -04:00
|
|
|
padding: 15px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-weight: 500;
|
2022-10-09 00:08:37 -04:00
|
|
|
color: $primary-text-color;
|
2023-06-22 17:48:40 -04:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
font-size: 22px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
display: flex;
|
2023-06-26 06:31:48 -04:00
|
|
|
flex-wrap: wrap;
|
2023-06-22 17:48:40 -04:00
|
|
|
gap: 4px;
|
2023-06-26 06:31:48 -04:00
|
|
|
|
|
|
|
&__wrapper {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: block;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2023-06-22 17:48:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-tertiary {
|
|
|
|
background: rgba($ui-base-color, 0.15);
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
}
|
2022-10-09 00:08:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__action {
|
2023-09-15 13:53:28 -04:00
|
|
|
float: right;
|
2023-09-06 22:24:11 -04:00
|
|
|
padding: 15px 10px;
|
2023-06-22 17:48:40 -04:00
|
|
|
|
|
|
|
.icon-button {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
2022-10-09 00:08:37 -04:00
|
|
|
}
|
|
|
|
}
|
2022-10-13 08:42:37 -04:00
|
|
|
|
2023-09-01 11:47:07 -04:00
|
|
|
.warning-banner {
|
|
|
|
border: 1px solid $warning-red;
|
|
|
|
background: rgba($warning-red, 0.15);
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
h1 {
|
|
|
|
color: $warning-red;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
.image {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__preview {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-03-27 04:56:25 -04:00
|
|
|
inset-inline-start: 0;
|
2022-10-13 08:42:37 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.loaded &__preview {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.loaded img {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-31 08:06:17 -04:00
|
|
|
.link-footer {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
|
|
|
z-index: 1;
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $dark-text-color;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
2023-10-03 05:52:21 -04:00
|
|
|
.version {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2022-10-31 08:06:17 -04:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $dark-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
.about {
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2022-10-31 08:06:17 -04:00
|
|
|
&__footer {
|
|
|
|
color: $dark-text-color;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2022-10-13 08:42:37 -04:00
|
|
|
&__header {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&__hero {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
aspect-ratio: 1.9;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 8px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 50%;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
width: 0;
|
|
|
|
border: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: lighten($ui-base-color, 8%);
|
|
|
|
border-left-width: 1px;
|
|
|
|
min-height: calc(100% - 60px);
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 15px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2023-05-07 09:04:59 -04:00
|
|
|
@media screen and (width <= 600px) {
|
2022-10-13 08:42:37 -04:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
min-height: 0;
|
|
|
|
width: 100%;
|
|
|
|
border-left-width: 0;
|
|
|
|
border-top-width: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-multiple-columns & {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
min-height: 0;
|
|
|
|
width: 100%;
|
|
|
|
border-left-width: 0;
|
|
|
|
border-top-width: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__mail {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-31 08:06:17 -04:00
|
|
|
.link-footer {
|
2022-10-13 08:42:37 -04:00
|
|
|
padding: 0;
|
|
|
|
margin-top: 60px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $no-gap-breakpoint) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar-wrapper {
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-start: 0;
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__relationship {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__section {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&__title {
|
2023-10-24 13:45:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 6px;
|
2022-10-13 08:42:37 -04:00
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 22px;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
color: $highlight-text-color;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active &__title {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
border: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
border-top: 0;
|
|
|
|
padding: 20px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__domain-blocks {
|
|
|
|
margin-top: 30px;
|
2022-11-11 02:26:58 -05:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
2022-10-13 08:42:37 -04:00
|
|
|
|
2022-11-11 02:26:58 -05:00
|
|
|
&__domain {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 15px;
|
2022-10-13 08:42:37 -04:00
|
|
|
color: $darker-text-color;
|
|
|
|
|
2022-11-11 02:26:58 -05:00
|
|
|
&:nth-child(2n) {
|
|
|
|
background: darken($ui-base-color, 2%);
|
|
|
|
}
|
2022-10-13 08:42:37 -04:00
|
|
|
|
2022-11-11 02:26:58 -05:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2022-10-13 08:42:37 -04:00
|
|
|
|
2022-11-11 02:26:58 -05:00
|
|
|
h6 {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: inherit;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-10-13 08:42:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-08 14:01:08 -04:00
|
|
|
|
|
|
|
.notification-list {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 2rem;
|
|
|
|
inset-inline-start: 0;
|
|
|
|
z-index: 999;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
position: relative;
|
|
|
|
inset-inline-start: -100%;
|
|
|
|
width: auto;
|
|
|
|
padding: 15px;
|
|
|
|
margin: 0;
|
2023-07-11 17:30:21 -04:00
|
|
|
color: $white;
|
2023-07-08 14:01:08 -04:00
|
|
|
background: rgba($black, 0.85);
|
|
|
|
backdrop-filter: blur(8px);
|
2023-07-11 17:30:21 -04:00
|
|
|
border: 1px solid rgba(lighten($classic-base-color, 4%), 0.85);
|
2023-07-08 14:01:08 -04:00
|
|
|
border-radius: 8px;
|
2023-07-13 05:26:45 -04:00
|
|
|
box-shadow:
|
|
|
|
0 10px 15px -3px rgba($base-shadow-color, 0.25),
|
2023-07-08 14:01:08 -04:00
|
|
|
0 4px 6px -4px rgba($base-shadow-color, 0.25);
|
|
|
|
cursor: default;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 21px;
|
|
|
|
|
|
|
|
&.notification-bar-active {
|
|
|
|
inset-inline-start: 1rem;
|
|
|
|
}
|
2023-09-28 04:39:38 -04:00
|
|
|
|
|
|
|
.no-reduce-motion & {
|
|
|
|
transition: 0.5s cubic-bezier(0.89, 0.01, 0.5, 1.1);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
2023-07-08 14:01:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar-title {
|
|
|
|
margin-inline-end: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar-title,
|
|
|
|
.notification-bar-action {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-bar-action {
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-inline-start: 10px;
|
|
|
|
cursor: pointer;
|
2023-07-11 17:30:21 -04:00
|
|
|
color: $blurple-300;
|
2023-07-08 14:01:08 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: rgba($ui-base-color, 0.85);
|
|
|
|
}
|
|
|
|
}
|
2023-08-07 03:46:11 -04:00
|
|
|
|
|
|
|
.hashtag-header {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 15px;
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
gap: 15px;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: $primary-text-color;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 22px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-14 17:42:30 -04:00
|
|
|
|
|
|
|
.hashtag-bar {
|
|
|
|
margin-top: 16px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-size: 14px;
|
2023-08-28 13:49:38 -04:00
|
|
|
line-height: 18px;
|
2023-08-14 17:42:30 -04:00
|
|
|
gap: 4px;
|
2023-08-28 13:49:38 -04:00
|
|
|
color: $darker-text-color;
|
2023-08-14 17:42:30 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-flex;
|
2023-08-28 13:49:38 -04:00
|
|
|
color: inherit;
|
2023-08-14 17:42:30 -04:00
|
|
|
text-decoration: none;
|
|
|
|
|
2023-08-28 13:49:38 -04:00
|
|
|
&:hover span {
|
|
|
|
text-decoration: underline;
|
2023-08-14 17:42:30 -04:00
|
|
|
}
|
|
|
|
}
|
2023-08-28 13:49:38 -04:00
|
|
|
|
|
|
|
.link-button {
|
|
|
|
color: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2023-08-14 17:42:30 -04:00
|
|
|
}
|