2017-04-24 00:38:37 +02:00
|
|
|
.app-body {
|
2017-05-07 20:47:31 +02:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2017-04-05 18:10:25 +02:00
|
|
|
}
|
|
|
|
|
2020-01-25 05:23:05 +01:00
|
|
|
.animated-number {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-08-15 15:13:26 +02:00
|
|
|
.link-button {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: $ui-highlight-color;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
color: $ui-primary-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 22:58:10 +02:00
|
|
|
.button {
|
2017-05-08 15:57:49 +02:00
|
|
|
background-color: darken($ui-highlight-color, 3%);
|
2016-09-27 23:12:33 +02:00
|
|
|
border: 10px none;
|
2017-04-23 04:26:55 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
2017-05-08 15:57:49 +02:00
|
|
|
color: $primary-text-color;
|
2017-04-23 04:26:55 +02:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: inherit;
|
2016-09-27 23:12:33 +02:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
height: 36px;
|
2017-04-23 04:26:55 +02:00
|
|
|
letter-spacing: 0;
|
2016-09-27 23:12:33 +02:00
|
|
|
line-height: 36px;
|
2017-04-23 04:26:55 +02:00
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 16px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
2016-09-27 23:12:33 +02:00
|
|
|
text-decoration: none;
|
2017-04-23 04:26:55 +02:00
|
|
|
text-overflow: ellipsis;
|
2017-03-25 00:01:43 +01:00
|
|
|
transition: all 100ms ease-in;
|
2019-05-04 17:39:53 +02:00
|
|
|
transition-property: background-color;
|
2017-04-23 04:26:55 +02:00
|
|
|
white-space: nowrap;
|
2017-05-19 11:42:54 +02:00
|
|
|
width: auto;
|
2016-08-31 22:58:10 +02:00
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2017-05-08 15:57:49 +02:00
|
|
|
background-color: lighten($ui-highlight-color, 7%);
|
2017-03-25 00:01:43 +01:00
|
|
|
transition: all 200ms ease-out;
|
2019-05-04 17:39:53 +02:00
|
|
|
transition-property: background-color;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
|
|
|
|
2019-03-28 20:30:30 +01:00
|
|
|
&--destructive {
|
|
|
|
transition: none;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: $error-red;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 22:58:10 +02:00
|
|
|
&:disabled {
|
2017-05-08 15:57:49 +02:00
|
|
|
background-color: $ui-primary-color;
|
2016-10-02 15:28:47 +02:00
|
|
|
cursor: default;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
2016-09-07 18:17:15 +02:00
|
|
|
|
2018-02-23 17:25:49 +01:00
|
|
|
&.button-primary,
|
|
|
|
&.button-alternative,
|
|
|
|
&.button-secondary,
|
|
|
|
&.button-alternative-2 {
|
2017-07-11 15:27:59 +02:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 36px;
|
|
|
|
height: auto;
|
|
|
|
text-transform: none;
|
|
|
|
padding: 4px 16px;
|
2018-02-23 17:25:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.button-alternative {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $inverted-text-color;
|
2018-02-23 17:25:49 +01:00
|
|
|
background: $ui-primary-color;
|
2017-07-11 15:27:59 +02:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-primary-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 17:25:49 +01:00
|
|
|
&.button-alternative-2 {
|
|
|
|
background: $ui-base-lighter-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-base-lighter-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 18:17:15 +02:00
|
|
|
&.button-secondary {
|
2017-07-11 15:27:59 +02:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 36px;
|
|
|
|
height: auto;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $darker-text-color;
|
2017-07-11 15:27:59 +02:00
|
|
|
text-transform: none;
|
|
|
|
background: transparent;
|
|
|
|
padding: 3px 15px;
|
2017-10-07 20:00:35 +02:00
|
|
|
border-radius: 4px;
|
2017-07-11 15:27:59 +02:00
|
|
|
border: 1px solid $ui-primary-color;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
border-color: lighten($ui-primary-color, 4%);
|
2018-05-05 17:58:46 +02:00
|
|
|
color: lighten($darker-text-color, 4%);
|
2017-07-11 15:27:59 +02:00
|
|
|
}
|
2019-03-03 22:18:23 +01:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2016-09-07 18:17:15 +02:00
|
|
|
}
|
2017-05-19 11:42:54 +02:00
|
|
|
|
|
|
|
&.button--block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 22:58:10 +02:00
|
|
|
.icon-button {
|
2017-03-25 00:01:43 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $action-button-color;
|
2019-08-03 19:10:50 +02:00
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
2016-11-02 20:18:39 +01:00
|
|
|
background: transparent;
|
2016-12-22 23:03:57 +01:00
|
|
|
cursor: pointer;
|
2019-08-03 19:10:50 +02:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2016-08-31 22:58:10 +02:00
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: lighten($action-button-color, 7%);
|
2019-08-03 19:10:50 +02: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 22:58:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: darken($action-button-color, 13%);
|
2019-08-03 19:10:50 +02:00
|
|
|
background-color: transparent;
|
2016-08-31 22:58:10 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
2016-09-01 13:21:48 +02:00
|
|
|
|
|
|
|
&.active {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $highlight-text-color;
|
2016-09-01 13:21:48 +02:00
|
|
|
}
|
2017-03-01 00:53:11 +01:00
|
|
|
|
2017-03-25 00:01:43 +01:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-25 00:01:43 +01:00
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inverted {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $lighter-text-color;
|
2017-03-25 00:01:43 +01:00
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-03 19:10:50 +02:00
|
|
|
background-color: rgba($lighter-text-color, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: rgba($lighter-text-color, 0.3);
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
2017-07-31 05:06:56 +02:00
|
|
|
&.disabled {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: lighten($lighter-text-color, 7%);
|
2019-08-03 19:10:50 +02:00
|
|
|
background-color: transparent;
|
2017-07-31 05:06:56 +02:00
|
|
|
}
|
|
|
|
|
2017-03-25 00:01:43 +01:00
|
|
|
&.active {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $highlight-text-color;
|
2017-03-25 00:01:43 +01:00
|
|
|
|
2017-07-31 05:06:56 +02:00
|
|
|
&.disabled {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: lighten($highlight-text-color, 13%);
|
2017-07-31 05:06:56 +02:00
|
|
|
}
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
}
|
2017-04-13 17:01:09 +02:00
|
|
|
|
|
|
|
&.overlayed {
|
|
|
|
box-sizing: content-box;
|
2017-05-08 15:57:49 +02:00
|
|
|
background: rgba($base-overlay-background, 0.6);
|
|
|
|
color: rgba($primary-text-color, 0.7);
|
2017-04-13 17:01:09 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 15:57:49 +02:00
|
|
|
background: rgba($base-overlay-background, 0.9);
|
2017-04-13 17:01:09 +02:00
|
|
|
}
|
|
|
|
}
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-icon-button {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $lighter-text-color;
|
2019-08-03 19:10:50 +02:00
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
2017-03-25 00:01:43 +01:00
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 600;
|
2017-03-26 13:08:15 +02:00
|
|
|
font-size: 11px;
|
2017-03-25 00:01:43 +01:00
|
|
|
padding: 0 3px;
|
|
|
|
line-height: 27px;
|
|
|
|
outline: 0;
|
2019-08-03 19:10:50 +02:00
|
|
|
transition: all 100ms ease-in;
|
|
|
|
transition-property: background-color, color;
|
2017-03-25 00:01:43 +01:00
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: darken($lighter-text-color, 7%);
|
2019-08-03 19:10:50 +02: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-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: lighten($lighter-text-color, 20%);
|
2019-08-03 19:10:50 +02:00
|
|
|
background-color: transparent;
|
2017-03-25 00:01:43 +01:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $highlight-text-color;
|
2017-03-25 00:01:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 20:47:31 +02:00
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-03-25 00:01:43 +01:00
|
|
|
outline: 0 !important;
|
2017-03-01 00:53:11 +01:00
|
|
|
}
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
|
|
|
|
2017-09-22 04:59:17 +02:00
|
|
|
.dropdown-menu {
|
|
|
|
position: absolute;
|
2017-12-26 20:28:19 +01:00
|
|
|
transform-origin: 50% 0;
|
2017-09-22 04:59:17 +02:00
|
|
|
}
|
|
|
|
|
2017-01-24 17:05:44 +01:00
|
|
|
.invisible {
|
|
|
|
font-size: 0;
|
|
|
|
line-height: 0;
|
2017-01-24 20:07:46 +01:00
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
2017-08-21 17:59:34 +02:00
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
2017-11-05 13:05:50 +01:00
|
|
|
|
|
|
|
img,
|
|
|
|
svg {
|
|
|
|
margin: 0 !important;
|
|
|
|
border: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
width: 0 !important;
|
|
|
|
height: 0 !important;
|
|
|
|
}
|
2017-01-24 17:05:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ellipsis {
|
2017-05-07 20:47:31 +02:00
|
|
|
&::after {
|
2017-01-24 17:05:44 +01:00
|
|
|
content: "…";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.notification__favourite-icon-wrapper {
|
2018-01-15 00:48:54 +01:00
|
|
|
left: 0;
|
2018-01-13 23:48:18 +01:00
|
|
|
position: absolute;
|
|
|
|
|
2018-01-15 01:05:44 +01:00
|
|
|
.fa.star-icon {
|
2018-01-13 23:48:18 +01:00
|
|
|
color: $gold-star;
|
|
|
|
}
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.star-icon.active {
|
|
|
|
color: $gold-star;
|
2017-07-15 16:45:39 +02:00
|
|
|
}
|
|
|
|
|
2018-05-21 18:57:51 +02:00
|
|
|
.bookmark-icon.active {
|
|
|
|
color: $red-bookmark;
|
|
|
|
}
|
|
|
|
|
2019-10-24 22:47:48 +02: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 23:48:18 +01:00
|
|
|
.notification__display-name {
|
|
|
|
color: inherit;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.display-name {
|
2018-01-13 19:41:20 +01:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
2018-01-13 23:48:18 +01:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-01-14 00:47:59 +01:00
|
|
|
|
2019-06-09 12:07:23 +02:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
|
|
|
|
2018-01-14 00:47:59 +01:00
|
|
|
strong {
|
|
|
|
height: 18px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 18px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
height: 18px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 18px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2019-06-09 12:07:23 +02:00
|
|
|
> a:hover {
|
2018-01-14 00:47:59 +01: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 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.display-name__html {
|
|
|
|
font-weight: 500;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.display-name__account {
|
|
|
|
font-size: 14px;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.image-loader {
|
|
|
|
position: relative;
|
2018-04-08 23:15:25 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-04-09 00:56:59 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-05-20 21:38:12 +02:00
|
|
|
flex-direction: column;
|
2018-04-09 00:56:59 +02: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 10:14:36 +02:00
|
|
|
|
2018-05-20 21:38:12 +02:00
|
|
|
.loading-bar {
|
|
|
|
position: relative;
|
2016-09-10 10:14:36 +02:00
|
|
|
}
|
|
|
|
|
2018-04-08 23:15:25 +02:00
|
|
|
&.image-loader--amorphous .image-loader__preview-canvas {
|
|
|
|
display: none;
|
2016-08-24 21:08:00 +02:00
|
|
|
}
|
2018-04-08 23:15:25 +02:00
|
|
|
}
|
2017-01-26 14:52:07 +01:00
|
|
|
|
2018-04-08 23:15:25 +02:00
|
|
|
.zoomable-image {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
2018-04-09 00:56:59 +02: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 21:08:00 +02:00
|
|
|
}
|
2016-08-31 22:58:10 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown {
|
2017-02-09 01:20:09 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown__content {
|
|
|
|
display: none;
|
2018-01-13 19:41:20 +01:00
|
|
|
position: absolute;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown-menu__separator {
|
|
|
|
border-bottom: 1px solid darken($ui-secondary-color, 8%);
|
|
|
|
margin: 5px 7px 6px;
|
|
|
|
height: 0;
|
2017-10-06 01:07:59 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown-menu {
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
padding: 4px 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
2017-02-09 01:20:09 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
2017-10-29 16:11:32 +01:00
|
|
|
}
|
2018-01-13 23:48:18 +01:00
|
|
|
}
|
2017-10-29 16:11:32 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown-menu__arrow {
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border: 0 solid transparent;
|
2017-05-24 17:55:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&.left {
|
|
|
|
right: -5px;
|
|
|
|
margin-top: -5px;
|
|
|
|
border-width: 5px 0 5px 5px;
|
|
|
|
border-left-color: $ui-secondary-color;
|
2017-09-14 03:39:10 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&.top {
|
|
|
|
bottom: -5px;
|
2018-09-06 22:00:25 +02:00
|
|
|
margin-left: -7px;
|
2018-01-13 23:48:18 +01:00
|
|
|
border-width: 5px 7px 0;
|
|
|
|
border-top-color: $ui-secondary-color;
|
2017-05-13 01:38:51 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&.bottom {
|
|
|
|
top: -5px;
|
2018-09-06 22:00:25 +02:00
|
|
|
margin-left: -7px;
|
2018-01-13 23:48:18 +01:00
|
|
|
border-width: 0 7px 5px;
|
|
|
|
border-bottom-color: $ui-secondary-color;
|
|
|
|
}
|
2017-04-11 21:24:17 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&.right {
|
|
|
|
left: -5px;
|
|
|
|
margin-top: -5px;
|
|
|
|
border-width: 5px 5px 5px 0;
|
|
|
|
border-right-color: $ui-secondary-color;
|
2017-04-11 21:24:17 +02:00
|
|
|
}
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown-menu__item {
|
|
|
|
a {
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
display: block;
|
|
|
|
padding: 4px 14px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-decoration: none;
|
|
|
|
background: $ui-secondary-color;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-05-24 04:22:46 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
background: $ui-highlight-color;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
outline: 0;
|
2017-05-24 04:22:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown--active .dropdown__content {
|
2018-01-13 19:41:20 +01:00
|
|
|
display: block;
|
2018-01-13 23:48:18 +01:00
|
|
|
line-height: 18px;
|
|
|
|
max-width: 311px;
|
|
|
|
right: 0;
|
|
|
|
text-align: left;
|
|
|
|
z-index: 9999;
|
2017-06-22 04:05:24 +02:00
|
|
|
|
2018-01-13 23:48:18 +01: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 04:26:55 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&.dropdown__right {
|
|
|
|
right: 0;
|
|
|
|
}
|
2017-02-14 20:59:26 +01:00
|
|
|
|
2018-01-13 23:48:18 +01: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 17:58:46 +02:00
|
|
|
color: $inverted-text-color;
|
2017-06-27 18:07:21 +02:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-01-13 23:48:18 +01:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $ui-highlight-color;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
}
|
2017-02-14 20:59:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown__icon {
|
|
|
|
vertical-align: middle;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.static-content {
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $dark-text-color;
|
2017-02-09 01:20:09 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
h1 {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
text-align: center;
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
2017-10-06 20:40:17 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
p {
|
|
|
|
font-size: 13px;
|
|
|
|
margin-bottom: 20px;
|
2017-10-06 20:40:17 +02:00
|
|
|
}
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
|
|
|
|
2019-06-12 20:49:56 +02: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 23:48:18 +01:00
|
|
|
.tabs-bar {
|
2019-05-23 01:35:22 +02:00
|
|
|
box-sizing: border-box;
|
2017-04-23 04:26:55 +02:00
|
|
|
display: flex;
|
2018-01-13 23:48:18 +01:00
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
flex: 0 0 auto;
|
|
|
|
overflow-y: auto;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.tabs-bar__link {
|
|
|
|
display: block;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 15px 10px;
|
2019-05-25 21:27:00 +02:00
|
|
|
padding-bottom: 13px;
|
2018-01-13 23:48:18 +01:00
|
|
|
color: $primary-text-color;
|
2017-02-09 01:20:09 +01:00
|
|
|
text-decoration: none;
|
2018-01-13 23:48:18 +01:00
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 8%);
|
2019-05-08 00:04:48 +02:00
|
|
|
transition: all 50ms linear;
|
|
|
|
transition-property: border-bottom, background, color;
|
2017-02-09 01:20:09 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.fa {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
@include multi-columns('screen and (min-width: 631px)') {
|
|
|
|
background: lighten($ui-base-color, 14%);
|
2019-05-25 21:27:00 +02:00
|
|
|
border-bottom-color: lighten($ui-base-color, 14%);
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
2017-03-01 01:18:34 +01:00
|
|
|
|
2019-06-13 00:14:27 +02:00
|
|
|
&.active {
|
|
|
|
border-bottom: 2px solid $ui-highlight-color;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
2019-05-23 01:35:22 +02:00
|
|
|
span {
|
2018-01-13 23:48:18 +01:00
|
|
|
margin-left: 5px;
|
|
|
|
display: none;
|
2017-03-01 01:18:34 +01:00
|
|
|
}
|
2019-05-23 01:35:22 +02:00
|
|
|
|
2019-06-12 16:03:10 +02:00
|
|
|
span.icon {
|
|
|
|
margin-left: 0;
|
|
|
|
display: inline;
|
2019-05-25 21:27:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-23 01:35:22 +02:00
|
|
|
.icon-with-badge {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__badge {
|
|
|
|
position: absolute;
|
2019-05-25 21:27:00 +02:00
|
|
|
left: 9px;
|
2019-05-23 01:35:22 +02: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 23:48:18 +01:00
|
|
|
}
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2019-05-25 21:27:00 +02:00
|
|
|
.column-link--transparent .icon-with-badge__badge {
|
|
|
|
border-color: darken($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.scrollable {
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2016-08-31 22:58:10 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&.optionally-scrollable {
|
|
|
|
overflow-y: auto;
|
2016-09-01 14:12:11 +02:00
|
|
|
}
|
2016-11-19 00:28:42 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
@supports(display: grid) { // hack to fix Chrome <57
|
|
|
|
contain: strict;
|
2016-11-19 00:28:42 +01:00
|
|
|
}
|
2018-11-09 16:47:50 +01:00
|
|
|
|
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__append {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
position: relative;
|
2018-12-17 21:32:27 +01:00
|
|
|
min-height: 120px;
|
2018-11-09 16:47:50 +01:00
|
|
|
}
|
2016-09-01 14:12:11 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.scrollable.fullscreen {
|
|
|
|
@supports(display: grid) { // hack to fix Chrome <57
|
|
|
|
contain: none;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01: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 19:39:18 +01:00
|
|
|
|
2018-01-13 23:48:18 +01: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 19:39:18 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle--disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
}
|
2017-01-26 18:48:56 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle-track {
|
|
|
|
width: 50px;
|
|
|
|
height: 24px;
|
|
|
|
padding: 0;
|
|
|
|
border-radius: 30px;
|
|
|
|
background-color: $ui-base-color;
|
2019-05-04 17:39:53 +02:00
|
|
|
transition: background-color 0.2s ease;
|
2018-01-13 23:48:18 +01:00
|
|
|
}
|
2017-01-26 18:48:56 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
|
|
|
|
background-color: darken($ui-base-color, 10%);
|
2016-11-20 19:39:18 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle--checked .react-toggle-track {
|
|
|
|
background-color: $ui-highlight-color;
|
|
|
|
}
|
2017-02-10 22:58:29 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
|
|
|
|
background-color: lighten($ui-highlight-color, 10%);
|
|
|
|
}
|
2017-10-06 20:40:17 +02:00
|
|
|
|
2018-01-13 23:48:18 +01: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 22:58:29 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle--checked .react-toggle-track-check {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.25s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.react-toggle-track-x {
|
2018-01-13 19:41:20 +01:00
|
|
|
position: absolute;
|
2018-01-13 23:48:18 +01: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 21:34:33 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle--checked .react-toggle-track-x {
|
|
|
|
opacity: 0;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01: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 17:39:53 +02:00
|
|
|
transition-property: border-color, left;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.react-toggle--checked .react-toggle-thumb {
|
|
|
|
left: 27px;
|
|
|
|
border-color: $ui-highlight-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.getting-started__wrapper,
|
2019-08-20 23:10:25 +02:00
|
|
|
.getting_started,
|
|
|
|
.flex-spacer {
|
2018-01-13 23:48:18 +01:00
|
|
|
background: $ui-base-color;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.getting-started__wrapper {
|
|
|
|
position: relative;
|
|
|
|
overflow-y: auto;
|
2016-08-31 22:58:10 +02:00
|
|
|
}
|
2016-09-07 18:17:15 +02:00
|
|
|
|
2019-08-20 23:10:25 +02:00
|
|
|
.flex-spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.getting-started {
|
|
|
|
background: $ui-base-color;
|
|
|
|
flex: 1 0 auto;
|
2016-09-30 00:00:45 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
p {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $secondary-text-color;
|
2017-06-27 13:43:53 +02:00
|
|
|
}
|
2017-06-06 19:30:17 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
a {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $dark-text-color;
|
2017-06-27 13:43:53 +02:00
|
|
|
}
|
2018-10-27 23:09:07 +02:00
|
|
|
|
|
|
|
&__footer {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 20px;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $dark-text-color;
|
|
|
|
font-size: 13px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $dark-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-06 17:57:52 +02:00
|
|
|
|
|
|
|
&__trends {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
opacity: 1;
|
|
|
|
animation: fade 150ms linear;
|
|
|
|
margin-top: 10px;
|
|
|
|
|
2019-08-23 05:05:21 +02:00
|
|
|
h4 {
|
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-weight: 500;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2019-08-06 17:57:52 +02:00
|
|
|
@media screen and (max-height: 810px) {
|
|
|
|
.trends__item:nth-child(3) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-height: 720px) {
|
|
|
|
.trends__item:nth-child(2) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-height: 670px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.trends__item {
|
|
|
|
border-bottom: 0;
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
&__current {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 23:48:18 +01:00
|
|
|
}
|
2017-07-08 17:21:59 +02:00
|
|
|
|
2018-01-23 02:05:13 +01: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 23:48:18 +01:00
|
|
|
.keyboard-shortcuts {
|
|
|
|
padding: 8px 0 0;
|
|
|
|
overflow: hidden;
|
2017-07-08 17:21:59 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
thead {
|
|
|
|
position: absolute;
|
|
|
|
left: -9999px;
|
|
|
|
}
|
2017-07-08 17:21:59 +02:00
|
|
|
|
2018-01-13 23:48:18 +01: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 17:21:59 +02:00
|
|
|
}
|
2017-01-28 04:04:09 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.setting-text {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $darker-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid $ui-primary-color;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
font-family: inherit;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 7px 0;
|
|
|
|
width: 100%;
|
2018-01-13 19:41:20 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-01-13 19:41:20 +01:00
|
|
|
color: $primary-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
border-bottom-color: $ui-highlight-color;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
@include limited-single-column('screen and (max-width: 600px)') {
|
|
|
|
font-size: 16px;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&.light {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 27%);
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $inverted-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
border-bottom-color: $ui-highlight-color;
|
|
|
|
}
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.no-reduce-motion button.icon-button i.fa-retweet {
|
|
|
|
background-position: 0 0;
|
|
|
|
height: 19px;
|
|
|
|
transition: background-position 0.9s steps(10);
|
|
|
|
transition-duration: 0s;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 22px;
|
2018-01-13 19:41:20 +01:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&::before {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.no-reduce-motion button.icon-button.active i.fa-retweet {
|
|
|
|
transition-duration: 0.9s;
|
|
|
|
background-position: 0 100%;
|
2017-09-22 04:59:17 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.reduce-motion button.icon-button i.fa-retweet {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $action-button-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
transition: color 100ms ease-in;
|
2017-09-22 04:59:17 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.reduce-motion button.icon-button.active i.fa-retweet {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $highlight-text-color;
|
2017-03-01 00:53:11 +01:00
|
|
|
}
|
|
|
|
|
2018-09-11 17:24:31 +02:00
|
|
|
.reduce-motion button.icon-button.disabled i.fa-retweet {
|
|
|
|
color: darken($action-button-color, 13%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.load-more {
|
2016-09-30 00:00:45 +02:00
|
|
|
display: block;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $dark-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
font-size: inherit;
|
|
|
|
text-align: center;
|
|
|
|
line-height: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 15px;
|
2018-09-05 11:46:01 +02:00
|
|
|
box-sizing: border-box;
|
2018-01-13 23:48:18 +01:00
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
2018-09-05 11:46:01 +02:00
|
|
|
text-decoration: none;
|
2016-10-06 22:47:35 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
2016-10-06 22:47:35 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-12 13:17:17 +02:00
|
|
|
|
2018-05-27 20:23:56 +02:00
|
|
|
.load-gap {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.missing-indicator {
|
2018-01-18 17:25:37 +01:00
|
|
|
padding-top: 20px + 48px;
|
2017-04-10 16:27:30 +02:00
|
|
|
|
2018-01-18 17:25:37 +01:00
|
|
|
.regeneration-indicator__figure {
|
|
|
|
background-image: url('~flavours/glitch/images/elephant_ui_disappointed.svg');
|
2017-04-10 16:27:30 +02:00
|
|
|
}
|
2017-02-09 01:20:09 +01:00
|
|
|
}
|
|
|
|
|
2018-01-14 00:47:59 +01: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 18:29:15 +02:00
|
|
|
color: $darker-text-color;
|
2018-01-14 00:47:59 +01: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 23:48:18 +01:00
|
|
|
.text-btn {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
color: inherit;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
2017-04-16 20:32:00 +02:00
|
|
|
cursor: pointer;
|
2018-01-13 23:48:18 +01:00
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.loading-indicator {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $dark-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 400;
|
|
|
|
text-transform: uppercase;
|
|
|
|
overflow: visible;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2017-06-05 10:09:14 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
margin-left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
margin: 82px 0 0 50%;
|
|
|
|
white-space: nowrap;
|
2017-06-05 10:09:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.loading-indicator__figure {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2018-12-17 21:32:27 +01:00
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
2018-01-13 23:48:18 +01:00
|
|
|
box-sizing: border-box;
|
2018-12-17 21:32:27 +01:00
|
|
|
background-color: transparent;
|
2018-01-13 23:48:18 +01:00
|
|
|
border: 0 solid lighten($ui-base-color, 26%);
|
2018-12-17 21:32:27 +01:00
|
|
|
border-width: 6px;
|
2018-01-13 23:48:18 +01:00
|
|
|
border-radius: 50%;
|
2018-12-17 21:32:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.no-reduce-motion .loading-indicator span {
|
|
|
|
animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-reduce-motion .loading-indicator__figure {
|
2018-01-13 23:48:18 +01:00
|
|
|
animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.610, 0.355, 1.000);
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2019-10-24 22:47:48 +02: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 23:48:18 +01:00
|
|
|
@keyframes loader-figure {
|
|
|
|
0% {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
background-color: lighten($ui-base-color, 26%);
|
2017-04-16 20:32:00 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
29% {
|
|
|
|
background-color: lighten($ui-base-color, 26%);
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
30% {
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
background-color: transparent;
|
|
|
|
border-width: 21px;
|
|
|
|
opacity: 1;
|
2017-04-16 20:32:00 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
100% {
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
border-width: 0;
|
|
|
|
opacity: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
@keyframes loader-label {
|
|
|
|
0% { opacity: 0.25; }
|
|
|
|
30% { opacity: 1; }
|
|
|
|
100% { opacity: 0.25; }
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.spoiler-button {
|
2019-04-27 03:24:09 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-01-13 23:48:18 +01:00
|
|
|
position: absolute;
|
|
|
|
z-index: 100;
|
|
|
|
|
2019-04-27 03:24:09 +02:00
|
|
|
&--minified {
|
2019-05-04 18:18:15 +02:00
|
|
|
display: flex;
|
2019-04-27 03:24:09 +02:00
|
|
|
left: 4px;
|
|
|
|
top: 4px;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2019-05-04 18:18:15 +02:00
|
|
|
align-items: center;
|
2019-04-27 03:24:09 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 04:56:40 +02:00
|
|
|
&--click-thru {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2019-04-27 03:24:09 +02:00
|
|
|
&--hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__overlay {
|
2018-01-13 23:48:18 +01:00
|
|
|
display: block;
|
2019-04-27 03:24:09 +02: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 19:43:35 +02:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
.spoiler-button__overlay__label {
|
|
|
|
background: rgba($base-overlay-background, 0.5);
|
|
|
|
}
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.setting-toggle {
|
|
|
|
display: block;
|
|
|
|
line-height: 24px;
|
2017-04-16 20:32:00 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.setting-toggle__label,
|
2018-11-28 16:57:26 +01:00
|
|
|
.setting-radio__label,
|
2018-01-13 23:48:18 +01:00
|
|
|
.setting-meta__label {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $darker-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
margin-left: 8px;
|
|
|
|
vertical-align: middle;
|
2017-04-16 20:32:00 +02:00
|
|
|
}
|
|
|
|
|
2018-11-28 16:57:26 +01:00
|
|
|
.setting-radio {
|
|
|
|
display: block;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting-radio__label {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-settings__row legend {
|
|
|
|
color: $darker-text-color;
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting-radio__input {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.setting-meta__label {
|
|
|
|
float: right;
|
2017-05-03 14:02:15 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
@keyframes heartbeat {
|
|
|
|
from {
|
|
|
|
transform: scale(1);
|
|
|
|
transform-origin: center center;
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
10% {
|
|
|
|
transform: scale(0.91);
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
17% {
|
|
|
|
transform: scale(0.98);
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
2017-04-16 20:32:00 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
33% {
|
|
|
|
transform: scale(0.87);
|
|
|
|
animation-timing-function: ease-in;
|
2017-04-16 20:32:00 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
45% {
|
|
|
|
transform: scale(1);
|
|
|
|
animation-timing-function: ease-out;
|
2017-04-16 20:32:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.pulse-loading {
|
|
|
|
animation: heartbeat 1.5s ease-in-out infinite both;
|
|
|
|
}
|
2017-05-03 14:02:15 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.upload-area {
|
|
|
|
align-items: center;
|
|
|
|
background: rgba($base-overlay-background, 0.8);
|
2017-04-11 21:24:17 +02:00
|
|
|
display: flex;
|
2018-01-13 23:48:18 +01:00
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
left: 0;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 2000;
|
2017-04-11 21:24:17 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
* {
|
|
|
|
pointer-events: none;
|
2017-04-11 04:28:52 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-15 13:17:54 +02:00
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.upload-area__drop {
|
|
|
|
width: 320px;
|
|
|
|
height: 160px;
|
|
|
|
display: flex;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
padding: 8px;
|
2017-04-23 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01: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 04:26:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.upload-area__content {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $secondary-text-color;
|
2018-01-13 23:48:18 +01:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
|
|
|
border: 2px dashed $ui-base-lighter-color;
|
|
|
|
border-radius: 4px;
|
2017-04-23 04:39:50 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.dropdown--active .emoji-button img {
|
|
|
|
opacity: 1;
|
|
|
|
filter: none;
|
2017-04-23 04:39:50 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:48:18 +01:00
|
|
|
.loading-bar {
|
|
|
|
background-color: $ui-highlight-color;
|
|
|
|
height: 3px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2019-08-18 14:57:05 +02:00
|
|
|
z-index: 9999;
|
2018-01-13 23:48:18 +01:00
|
|
|
}
|
|
|
|
|
2018-09-06 19:17:14 +02: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 20:01:16 +02:00
|
|
|
.conversation {
|
2019-05-23 01:35:22 +02:00
|
|
|
display: flex;
|
2019-09-21 20:01:16 +02:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
2019-05-23 01:35:22 +02:00
|
|
|
padding: 5px;
|
2019-09-21 20:01:16 +02:00
|
|
|
padding-bottom: 0;
|
2019-05-23 01:35:22 +02:00
|
|
|
|
2019-09-21 20:01:16 +02:00
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
outline: 0;
|
|
|
|
}
|
2019-05-23 01:35:22 +02:00
|
|
|
|
2019-09-21 20:01:16 +02:00
|
|
|
&__avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 12px;
|
2019-12-01 07:06:20 +01:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__unread {
|
|
|
|
display: inline-block;
|
|
|
|
background: $highlight-text-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 0.625rem;
|
|
|
|
height: 0.625rem;
|
|
|
|
margin: -.1ex .15em .1ex;
|
2019-05-23 01:35:22 +02:00
|
|
|
}
|
|
|
|
|
2019-09-21 20:01:16 +02:00
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 10px 5px;
|
|
|
|
padding-right: 15px;
|
2019-09-27 02:14:49 +02:00
|
|
|
overflow: hidden;
|
2019-05-23 01:35:22 +02:00
|
|
|
|
2019-09-21 20:01:16 +02:00
|
|
|
&__info {
|
|
|
|
overflow: hidden;
|
2019-09-27 02:14:49 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
justify-content: space-between;
|
2019-05-23 01:35:22 +02:00
|
|
|
}
|
|
|
|
|
2019-09-21 20:01:16 +02:00
|
|
|
&__relative-time {
|
|
|
|
font-size: 15px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding-left: 15px;
|
2019-05-23 01:35:22 +02:00
|
|
|
}
|
|
|
|
|
2019-09-21 20:01:16 +02:00
|
|
|
&__names {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin-bottom: 4px;
|
2019-09-30 17:12:33 +02:00
|
|
|
flex-basis: 90px;
|
|
|
|
flex-grow: 1;
|
2019-09-21 20:01:16 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-30 17:00:42 +02:00
|
|
|
|
|
|
|
.status__content {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-05-23 01:35:22 +02:00
|
|
|
}
|
2019-12-01 07:06:20 +01: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-23 01:35:22 +02:00
|
|
|
}
|
|
|
|
|
2019-11-24 15:57:27 +01:00
|
|
|
.ui .flash-message {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-bottom: 0;
|
|
|
|
min-width: 75%;
|
|
|
|
}
|
|
|
|
|
2017-07-20 00:20:54 +02:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2017-06-08 00:52:56 +02:00
|
|
|
noscript {
|
|
|
|
text-align: center;
|
|
|
|
|
2017-07-23 20:28:06 +02:00
|
|
|
img {
|
|
|
|
width: 200px;
|
|
|
|
opacity: 0.5;
|
|
|
|
animation: flicker 4s infinite;
|
|
|
|
}
|
|
|
|
|
2017-06-08 00:52:56 +02:00
|
|
|
div {
|
2017-07-23 20:28:06 +02:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 30px auto;
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $secondary-text-color;
|
2017-07-23 20:28:06 +02:00
|
|
|
max-width: 400px;
|
2017-09-02 14:02:15 +02:00
|
|
|
|
|
|
|
a {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $highlight-text-color;
|
2017-09-02 14:02:15 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2019-10-02 00:39:56 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2017-06-08 00:52:56 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-21 01:38:24 +02:00
|
|
|
|
2017-07-23 20:28:06 +02:00
|
|
|
@keyframes flicker {
|
|
|
|
0% { opacity: 1; }
|
|
|
|
30% { opacity: 0.75; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
|
2018-01-14 01:12:10 +01:00
|
|
|
@import 'boost';
|
|
|
|
@import 'accounts';
|
2018-03-04 21:46:27 +01:00
|
|
|
@import 'domains';
|
2018-01-13 23:48:18 +01:00
|
|
|
@import 'status';
|
|
|
|
@import 'modal';
|
2017-12-29 23:55:06 +01:00
|
|
|
@import 'composer';
|
2018-01-14 01:12:10 +01:00
|
|
|
@import 'columns';
|
2018-01-18 17:25:37 +01:00
|
|
|
@import 'regeneration_indicator';
|
2019-08-30 00:14:36 +02:00
|
|
|
@import 'directory';
|
2018-01-14 01:12:10 +01:00
|
|
|
@import 'search';
|
|
|
|
@import 'emoji';
|
2017-10-14 00:58:38 +02:00
|
|
|
@import 'doodle';
|
2017-12-29 23:55:06 +01:00
|
|
|
@import 'drawer';
|
2018-01-13 23:18:50 +01:00
|
|
|
@import 'media';
|
|
|
|
@import 'sensitive';
|
2018-01-14 01:12:10 +01:00
|
|
|
@import 'lists';
|
2017-12-07 22:35:37 +01:00
|
|
|
@import 'emoji_picker';
|
|
|
|
@import 'local_settings';
|
2018-11-28 15:01:40 +01:00
|
|
|
@import 'error_boundary';
|
2019-06-12 16:03:10 +02:00
|
|
|
@import 'single_column';
|
2020-01-23 22:00:13 +01:00
|
|
|
@import 'announcements';
|