2017-04-23 22:38:37 +00:00
|
|
|
.app-body {
|
2017-05-07 18:47:31 +00:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2017-04-05 16:10:25 +00:00
|
|
|
}
|
|
|
|
|
2020-01-25 04:23:05 +00:00
|
|
|
.animated-number {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-08-15 13:13:26 +00:00
|
|
|
.link-button {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
2022-10-25 16:47:21 +00:00
|
|
|
color: $highlight-text-color;
|
2019-08-15 13:13:26 +00:00
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
2022-10-22 09:44:41 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&--destructive {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
2019-08-15 13:13:26 +00:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
color: $ui-primary-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 20:58:10 +00:00
|
|
|
.button {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: darken($ui-highlight-color, 3%);
|
2016-09-27 21:12:33 +00:00
|
|
|
border: 10px none;
|
2017-04-23 02:26:55 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2017-04-23 02:26:55 +00:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: inherit;
|
2022-03-07 10:38:52 +00:00
|
|
|
font-size: 15px;
|
2016-09-27 21:12:33 +00:00
|
|
|
font-weight: 500;
|
2017-04-23 02:26:55 +00:00
|
|
|
letter-spacing: 0;
|
2022-02-23 19:03:46 +00:00
|
|
|
line-height: 22px;
|
2017-04-23 02:26:55 +00:00
|
|
|
overflow: hidden;
|
2022-02-23 19:03:46 +00:00
|
|
|
padding: 7px 18px;
|
2017-04-23 02:26:55 +00:00
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2016-09-27 21:12:33 +00:00
|
|
|
text-decoration: none;
|
2017-04-23 02:26:55 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-05-19 09:42:54 +00:00
|
|
|
width: auto;
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2022-06-19 06:18:08 +00:00
|
|
|
background-color: $ui-highlight-color;
|
2016-08-31 20:58:10 +00:00
|
|
|
}
|
|
|
|
|
2019-03-28 19:30:30 +00:00
|
|
|
&--destructive {
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: $error-red;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 20:58:10 +00:00
|
|
|
&:disabled {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: $ui-primary-color;
|
2016-10-02 13:28:47 +00:00
|
|
|
cursor: default;
|
2016-08-31 20:58:10 +00:00
|
|
|
}
|
2016-09-07 16:17:15 +00:00
|
|
|
|
2018-02-23 16:25:49 +00:00
|
|
|
&.button-alternative {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $inverted-text-color;
|
2018-02-23 16:25:49 +00:00
|
|
|
background: $ui-primary-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-primary-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 16:25:49 +00:00
|
|
|
&.button-alternative-2 {
|
|
|
|
background: $ui-base-lighter-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-base-lighter-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 16:17:15 +00:00
|
|
|
&.button-secondary {
|
2017-07-11 13:27:59 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 36px;
|
|
|
|
height: auto;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
text-transform: none;
|
|
|
|
background: transparent;
|
2022-02-23 19:03:46 +00:00
|
|
|
padding: 6px 17px;
|
2017-07-11 13:27:59 +00:00
|
|
|
border: 1px solid $ui-primary-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
border-color: lighten($ui-primary-color, 4%);
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($darker-text-color, 4%);
|
2022-09-29 02:39:33 +00:00
|
|
|
text-decoration: none;
|
2017-07-11 13:27:59 +00:00
|
|
|
}
|
2019-03-03 21:18:23 +00:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2016-09-07 16:17:15 +00:00
|
|
|
}
|
2017-05-19 09:42:54 +00:00
|
|
|
|
2022-09-29 04:21:51 +00:00
|
|
|
&.button-tertiary {
|
|
|
|
background: transparent;
|
|
|
|
padding: 6px 17px;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
border: 1px solid $highlight-text-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
border: 0;
|
|
|
|
padding: 7px 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2022-12-15 17:50:11 +00: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 04:21:51 +00:00
|
|
|
}
|
|
|
|
|
2017-05-19 09:42:54 +00:00
|
|
|
&.button--block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-12-26 22:50:34 +00:00
|
|
|
|
|
|
|
.layout-multiple-columns &.button--with-bell {
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 0 8px;
|
|
|
|
}
|
2017-05-19 09:42:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-31 20:58:10 +00:00
|
|
|
.icon-button {
|
2020-10-04 13:02:36 +00:00
|
|
|
display: inline-block;
|
2017-03-24 23:01:43 +00:00
|
|
|
padding: 0;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $action-button-color;
|
2019-08-03 17:10:50 +00:00
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
2016-11-02 19:18:39 +00:00
|
|
|
background: transparent;
|
2016-12-22 22:03:57 +00:00
|
|
|
cursor: pointer;
|
2019-08-03 17:10:50 +00:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2020-10-04 13:02:36 +00:00
|
|
|
text-decoration: none;
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2022-02-25 00:20:41 +00:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($action-button-color, 7%);
|
2019-08-03 17:10:50 +00:00
|
|
|
background-color: rgba($action-button-color, 0.15);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($action-button-color, 0.3);
|
2016-08-31 20:58:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: darken($action-button-color, 13%);
|
2019-08-03 17:10:50 +00:00
|
|
|
background-color: transparent;
|
2016-08-31 20:58:10 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
2016-09-01 11:21:48 +00:00
|
|
|
|
|
|
|
&.active {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $highlight-text-color;
|
2016-09-01 11:21:48 +00:00
|
|
|
}
|
2017-02-28 23:53:11 +00:00
|
|
|
|
2022-10-22 21:18:32 +00:00
|
|
|
&.copyable {
|
|
|
|
transition: background 300ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
background: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2017-03-24 23:01:43 +00:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-24 23:01:43 +00:00
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inverted {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $lighter-text-color;
|
2017-03-24 23:01:43 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-03 17:10:50 +00:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($lighter-text-color, 0.3);
|
2017-03-24 23:01:43 +00:00
|
|
|
}
|
|
|
|
|
2017-07-31 03:06:56 +00:00
|
|
|
&.disabled {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($lighter-text-color, 7%);
|
2019-08-03 17:10:50 +00:00
|
|
|
background-color: transparent;
|
2017-07-31 03:06:56 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 23:01:43 +00:00
|
|
|
&.active {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $highlight-text-color;
|
2017-03-24 23:01:43 +00:00
|
|
|
|
2017-07-31 03:06:56 +00:00
|
|
|
&.disabled {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($highlight-text-color, 13%);
|
2017-07-31 03:06:56 +00:00
|
|
|
}
|
2017-03-24 23:01:43 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-13 15:01:09 +00:00
|
|
|
|
|
|
|
&.overlayed {
|
|
|
|
box-sizing: content-box;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: rgba($base-overlay-background, 0.6);
|
|
|
|
color: rgba($primary-text-color, 0.7);
|
2017-04-13 15:01:09 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: rgba($base-overlay-background, 0.9);
|
2017-04-13 15:01:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-28 11:29:43 +00:00
|
|
|
|
2020-10-04 13:02:36 +00:00
|
|
|
&--with-counter {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
width: auto !important;
|
2022-10-28 10:46:41 +00:00
|
|
|
padding: 0 4px 0 2px;
|
2020-10-04 13:02:36 +00:00
|
|
|
}
|
|
|
|
|
2020-09-28 11:29:43 +00:00
|
|
|
&__counter {
|
|
|
|
display: inline-block;
|
2022-10-28 10:46:41 +00:00
|
|
|
width: auto;
|
2020-09-28 11:29:43 +00:00
|
|
|
margin-left: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-03-24 23:01:43 +00:00
|
|
|
}
|
|
|
|
|
2022-05-27 14:34:29 +00:00
|
|
|
.text-icon,
|
2017-03-24 23:01:43 +00:00
|
|
|
.text-icon-button {
|
2022-05-27 14:34:29 +00:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 27px;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-icon-button {
|
2022-06-06 10:05:57 +00:00
|
|
|
color: $lighter-text-color;
|
2019-08-03 17:10:50 +00:00
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
2017-03-24 23:01:43 +00:00
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0 3px;
|
|
|
|
outline: 0;
|
2019-08-03 17:10:50 +00:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2017-03-24 23:01:43 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-03 17:10:50 +00:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
|
|
|
transition: all 200ms ease-out;
|
|
|
|
transition-property: background-color, color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($lighter-text-color, 0.3);
|
2017-03-24 23:01:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($lighter-text-color, 20%);
|
2019-08-03 17:10:50 +00:00
|
|
|
background-color: transparent;
|
2017-03-24 23:01:43 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $highlight-text-color;
|
2017-03-24 23:01:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-24 23:01:43 +00:00
|
|
|
outline: 0 !important;
|
2017-02-28 23:53:11 +00:00
|
|
|
}
|
2016-08-31 20:58:10 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 20:58:46 +00:00
|
|
|
body > [data-popper-placement] {
|
|
|
|
z-index: 3;
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 16:05:44 +00:00
|
|
|
.invisible {
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
2017-01-24 19:07:46 +00:00
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
2017-08-21 15:59:34 +00:00
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
2017-11-05 12:05:50 +00:00
|
|
|
|
|
|
|
img,
|
|
|
|
svg {
|
|
|
|
margin: 0 !important;
|
|
|
|
border: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
width: 0 !important;
|
|
|
|
height: 0 !important;
|
|
|
|
}
|
2017-01-24 16:05:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.ellipsis {
|
2017-05-07 18:47:31 +00:00
|
|
|
&::after {
|
2017-01-24 16:05:44 +00:00
|
|
|
content: "…";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.notification__favourite-icon-wrapper {
|
2018-01-14 23:48:54 +00:00
|
|
|
left: 0;
|
2018-01-13 22:48:18 +00:00
|
|
|
position: absolute;
|
|
|
|
|
2018-01-15 00:05:44 +00:00
|
|
|
.fa.star-icon {
|
2018-01-13 22:48:18 +00:00
|
|
|
color: $gold-star;
|
|
|
|
}
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 02:24:11 +00:00
|
|
|
.icon-button.star-icon.active {
|
2018-01-13 22:48:18 +00:00
|
|
|
color: $gold-star;
|
2017-07-15 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 02:24:11 +00:00
|
|
|
.icon-button.bookmark-icon.active {
|
2018-05-21 16:57:51 +00:00
|
|
|
color: $red-bookmark;
|
|
|
|
}
|
|
|
|
|
2019-10-24 20:47:48 +00:00
|
|
|
.no-reduce-motion .icon-button.star-icon {
|
|
|
|
&.activate {
|
|
|
|
& > .fa-star {
|
|
|
|
animation: spring-rotate-in 1s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.deactivate {
|
|
|
|
& > .fa-star {
|
|
|
|
animation: spring-rotate-out 1s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.notification__display-name {
|
|
|
|
color: inherit;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.display-name {
|
2018-01-13 18:41:20 +00:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
2018-01-13 22:48:18 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-01-13 23:47:59 +00:00
|
|
|
|
2019-06-09 10:07:23 +00:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:47:59 +00:00
|
|
|
strong {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-06-09 10:07:23 +00:00
|
|
|
> a:hover {
|
2018-01-13 23:47:59 +00:00
|
|
|
strong {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inline {
|
|
|
|
padding: 0;
|
|
|
|
height: 18px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 18px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
display: inline;
|
|
|
|
height: auto;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: inline;
|
|
|
|
height: auto;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.display-name__html {
|
|
|
|
font-weight: 500;
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.display-name__account {
|
|
|
|
font-size: 14px;
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.image-loader {
|
|
|
|
position: relative;
|
2018-04-08 21:15:25 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-04-08 22:56:59 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-05-20 19:38:12 +00:00
|
|
|
flex-direction: column;
|
2020-11-02 20:16:38 +00:00
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
-ms-overflow-style: none; /* IE 10+ */
|
|
|
|
|
|
|
|
* {
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
-ms-overflow-style: none; /* IE 10+ */
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar,
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
background: transparent; /* Chrome/Safari/Webkit */
|
|
|
|
}
|
2018-04-08 22:56:59 +00:00
|
|
|
|
|
|
|
.image-loader__preview-canvas {
|
|
|
|
max-width: $media-modal-media-max-width;
|
|
|
|
max-height: $media-modal-media-max-height;
|
|
|
|
background: url('~images/void.png') repeat;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2016-09-10 08:14:36 +00:00
|
|
|
|
2022-07-20 11:56:44 +00:00
|
|
|
.loading-bar__container {
|
2018-05-20 19:38:12 +00:00
|
|
|
position: relative;
|
2016-09-10 08:14:36 +00:00
|
|
|
}
|
|
|
|
|
2022-07-20 11:56:44 +00:00
|
|
|
.loading-bar {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2018-04-08 21:15:25 +00:00
|
|
|
&.image-loader--amorphous .image-loader__preview-canvas {
|
|
|
|
display: none;
|
2016-08-24 19:08:00 +00:00
|
|
|
}
|
2018-04-08 21:15:25 +00:00
|
|
|
}
|
2017-01-26 13:52:07 +00:00
|
|
|
|
2018-04-08 21:15:25 +00:00
|
|
|
.zoomable-image {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
2018-04-08 22:56:59 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: $media-modal-media-max-width;
|
|
|
|
max-height: $media-modal-media-max-height;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2016-08-24 19:08:00 +00:00
|
|
|
}
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2023-01-11 20:58:46 +00:00
|
|
|
.dropdown-animation {
|
|
|
|
animation: dropdown 300ms cubic-bezier(0.1, 0.7, 0.1, 1);
|
|
|
|
|
|
|
|
@keyframes dropdown {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scaleX(0.85) scaleY(0.75);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scaleX(1) scaleY(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
transform-origin: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
transform-origin: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
transform-origin: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
transform-origin: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reduce-motion & {
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown {
|
2017-02-09 00:20:09 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown__content {
|
|
|
|
display: none;
|
2018-01-13 18:41:20 +00:00
|
|
|
position: absolute;
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown-menu__separator {
|
|
|
|
border-bottom: 1px solid darken($ui-secondary-color, 8%);
|
|
|
|
margin: 5px 7px 6px;
|
|
|
|
height: 0;
|
2017-10-05 23:07:59 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown-menu {
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
padding: 4px 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
2018-10-28 05:39:59 +00:00
|
|
|
z-index: 9999;
|
2017-02-09 00:20:09 +00:00
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
&__text-button {
|
|
|
|
display: inline;
|
|
|
|
color: inherit;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 1px dotted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
&__header {
|
|
|
|
border-bottom: 1px solid darken($ui-secondary-color, 8%);
|
|
|
|
padding: 4px 14px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__list {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
&--scrollable {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--loading {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 30px 45px;
|
|
|
|
}
|
2017-10-29 15:11:32 +00:00
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-10-29 15:11:32 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown-menu__arrow {
|
|
|
|
position: absolute;
|
2017-05-24 15:55:00 +00:00
|
|
|
|
2023-01-11 20:58:46 +00:00
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
width: 14px;
|
|
|
|
height: 5px;
|
|
|
|
background-color: $ui-secondary-color;
|
|
|
|
mask-image: url("data:image/svg+xml;utf8,<svg width='14' height='5' xmlns='http://www.w3.org/2000/svg'><path d='M7 0L0 5h14L7 0z' fill='white'/></svg>");
|
2017-09-14 01:39:10 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&.top {
|
|
|
|
bottom: -5px;
|
2023-01-11 20:58:46 +00:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
left: -9px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
2017-05-12 23:38:51 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&.bottom {
|
|
|
|
top: -5px;
|
|
|
|
}
|
2017-04-11 19:24:17 +00:00
|
|
|
|
2023-01-11 20:58:46 +00:00
|
|
|
&.left {
|
|
|
|
right: -9px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
2017-04-11 19:24:17 +00:00
|
|
|
}
|
2017-02-09 00:20:09 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown-menu__item {
|
2022-02-09 00:17:07 +00:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
display: block;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
|
|
|
|
a,
|
|
|
|
button {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2018-01-13 22:48:18 +00:00
|
|
|
display: block;
|
2022-02-09 00:17:07 +00:00
|
|
|
width: 100%;
|
2018-01-13 22:48:18 +00:00
|
|
|
padding: 4px 14px;
|
2022-02-09 00:17:07 +00:00
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
2018-01-13 22:48:18 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
|
|
|
background: $ui-secondary-color;
|
2022-02-09 00:17:07 +00:00
|
|
|
color: inherit;
|
2018-01-13 22:48:18 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2022-02-09 00:17:07 +00:00
|
|
|
text-align: inherit;
|
2017-05-24 02:22:46 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
background: $ui-highlight-color;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
outline: 0;
|
2017-05-24 02:22:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
.dropdown-menu__item--text {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 4px 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu__item.edited-timestamp__history__item {
|
|
|
|
border-bottom: 1px solid darken($ui-secondary-color, 8%);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.dropdown-menu__item--text,
|
|
|
|
a,
|
|
|
|
button {
|
|
|
|
padding: 8px 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-account {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown--active .dropdown__content {
|
2018-01-13 18:41:20 +00:00
|
|
|
display: block;
|
2018-01-13 22:48:18 +00:00
|
|
|
line-height: 18px;
|
|
|
|
max-width: 311px;
|
|
|
|
right: 0;
|
|
|
|
text-align: left;
|
|
|
|
z-index: 9999;
|
2017-06-22 02:05:24 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
& > ul {
|
|
|
|
list-style: none;
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
padding: 4px 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.4);
|
|
|
|
min-width: 140px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2017-04-23 02:26:55 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&.dropdown__right {
|
|
|
|
right: 0;
|
|
|
|
}
|
2017-02-14 19:59:26 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&.dropdown__left {
|
|
|
|
& > ul {
|
|
|
|
left: -98px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ul > li > a {
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
display: block;
|
|
|
|
padding: 4px 14px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
|
|
|
background: $ui-secondary-color;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $inverted-text-color;
|
2017-06-27 16:07:21 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-01-13 22:48:18 +00:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $ui-highlight-color;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-02-14 19:59:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown__icon {
|
|
|
|
vertical-align: middle;
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.static-content {
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $dark-text-color;
|
2017-02-09 00:20:09 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
text-align: center;
|
2017-02-09 00:20:09 +00:00
|
|
|
}
|
2017-10-06 18:40:17 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
p {
|
|
|
|
font-size: 13px;
|
|
|
|
margin-bottom: 20px;
|
2017-10-06 18:40:17 +00:00
|
|
|
}
|
2017-02-09 00:20:09 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 18:49:56 +00:00
|
|
|
.column,
|
|
|
|
.drawer {
|
|
|
|
flex: 1 1 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 631px) {
|
|
|
|
.columns-area {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column,
|
|
|
|
.drawer {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.columns-area > div {
|
|
|
|
.column,
|
|
|
|
.drawer {
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.tabs-bar {
|
2019-05-22 23:35:22 +00:00
|
|
|
box-sizing: border-box;
|
2017-04-23 02:26:55 +00:00
|
|
|
display: flex;
|
2018-01-13 22:48:18 +00:00
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
flex: 0 0 auto;
|
|
|
|
overflow-y: auto;
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.tabs-bar__link {
|
|
|
|
display: block;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 15px 10px;
|
2019-05-25 19:27:00 +00:00
|
|
|
padding-bottom: 13px;
|
2018-01-13 22:48:18 +00:00
|
|
|
color: $primary-text-color;
|
2017-02-09 00:20:09 +00:00
|
|
|
text-decoration: none;
|
2018-01-13 22:48:18 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 8%);
|
2019-05-07 22:04:48 +00:00
|
|
|
transition: all 50ms linear;
|
|
|
|
transition-property: border-bottom, background, color;
|
2017-02-09 00:20:09 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.fa {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
2017-02-09 00:20:09 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
@include multi-columns('screen and (min-width: 631px)') {
|
|
|
|
background: lighten($ui-base-color, 14%);
|
2019-05-25 19:27:00 +00:00
|
|
|
border-bottom-color: lighten($ui-base-color, 14%);
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
2017-02-09 00:20:09 +00:00
|
|
|
}
|
2017-03-01 00:18:34 +00:00
|
|
|
|
2019-06-12 22:14:27 +00:00
|
|
|
&.active {
|
|
|
|
border-bottom: 2px solid $ui-highlight-color;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2019-05-22 23:35:22 +00:00
|
|
|
span {
|
2018-01-13 22:48:18 +00:00
|
|
|
margin-left: 5px;
|
|
|
|
display: none;
|
2017-03-01 00:18:34 +00:00
|
|
|
}
|
2019-05-22 23:35:22 +00:00
|
|
|
|
2019-06-12 14:03:10 +00:00
|
|
|
span.icon {
|
|
|
|
margin-left: 0;
|
|
|
|
display: inline;
|
2019-05-25 19:27:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 23:35:22 +00:00
|
|
|
.icon-with-badge {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__badge {
|
|
|
|
position: absolute;
|
2019-05-25 19:27:00 +00:00
|
|
|
left: 9px;
|
2019-05-22 23:35:22 +00: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;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2020-10-12 22:37:21 +00:00
|
|
|
|
|
|
|
&__issue-badge {
|
|
|
|
position: absolute;
|
|
|
|
left: 11px;
|
|
|
|
bottom: 1px;
|
|
|
|
display: block;
|
|
|
|
background: $error-red;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
}
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
.column-link--transparent .icon-with-badge__badge {
|
|
|
|
border-color: darken($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.scrollable {
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&.optionally-scrollable {
|
|
|
|
overflow-y: auto;
|
2016-09-01 12:12:11 +00:00
|
|
|
}
|
2016-11-18 23:28:42 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
@supports(display: grid) { // hack to fix Chrome <57
|
|
|
|
contain: strict;
|
2016-11-18 23:28:42 +00:00
|
|
|
}
|
2018-11-09 15:47:50 +00:00
|
|
|
|
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__append {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2018-12-17 20:32:27 +00:00
|
|
|
min-height: 120px;
|
2018-11-09 15:47:50 +00:00
|
|
|
}
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
.scrollable {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2016-09-01 12:12:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.scrollable.fullscreen {
|
|
|
|
@supports(display: grid) { // hack to fix Chrome <57
|
|
|
|
contain: none;
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
user-select: none;
|
|
|
|
-webkit-tap-highlight-color: rgba($base-overlay-background, 0);
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle-screenreader-only {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
}
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle--disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
}
|
2017-01-26 17:48:56 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle-track {
|
|
|
|
width: 50px;
|
|
|
|
height: 24px;
|
|
|
|
padding: 0;
|
|
|
|
border-radius: 30px;
|
|
|
|
background-color: $ui-base-color;
|
2019-05-04 15:39:53 +00:00
|
|
|
transition: background-color 0.2s ease;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-01-26 17:48:56 +00:00
|
|
|
|
2021-09-30 22:55:51 +00:00
|
|
|
.react-toggle:is(:hover, :focus-within):not(.react-toggle--disabled) .react-toggle-track {
|
2018-01-13 22:48:18 +00:00
|
|
|
background-color: darken($ui-base-color, 10%);
|
2016-11-20 18:39:18 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle--checked .react-toggle-track {
|
2022-06-19 06:18:08 +00:00
|
|
|
background-color: darken($ui-highlight-color, 2%);
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-02-10 21:58:29 +00:00
|
|
|
|
2021-09-30 22:55:51 +00:00
|
|
|
.react-toggle--checked:is(:hover, :focus-within):not(.react-toggle--disabled) .react-toggle-track {
|
2022-06-19 06:18:08 +00:00
|
|
|
background-color: $ui-highlight-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-10-06 18:40:17 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle-track-check {
|
|
|
|
position: absolute;
|
|
|
|
width: 14px;
|
|
|
|
height: 10px;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
line-height: 0;
|
|
|
|
left: 8px;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.25s ease;
|
2017-02-10 21:58:29 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle--checked .react-toggle-track-check {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.25s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-track-x {
|
2018-01-13 18:41:20 +00:00
|
|
|
position: absolute;
|
2018-01-13 22:48:18 +00:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
line-height: 0;
|
|
|
|
right: 10px;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.25s ease;
|
|
|
|
}
|
2017-04-23 19:34:33 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle--checked .react-toggle-track-x {
|
|
|
|
opacity: 0;
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle-thumb {
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
left: 1px;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
border: 1px solid $ui-base-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: darken($simple-background-color, 2%);
|
|
|
|
box-sizing: border-box;
|
|
|
|
transition: all 0.25s ease;
|
2019-05-04 15:39:53 +00:00
|
|
|
transition-property: border-color, left;
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.react-toggle--checked .react-toggle-thumb {
|
|
|
|
left: 27px;
|
|
|
|
border-color: $ui-highlight-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.getting-started__wrapper,
|
2019-08-20 21:10:25 +00:00
|
|
|
.getting_started,
|
|
|
|
.flex-spacer {
|
2018-01-13 22:48:18 +00:00
|
|
|
background: $ui-base-color;
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.getting-started__wrapper {
|
|
|
|
position: relative;
|
|
|
|
overflow-y: auto;
|
2016-08-31 20:58:10 +00:00
|
|
|
}
|
2016-09-07 16:17:15 +00:00
|
|
|
|
2019-08-20 21:10:25 +00:00
|
|
|
.flex-spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.getting-started {
|
|
|
|
background: $ui-base-color;
|
|
|
|
flex: 1 0 auto;
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
p {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2017-06-27 11:43:53 +00:00
|
|
|
}
|
2017-06-06 17:30:17 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
a {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $dark-text-color;
|
2017-06-27 11:43:53 +00:00
|
|
|
}
|
2018-10-27 21:09:07 +00:00
|
|
|
|
2019-08-06 15:57:52 +00:00
|
|
|
&__trends {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
opacity: 1;
|
|
|
|
animation: fade 150ms linear;
|
|
|
|
margin-top: 10px;
|
|
|
|
|
2019-08-23 03:05:21 +00:00
|
|
|
h4 {
|
2022-11-27 22:49:32 +00:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 10px;
|
2019-08-23 03:05:21 +00:00
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
2022-11-27 22:49:32 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-08-23 03:05:21 +00:00
|
|
|
}
|
|
|
|
|
2019-08-06 15:57:52 +00:00
|
|
|
@media screen and (max-height: 810px) {
|
2021-08-05 11:05:32 +00:00
|
|
|
.trends__item:nth-of-type(3) {
|
2019-08-06 15:57:52 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-height: 720px) {
|
2021-08-05 11:05:32 +00:00
|
|
|
.trends__item:nth-of-type(2) {
|
2019-08-06 15:57:52 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-height: 670px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item {
|
|
|
|
border-bottom: 0;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&__current {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-07-08 15:21:59 +00:00
|
|
|
|
2018-01-23 01:05:13 +00: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;
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.keyboard-shortcuts {
|
|
|
|
padding: 8px 0 0;
|
|
|
|
overflow: hidden;
|
2017-07-08 15:21:59 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
thead {
|
|
|
|
position: absolute;
|
|
|
|
left: -9999px;
|
|
|
|
}
|
2017-07-08 15:21:59 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
td {
|
|
|
|
padding: 0 10px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
kbd {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 5px;
|
|
|
|
background-color: lighten($ui-base-color, 8%);
|
|
|
|
border: 1px solid darken($ui-base-color, 4%);
|
2017-07-08 15:21:59 +00:00
|
|
|
}
|
2017-01-28 03:04:09 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.setting-text {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
background: transparent;
|
2021-03-06 12:12:35 +00:00
|
|
|
border: 0;
|
2018-01-13 22:48:18 +00:00
|
|
|
border-bottom: 2px solid $ui-primary-color;
|
2021-12-03 18:13:43 +00:00
|
|
|
outline: 0;
|
2018-01-13 22:48:18 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
font-family: inherit;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 7px 0;
|
|
|
|
width: 100%;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-01-13 18:41:20 +00:00
|
|
|
color: $primary-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
border-bottom-color: $ui-highlight-color;
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
@include limited-single-column('screen and (max-width: 600px)') {
|
|
|
|
font-size: 16px;
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&.light {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 27%);
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
border-bottom-color: $ui-highlight-color;
|
|
|
|
}
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 20:48:51 +00:00
|
|
|
button.icon-button i.fa-retweet {
|
2018-01-13 22:48:18 +00:00
|
|
|
background-position: 0 0;
|
|
|
|
height: 19px;
|
|
|
|
transition: background-position 0.9s steps(10);
|
|
|
|
transition-duration: 0s;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 22px;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&::before {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2018-01-13 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 20:48:51 +00:00
|
|
|
button.icon-button.active i.fa-retweet {
|
2018-01-13 22:48:18 +00:00
|
|
|
transition-duration: 0.9s;
|
|
|
|
background-position: 0 100%;
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 20:48:51 +00:00
|
|
|
.reduce-motion button.icon-button i.fa-retweet,
|
2018-01-13 22:48:18 +00:00
|
|
|
.reduce-motion button.icon-button.active i.fa-retweet {
|
2020-07-22 20:48:51 +00:00
|
|
|
transition: none;
|
2017-02-28 23:53:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-11 15:24:31 +00:00
|
|
|
.reduce-motion button.icon-button.disabled i.fa-retweet {
|
|
|
|
color: darken($action-button-color, 13%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.load-more {
|
2016-09-29 22:00:45 +00:00
|
|
|
display: block;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $dark-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
font-size: inherit;
|
|
|
|
text-align: center;
|
|
|
|
line-height: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 15px;
|
2018-09-05 09:46:01 +00:00
|
|
|
box-sizing: border-box;
|
2018-01-13 22:48:18 +00:00
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
2018-09-05 09:46:01 +00:00
|
|
|
text-decoration: none;
|
2016-10-06 20:47:35 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
2016-10-06 20:47:35 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-12 11:17:17 +00:00
|
|
|
|
2018-05-27 18:23:56 +00:00
|
|
|
.load-gap {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2020-06-14 20:29:40 +00: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 06:18:08 +00:00
|
|
|
color: $highlight-text-color;
|
2020-06-14 20:29:40 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
2022-06-19 06:18:08 +00:00
|
|
|
color: lighten($highlight-text-color, 4%);
|
2020-06-14 20:29:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.missing-indicator {
|
2018-01-18 16:25:37 +00:00
|
|
|
padding-top: 20px + 48px;
|
2017-04-10 14:27:30 +00:00
|
|
|
|
2018-01-18 16:25:37 +00:00
|
|
|
.regeneration-indicator__figure {
|
|
|
|
background-image: url('~flavours/glitch/images/elephant_ui_disappointed.svg');
|
2017-04-10 14:27:30 +00:00
|
|
|
}
|
2017-02-09 00:20:09 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:47:59 +00:00
|
|
|
.scrollable > div > :first-child .notification__dismiss-overlay > .wrappy {
|
|
|
|
border-top: 1px solid $ui-base-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification__dismiss-overlay {
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: -1px;
|
|
|
|
padding-left: 15px; // space for the box shadow to be visible
|
|
|
|
|
|
|
|
z-index: 999;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.wrappy {
|
|
|
|
width: $dismiss-overlay-width;
|
|
|
|
align-self: stretch;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
border-left: 1px solid lighten($ui-base-color, 20%);
|
|
|
|
box-shadow: 0 0 5px black;
|
|
|
|
border-bottom: 1px solid $ui-base-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ckbox {
|
|
|
|
border: 2px solid $ui-primary-color;
|
|
|
|
border-radius: 2px;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
font-size: 20px;
|
2018-05-23 16:29:15 +00:00
|
|
|
color: $darker-text-color;
|
2018-01-13 23:47:59 +00:00
|
|
|
text-shadow: 0 0 5px black;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0 !important;
|
|
|
|
|
|
|
|
.ckbox {
|
|
|
|
box-shadow: 0 0 1px 1px $ui-highlight-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.text-btn {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
color: inherit;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
2017-04-16 18:32:00 +00:00
|
|
|
cursor: pointer;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.loading-indicator {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $dark-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 400;
|
|
|
|
text-transform: uppercase;
|
|
|
|
overflow: visible;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2022-02-09 00:17:07 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2017-06-05 08:09:14 +00:00
|
|
|
|
2022-02-09 00:17:07 +00: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-06-05 08:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
@keyframes circular-progress {
|
|
|
|
0% {
|
|
|
|
stroke-dasharray: 1px, 200px;
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
}
|
2018-12-17 20:32:27 +00:00
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
50% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -125px;
|
|
|
|
}
|
2018-12-17 20:32:27 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
@keyframes simple-rotate {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
|
2019-10-24 20:47:48 +00: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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.spoiler-button {
|
2019-04-27 01:24:09 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-01-13 22:48:18 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: 100;
|
|
|
|
|
2019-04-27 01:24:09 +00:00
|
|
|
&--minified {
|
2019-05-04 16:18:15 +00:00
|
|
|
display: flex;
|
2019-04-27 01:24:09 +00:00
|
|
|
left: 4px;
|
|
|
|
top: 4px;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2019-05-04 16:18:15 +00:00
|
|
|
align-items: center;
|
2019-04-27 01:24:09 +00:00
|
|
|
}
|
|
|
|
|
2019-09-03 02:56:40 +00:00
|
|
|
&--click-thru {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2019-04-27 01:24:09 +00:00
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__overlay {
|
2018-01-13 22:48:18 +00:00
|
|
|
display: block;
|
2019-04-27 01:24:09 +00:00
|
|
|
background: transparent;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
display: inline-block;
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
.spoiler-button__overlay__label {
|
|
|
|
background: rgba($base-overlay-background, 0.8);
|
|
|
|
}
|
|
|
|
}
|
2019-09-01 17:43:35 +00:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
.spoiler-button__overlay__label {
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
}
|
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.setting-toggle {
|
|
|
|
display: block;
|
|
|
|
line-height: 24px;
|
2017-04-16 18:32:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.setting-toggle__label,
|
|
|
|
.setting-meta__label {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
margin-left: 8px;
|
|
|
|
vertical-align: middle;
|
2017-04-16 18:32:00 +00:00
|
|
|
}
|
|
|
|
|
2020-09-01 08:21:45 +00:00
|
|
|
.column-settings__row .radio-button {
|
2018-11-28 15:57:26 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.setting-meta__label {
|
|
|
|
float: right;
|
2017-05-03 12:02:15 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
@keyframes heartbeat {
|
|
|
|
from {
|
|
|
|
transform: scale(1);
|
|
|
|
transform-origin: center center;
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
10% {
|
|
|
|
transform: scale(0.91);
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
17% {
|
|
|
|
transform: scale(0.98);
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
33% {
|
|
|
|
transform: scale(0.87);
|
|
|
|
animation-timing-function: ease-in;
|
2017-04-16 18:32:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
45% {
|
|
|
|
transform: scale(1);
|
|
|
|
animation-timing-function: ease-out;
|
2017-04-16 18:32:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.pulse-loading {
|
|
|
|
animation: heartbeat 1.5s ease-in-out infinite both;
|
|
|
|
}
|
2017-05-03 12:02:15 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.upload-area {
|
|
|
|
align-items: center;
|
|
|
|
background: rgba($base-overlay-background, 0.8);
|
2017-04-11 19:24:17 +00:00
|
|
|
display: flex;
|
2018-01-13 22:48:18 +00:00
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
left: 0;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 2000;
|
2017-04-11 19:24:17 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
* {
|
|
|
|
pointer-events: none;
|
2017-04-11 02:28:52 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-15 11:17:54 +00:00
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.upload-area__drop {
|
|
|
|
width: 320px;
|
|
|
|
height: 160px;
|
|
|
|
display: flex;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
padding: 8px;
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.upload-area__background {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: -1;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
box-shadow: 0 0 5px rgba($base-shadow-color, 0.2);
|
2017-04-23 02:26:55 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.upload-area__content {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 22:48:18 +00:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
|
|
|
border: 2px dashed $ui-base-lighter-color;
|
|
|
|
border-radius: 4px;
|
2017-04-23 02:39:50 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.dropdown--active .emoji-button img {
|
|
|
|
opacity: 1;
|
|
|
|
filter: none;
|
2017-04-23 02:39:50 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 22:48:18 +00:00
|
|
|
.loading-bar {
|
|
|
|
background-color: $ui-highlight-color;
|
|
|
|
height: 3px;
|
2022-04-28 22:15:27 +00:00
|
|
|
position: fixed;
|
2018-01-13 22:48:18 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2019-08-18 12:57:05 +00:00
|
|
|
z-index: 9999;
|
2018-01-13 22:48:18 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 17:17:14 +00:00
|
|
|
.icon-badge-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-badge {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
right: -.25em;
|
|
|
|
top: -.25em;
|
|
|
|
background-color: $ui-highlight-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
font-size: 75%;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
2019-09-21 18:01:16 +00:00
|
|
|
.conversation {
|
2019-05-22 23:35:22 +00:00
|
|
|
display: flex;
|
2019-09-21 18:01:16 +00:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2019-05-22 23:35:22 +00:00
|
|
|
padding: 5px;
|
2019-09-21 18:01:16 +00:00
|
|
|
padding-bottom: 0;
|
2019-05-22 23:35:22 +00:00
|
|
|
|
2019-09-21 18:01:16 +00:00
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
outline: 0;
|
|
|
|
}
|
2019-05-22 23:35:22 +00:00
|
|
|
|
2019-09-21 18:01:16 +00:00
|
|
|
&__avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 12px;
|
2019-12-01 06:06:20 +00:00
|
|
|
position: relative;
|
2020-03-31 17:40:23 +00:00
|
|
|
cursor: pointer;
|
2019-12-01 06:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__unread {
|
|
|
|
display: inline-block;
|
|
|
|
background: $highlight-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
margin: -.1ex .15em .1ex;
|
2019-05-22 23:35:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-21 18:01:16 +00:00
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 10px 5px;
|
|
|
|
padding-right: 15px;
|
2019-09-27 00:14:49 +00:00
|
|
|
overflow: hidden;
|
2019-05-22 23:35:22 +00:00
|
|
|
|
2019-09-21 18:01:16 +00:00
|
|
|
&__info {
|
|
|
|
overflow: hidden;
|
2019-09-27 00:14:49 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
justify-content: space-between;
|
2019-05-22 23:35:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-21 18:01:16 +00:00
|
|
|
&__relative-time {
|
|
|
|
font-size: 15px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding-left: 15px;
|
2019-05-22 23:35:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-21 18:01:16 +00:00
|
|
|
&__names {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin-bottom: 4px;
|
2019-09-30 15:12:33 +00:00
|
|
|
flex-basis: 90px;
|
|
|
|
flex-grow: 1;
|
2019-09-21 18:01:16 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-30 15:00:42 +00:00
|
|
|
|
|
|
|
.status__content {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-05-22 23:35:22 +00:00
|
|
|
}
|
2019-12-01 06:06:20 +00: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 23:35:22 +00:00
|
|
|
}
|
|
|
|
|
2019-11-24 14:57:27 +00:00
|
|
|
.ui .flash-message {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-bottom: 0;
|
|
|
|
min-width: 75%;
|
|
|
|
}
|
|
|
|
|
2017-07-19 22:20:54 +00:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2017-06-07 22:52:56 +00:00
|
|
|
noscript {
|
|
|
|
text-align: center;
|
|
|
|
|
2017-07-23 18:28:06 +00:00
|
|
|
img {
|
|
|
|
width: 200px;
|
|
|
|
opacity: 0.5;
|
|
|
|
animation: flicker 4s infinite;
|
|
|
|
}
|
|
|
|
|
2017-06-07 22:52:56 +00:00
|
|
|
div {
|
2017-07-23 18:28:06 +00:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 30px auto;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2017-07-23 18:28:06 +00:00
|
|
|
max-width: 400px;
|
2017-09-02 12:02:15 +00:00
|
|
|
|
|
|
|
a {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $highlight-text-color;
|
2017-09-02 12:02:15 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2019-10-01 22:39:56 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2017-06-07 22:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-20 23:38:24 +00:00
|
|
|
|
2017-07-23 18:28:06 +00:00
|
|
|
@keyframes flicker {
|
|
|
|
0% { opacity: 1; }
|
|
|
|
30% { opacity: 0.75; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
|
2018-01-14 00:12:10 +00:00
|
|
|
@import 'boost';
|
|
|
|
@import 'accounts';
|
2018-03-04 20:46:27 +00:00
|
|
|
@import 'domains';
|
2018-01-13 22:48:18 +00:00
|
|
|
@import 'status';
|
|
|
|
@import 'modal';
|
2022-11-06 12:30:37 +00:00
|
|
|
@import 'compose_form';
|
2018-01-14 00:12:10 +00:00
|
|
|
@import 'columns';
|
2018-01-18 16:25:37 +00:00
|
|
|
@import 'regeneration_indicator';
|
2019-08-29 22:14:36 +00:00
|
|
|
@import 'directory';
|
2018-01-14 00:12:10 +00:00
|
|
|
@import 'search';
|
|
|
|
@import 'emoji';
|
2017-10-13 22:58:38 +00:00
|
|
|
@import 'doodle';
|
2017-12-29 22:55:06 +00:00
|
|
|
@import 'drawer';
|
2018-01-13 22:18:50 +00:00
|
|
|
@import 'media';
|
|
|
|
@import 'sensitive';
|
2018-01-14 00:12:10 +00:00
|
|
|
@import 'lists';
|
2017-12-07 21:35:37 +00:00
|
|
|
@import 'emoji_picker';
|
|
|
|
@import 'local_settings';
|
2018-11-28 14:01:40 +00:00
|
|
|
@import 'error_boundary';
|
2019-06-12 14:03:10 +00:00
|
|
|
@import 'single_column';
|
2020-01-23 21:00:13 +00:00
|
|
|
@import 'announcements';
|
2022-02-24 23:34:33 +00:00
|
|
|
@import 'explore';
|
2022-09-29 02:39:33 +00:00
|
|
|
@import 'signed_out';
|
2022-10-08 04:01:11 +00:00
|
|
|
@import 'privacy_policy';
|
2022-10-13 12:42:37 +00:00
|
|
|
@import 'about';
|