2023-02-13 03:57:03 +00:00
|
|
|
@use 'sass:math';
|
2021-10-14 18:44:59 +00:00
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
$no-columns-breakpoint: 600px;
|
2019-01-11 10:15:44 +00:00
|
|
|
$sidebar-width: 240px;
|
|
|
|
$content-width: 840px;
|
2018-09-18 14:45:58 +00:00
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
.admin-wrapper {
|
2017-01-28 02:56:10 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2019-09-20 08:52:14 +00:00
|
|
|
width: 100%;
|
|
|
|
min-height: 100vh;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
2024-04-23 16:43:49 +00:00
|
|
|
.icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 0 2px;
|
|
|
|
}
|
|
|
|
|
2017-01-28 02:56:10 +00:00
|
|
|
.sidebar-wrapper {
|
2019-09-20 08:52:14 +00:00
|
|
|
min-height: 100vh;
|
|
|
|
overflow: hidden;
|
|
|
|
pointer-events: none;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
&__inner {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
background: $ui-base-color;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
.sidebar {
|
2019-01-11 10:15:44 +00:00
|
|
|
width: $sidebar-width;
|
2017-04-19 12:30:23 +00:00
|
|
|
padding: 0;
|
2019-09-20 08:52:14 +00:00
|
|
|
pointer-events: auto;
|
|
|
|
|
|
|
|
&__toggle {
|
|
|
|
display: none;
|
2022-10-30 00:43:15 +00:00
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
align-items: center;
|
2019-09-20 08:52:14 +00:00
|
|
|
|
|
|
|
&__logo {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
a {
|
2022-10-30 00:43:15 +00:00
|
|
|
display: block;
|
2019-09-20 08:52:14 +00:00
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
display: block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
flex: 0 0 auto;
|
2022-10-30 00:43:15 +00:00
|
|
|
font-size: 18px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 5px 10px;
|
|
|
|
border-radius: 4px;
|
2019-09-20 08:52:14 +00:00
|
|
|
|
2022-10-30 00:43:15 +00:00
|
|
|
&:focus {
|
|
|
|
background: $ui-base-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-times {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
.fa-times {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-bars {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-09-20 08:52:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-07 18:47:31 +00:00
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
.logo {
|
|
|
|
display: block;
|
|
|
|
margin: 40px auto;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
2022-06-23 21:08:52 +00:00
|
|
|
.logo--wordmark {
|
|
|
|
display: inherit;
|
|
|
|
margin: inherit;
|
|
|
|
width: inherit;
|
2022-10-30 00:43:15 +00:00
|
|
|
height: 25px;
|
2022-06-23 21:08:52 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
@media screen and (max-width: $no-columns-breakpoint) {
|
|
|
|
& > a:first-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
overflow: hidden;
|
2017-04-19 12:30:23 +00:00
|
|
|
margin-bottom: 20px;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
@media screen and (max-width: $no-columns-breakpoint) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
a {
|
|
|
|
display: block;
|
2017-09-02 13:49:28 +00:00
|
|
|
padding: 15px;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2016-12-13 12:42:10 +00:00
|
|
|
text-decoration: none;
|
|
|
|
transition: all 200ms linear;
|
2019-05-04 15:39:53 +00:00
|
|
|
transition-property: color, background-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 4px 0 0 4px;
|
2019-09-20 08:52:14 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
2018-09-28 00:11:14 +00:00
|
|
|
i.fa {
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 5px;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
background-color: darken($ui-base-color, 5%);
|
2016-12-13 12:42:10 +00:00
|
|
|
transition: all 100ms linear;
|
2019-05-04 15:39:53 +00:00
|
|
|
transition-property: color, background-color;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2017-05-07 18:47:31 +00:00
|
|
|
border-radius: 4px 0 0;
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: darken($ui-base-color, 4%);
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 0 0 0 4px;
|
2017-04-19 12:30:23 +00:00
|
|
|
margin: 0;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
border: 0;
|
2017-09-02 13:49:28 +00:00
|
|
|
padding: 15px 35px;
|
2018-09-18 14:45:58 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
|
2023-09-01 15:47:07 +00:00
|
|
|
.warning a {
|
|
|
|
color: $gold-star;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
.simple-navigation-active-leaf a {
|
|
|
|
color: $primary-text-color;
|
2023-07-03 09:32:31 +00:00
|
|
|
background-color: $ui-highlight-color;
|
2018-09-18 14:45:58 +00:00
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: 0;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-18 14:45:58 +00:00
|
|
|
|
|
|
|
& > ul > .simple-navigation-active-leaf a {
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
2017-01-28 02:56:10 +00:00
|
|
|
.content-wrapper {
|
2019-09-20 08:52:14 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
max-width: $content-width;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $content-width + $sidebar-width) {
|
|
|
|
.sidebar-wrapper--empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-wrapper {
|
|
|
|
width: $sidebar-width;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $no-columns-breakpoint) {
|
|
|
|
.sidebar-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
.content {
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-top: 55px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
padding-inline-start: 25px;
|
|
|
|
padding-inline-end: 15px;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
@media screen and (max-width: $no-columns-breakpoint) {
|
|
|
|
max-width: none;
|
|
|
|
padding: 15px;
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
|
|
|
|
2022-10-22 09:44:41 +00:00
|
|
|
&__heading {
|
2022-10-30 00:43:15 +00:00
|
|
|
margin-bottom: 45px;
|
2022-10-22 09:44:41 +00:00
|
|
|
|
|
|
|
&__row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-top: -15px;
|
|
|
|
margin-inline-end: -15px;
|
2022-10-22 09:44:41 +00:00
|
|
|
|
|
|
|
& > * {
|
|
|
|
margin-top: 15px;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 15px;
|
2022-10-22 09:44:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__tabs {
|
|
|
|
margin-top: 30px;
|
2022-10-30 00:43:15 +00:00
|
|
|
width: 100%;
|
2022-10-22 09:44:41 +00:00
|
|
|
|
|
|
|
& > div {
|
|
|
|
display: flex;
|
2022-10-30 00:43:15 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 5px;
|
2022-10-22 09:44:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: 14px;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2022-10-30 00:43:15 +00:00
|
|
|
padding: 7px 10px;
|
2022-10-22 09:44:41 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 500;
|
|
|
|
gap: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
2022-10-30 00:43:15 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2022-10-22 09:44:41 +00:00
|
|
|
&.selected {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
2022-10-30 00:43:15 +00:00
|
|
|
background: $ui-highlight-color;
|
2022-10-22 09:44:41 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-12 13:16:20 +00:00
|
|
|
}
|
|
|
|
|
2022-10-22 09:44:41 +00:00
|
|
|
&__actions {
|
2019-12-16 22:55:16 +00:00
|
|
|
display: inline-flex;
|
2022-12-28 09:21:10 +00:00
|
|
|
flex-flow: wrap;
|
|
|
|
gap: 5px;
|
2019-12-16 22:55:16 +00:00
|
|
|
}
|
|
|
|
|
2022-06-09 19:57:36 +00:00
|
|
|
h2 small {
|
|
|
|
font-size: 12px;
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $darker-text-color;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
2019-09-20 08:52:14 +00:00
|
|
|
@media screen and (max-width: $no-columns-breakpoint) {
|
|
|
|
border-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
2019-12-16 22:55:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
font-size: 24px;
|
2020-06-25 22:36:30 +00:00
|
|
|
line-height: 36px;
|
2022-10-22 09:44:41 +00:00
|
|
|
font-weight: 700;
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 21:06:10 +00:00
|
|
|
h3 {
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2017-09-12 21:06:10 +00:00
|
|
|
font-size: 20px;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2018-03-07 00:39:40 +00:00
|
|
|
h4 {
|
2020-01-27 12:44:29 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 13px;
|
2018-09-18 14:45:58 +00:00
|
|
|
font-weight: 700;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $darker-text-color;
|
2018-03-07 00:39:40 +00:00
|
|
|
padding-bottom: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
|
2017-06-14 16:01:27 +00:00
|
|
|
h6 {
|
|
|
|
font-size: 16px;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2017-06-14 16:01:27 +00:00
|
|
|
line-height: 28px;
|
2019-09-20 08:52:14 +00:00
|
|
|
font-weight: 500;
|
2017-06-14 16:01:27 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
.fields-group h6 {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:25:59 +00:00
|
|
|
.directory__tag > a,
|
|
|
|
.directory__tag > div {
|
2019-01-08 12:39:49 +00:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:25:59 +00:00
|
|
|
.directory__tag .table-action-link .fa {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2019-01-08 12:39:49 +00:00
|
|
|
.directory__tag h4 {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 700;
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-transform: none;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-bottom: 0;
|
2019-06-06 16:51:46 +00:00
|
|
|
border-bottom: 0;
|
2024-02-28 12:07:06 +00:00
|
|
|
|
|
|
|
.comment {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
&.private-comment {
|
|
|
|
display: block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.public-comment {
|
|
|
|
display: block;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2019-01-08 12:39:49 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 23:42:52 +00:00
|
|
|
& > p {
|
2017-01-28 02:56:10 +00:00
|
|
|
font-size: 14px;
|
2019-09-20 08:52:14 +00:00
|
|
|
line-height: 21px;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
strong {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
font-weight: 500;
|
2017-12-07 15:01:52 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
hr {
|
2018-04-20 00:28:48 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 0;
|
2017-02-16 23:42:52 +00:00
|
|
|
border: 0;
|
2022-06-01 17:22:35 +00:00
|
|
|
border-bottom: 1px solid rgba($ui-base-lighter-color, 0.6);
|
2018-04-20 00:28:48 +00:00
|
|
|
margin: 20px 0;
|
2018-04-10 18:27:59 +00:00
|
|
|
|
2018-04-20 00:28:48 +00:00
|
|
|
&.spacer {
|
|
|
|
height: 1px;
|
|
|
|
border: 0;
|
2018-04-10 18:27:59 +00:00
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
@media screen and (max-width: $no-columns-breakpoint) {
|
2017-01-28 20:57:03 +00:00
|
|
|
display: block;
|
|
|
|
|
2019-09-20 08:52:14 +00:00
|
|
|
.sidebar-wrapper {
|
|
|
|
min-height: 0;
|
2017-01-28 20:57:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 100%;
|
2018-09-18 14:45:58 +00:00
|
|
|
padding: 0;
|
2017-01-28 20:57:03 +00:00
|
|
|
height: auto;
|
2019-09-20 08:52:14 +00:00
|
|
|
|
|
|
|
&__toggle {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > ul {
|
|
|
|
display: none;
|
2022-02-16 20:44:19 +00:00
|
|
|
|
|
|
|
&.visible {
|
|
|
|
display: block;
|
2022-10-30 00:43:15 +00:00
|
|
|
position: fixed;
|
|
|
|
z-index: 10;
|
|
|
|
width: 100%;
|
2023-02-21 09:06:13 +00:00
|
|
|
height: calc(100% - 56px);
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-start: 0;
|
2022-10-30 00:43:15 +00:00
|
|
|
bottom: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
background: $ui-base-color;
|
2022-02-16 20:44:19 +00:00
|
|
|
}
|
2019-09-20 08:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul a,
|
|
|
|
ul ul a {
|
|
|
|
border-radius: 0;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
transition: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul ul {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul .simple-navigation-active-leaf a {
|
|
|
|
border-bottom-color: $ui-highlight-color;
|
|
|
|
}
|
2017-01-28 20:57:03 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
hr.spacer {
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
margin: 20px 0;
|
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
|
2019-09-18 14:37:27 +00:00
|
|
|
body,
|
|
|
|
.admin-wrapper .content {
|
|
|
|
.muted-hint {
|
|
|
|
color: $darker-text-color;
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
|
2019-09-18 14:37:27 +00:00
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
}
|
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
.positive-hint,
|
|
|
|
.negative-hint,
|
|
|
|
.neutral-hint {
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 14:37:27 +00:00
|
|
|
.positive-hint {
|
|
|
|
color: $valid-value-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
|
2019-09-18 14:37:27 +00:00
|
|
|
.negative-hint {
|
|
|
|
color: $error-value-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
|
2019-09-18 14:37:27 +00:00
|
|
|
.neutral-hint {
|
|
|
|
color: $dark-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
|
2019-09-18 14:37:27 +00:00
|
|
|
.warning-hint {
|
|
|
|
color: $gold-star;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
.filters {
|
|
|
|
display: flex;
|
2017-09-09 00:26:58 +00:00
|
|
|
flex-wrap: wrap;
|
2023-03-27 08:56:25 +00:00
|
|
|
gap: 40px;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
.filter-subset {
|
|
|
|
flex: 0 0 auto;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-bottom: 20px;
|
2017-09-09 00:26:58 +00:00
|
|
|
|
|
|
|
&:last-child {
|
2019-09-20 08:52:14 +00:00
|
|
|
margin-bottom: 30px;
|
2017-09-09 00:26:58 +00:00
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-top: 5px;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 5px;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-22 09:44:41 +00:00
|
|
|
& > div {
|
|
|
|
display: flex;
|
|
|
|
gap: 5px;
|
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2020-01-27 12:44:29 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
2017-12-07 15:01:52 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 11:06:34 +00:00
|
|
|
&--with-select strong {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2016-12-13 12:42:10 +00:00
|
|
|
text-decoration: none;
|
2020-01-27 12:44:29 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
2016-12-13 12:42:10 +00:00
|
|
|
font-weight: 500;
|
2017-05-08 13:57:49 +00:00
|
|
|
border-bottom: 2px solid $ui-base-color;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 5%);
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $highlight-text-color;
|
2017-05-08 13:57:49 +00:00
|
|
|
border-bottom: 2px solid $ui-highlight-color;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
.report-accounts {
|
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex-wrap: wrap;
|
2017-02-16 23:42:52 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-accounts__item {
|
2017-02-17 01:05:15 +00:00
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex: 250px;
|
2017-02-17 01:05:15 +00:00
|
|
|
flex-direction: column;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 5px;
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
& > strong {
|
|
|
|
display: block;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 0 10px -5px;
|
2017-02-16 23:42:52 +00:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2017-12-07 15:01:52 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
|
|
|
|
2017-02-17 01:05:15 +00:00
|
|
|
.account-card {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
.report-status,
|
|
|
|
.account-status {
|
2017-02-16 23:42:52 +00:00
|
|
|
display: flex;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.activity-stream {
|
2017-02-17 01:05:15 +00:00
|
|
|
flex: 2 0 0;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 20px;
|
2017-09-02 13:49:28 +00:00
|
|
|
max-width: calc(100% - 60px);
|
|
|
|
|
|
|
|
.entry {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
.report-status__actions,
|
|
|
|
.account-status__actions {
|
2017-02-16 23:42:52 +00:00
|
|
|
flex: 0 0 auto;
|
2017-06-08 12:58:22 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-05-23 17:45:43 +00:00
|
|
|
|
2017-06-08 12:58:22 +00:00
|
|
|
.icon-button {
|
2017-05-23 17:45:43 +00:00
|
|
|
font-size: 24px;
|
|
|
|
width: 24px;
|
2017-06-08 12:58:22 +00:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10px;
|
2017-05-23 17:45:43 +00:00
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
2017-07-18 14:38:22 +00:00
|
|
|
|
2018-05-05 21:06:29 +00:00
|
|
|
.simple_form.new_report_note,
|
|
|
|
.simple_form.new_account_moderation_note {
|
2018-04-20 00:28:48 +00:00
|
|
|
max-width: 100%;
|
2018-04-10 18:27:59 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 22:36:30 +00:00
|
|
|
.simple_form {
|
|
|
|
.actions {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
.batch-form-box {
|
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 5px;
|
2017-07-18 14:38:22 +00:00
|
|
|
|
|
|
|
#form_status_batch_action {
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 5px 5px 0;
|
2017-07-18 14:38:22 +00:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2017-09-02 13:49:28 +00:00
|
|
|
input.button {
|
|
|
|
margin: 0 5px 5px 0;
|
|
|
|
}
|
2017-07-18 14:38:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.back-link {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
a {
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $highlight-text-color;
|
2017-07-18 14:38:22 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-24 01:05:53 +00:00
|
|
|
|
2020-04-28 17:39:16 +00:00
|
|
|
.special-action-button,
|
|
|
|
.back-link {
|
2023-03-27 08:56:25 +00:00
|
|
|
text-align: end;
|
2020-04-28 17:39:16 +00:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-buttons {
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2017-11-24 01:05:53 +00:00
|
|
|
.spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry {
|
2022-02-14 20:27:53 +00:00
|
|
|
display: block;
|
2017-11-24 01:05:53 +00:00
|
|
|
line-height: 20px;
|
2022-01-17 08:41:33 +00:00
|
|
|
padding: 15px;
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-inline-start: 15px * 2 + 40px;
|
2020-04-03 11:06:34 +00:00
|
|
|
background: $ui-base-color;
|
2022-01-17 08:41:33 +00:00
|
|
|
border-bottom: 1px solid darken($ui-base-color, 8%);
|
|
|
|
position: relative;
|
2022-02-14 20:27:53 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 14px;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
}
|
2020-04-03 11:06:34 +00:00
|
|
|
|
|
|
|
&:last-child {
|
2022-01-17 08:41:33 +00:00
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
2020-04-03 11:06:34 +00:00
|
|
|
border-bottom: 0;
|
|
|
|
}
|
2017-11-24 01:05:53 +00:00
|
|
|
|
2022-02-14 20:27:53 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2022-01-17 08:41:33 +00:00
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
2017-11-24 01:05:53 +00:00
|
|
|
&__avatar {
|
2022-01-17 08:41:33 +00:00
|
|
|
position: absolute;
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-start: 15px;
|
2022-01-17 08:41:33 +00:00
|
|
|
top: 15px;
|
2017-11-24 01:05:53 +00:00
|
|
|
|
|
|
|
.avatar {
|
2022-01-17 08:41:33 +00:00
|
|
|
border-radius: 4px;
|
2017-11-24 01:05:53 +00:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2018-01-04 18:38:46 +00:00
|
|
|
word-wrap: break-word;
|
2017-11-24 01:05:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__timestamp {
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $dark-text-color;
|
2017-11-24 01:05:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
.username,
|
|
|
|
.target {
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2017-11-24 01:05:53 +00:00
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2017-11-24 01:05:53 +00:00
|
|
|
}
|
2017-11-27 15:07:59 +00:00
|
|
|
|
2018-04-20 00:28:48 +00:00
|
|
|
a.name-tag,
|
2018-05-12 15:44:15 +00:00
|
|
|
.name-tag,
|
|
|
|
a.inline-name-tag,
|
|
|
|
.inline-name-tag {
|
2018-04-20 00:28:48 +00:00
|
|
|
text-decoration: none;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2017-11-27 15:07:59 +00:00
|
|
|
|
|
|
|
.username {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2018-04-20 00:28:48 +00:00
|
|
|
|
|
|
|
&.suspended {
|
|
|
|
.username {
|
|
|
|
text-decoration: line-through;
|
|
|
|
color: lighten($error-red, 12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
filter: grayscale(100%);
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-12 15:44:15 +00:00
|
|
|
a.name-tag,
|
|
|
|
.name-tag {
|
2022-01-17 08:41:33 +00:00
|
|
|
display: inline-flex;
|
2018-05-12 15:44:15 +00:00
|
|
|
align-items: center;
|
2022-01-17 08:41:33 +00:00
|
|
|
vertical-align: top;
|
2018-05-12 15:44:15 +00:00
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 5px;
|
2018-05-12 15:44:15 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.suspended {
|
|
|
|
.avatar {
|
|
|
|
filter: grayscale(100%);
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-20 00:28:48 +00:00
|
|
|
.speech-bubble {
|
|
|
|
margin-bottom: 20px;
|
2023-04-04 14:48:34 +00:00
|
|
|
border-inline-start: 4px solid $ui-highlight-color;
|
2018-04-20 00:28:48 +00:00
|
|
|
|
|
|
|
&.positive {
|
|
|
|
border-left-color: $success-green;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.negative {
|
|
|
|
border-left-color: lighten($error-red, 12%);
|
|
|
|
}
|
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
&.warning {
|
|
|
|
border-left-color: $gold-star;
|
|
|
|
}
|
|
|
|
|
2018-04-20 00:28:48 +00:00
|
|
|
&__bubble {
|
|
|
|
padding: 16px;
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-inline-start: 14px;
|
2018-04-20 00:28:48 +00:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
border-radius: 4px 4px 4px 0;
|
|
|
|
position: relative;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
a {
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $darker-text-color;
|
2018-04-20 00:28:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__owner {
|
|
|
|
padding: 8px;
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-inline-start: 12px;
|
2018-04-20 00:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
time {
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $dark-text-color;
|
2018-04-20 00:28:48 +00:00
|
|
|
}
|
2017-11-27 15:07:59 +00:00
|
|
|
}
|
2018-09-13 01:44:08 +00:00
|
|
|
|
|
|
|
.report-card {
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&__profile {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
.account {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&__avatar-wrapper {
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-start: 0;
|
2018-09-13 01:44:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__stats {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $darker-text-color;
|
2020-01-27 12:44:29 +00:00
|
|
|
text-transform: uppercase;
|
2023-03-27 08:56:25 +00:00
|
|
|
text-align: end;
|
2018-09-13 01:44:08 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
color: lighten($darker-text-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.red {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__summary {
|
|
|
|
&__item {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
border-top: 1px solid darken($ui-base-color, 4%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__reported-by,
|
|
|
|
&__assigned {
|
|
|
|
padding: 15px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 150px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
&,
|
|
|
|
.username {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
max-width: calc(100% - 300px);
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
color: $dark-text-color;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 4px;
|
2018-09-13 01:44:08 +00:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content a {
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.one-line {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-03-14 04:28:30 +00:00
|
|
|
|
|
|
|
.ellipsized-ip {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 120px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2019-09-09 12:15:52 +00:00
|
|
|
|
|
|
|
.admin-account-bio {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 0 -5px;
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
flex: 1 0 50%;
|
2021-11-19 17:22:49 +00:00
|
|
|
max-width: 100%;
|
2019-09-09 12:15:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__header__fields,
|
|
|
|
.account__header__content {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__header__fields {
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
a {
|
2022-06-19 06:18:08 +00:00
|
|
|
color: $highlight-text-color;
|
2019-09-09 12:15:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dl:first-child .verified {
|
|
|
|
border-radius: 0 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.verified a {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account__header__content {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
2020-01-11 01:14:45 +00:00
|
|
|
|
|
|
|
.center-text {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-01-28 01:21:00 +00:00
|
|
|
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 07:42:13 +00:00
|
|
|
.applications-list__item,
|
|
|
|
.filters-list__item {
|
2022-03-02 19:28:25 +00:00
|
|
|
padding: 15px 0;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
2022-07-05 00:41:40 +00:00
|
|
|
.user-role {
|
|
|
|
color: var(--user-role-accent);
|
|
|
|
}
|
|
|
|
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 07:42:13 +00:00
|
|
|
.announcements-list,
|
|
|
|
.filters-list {
|
2020-01-28 01:21:00 +00:00
|
|
|
border: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
padding: 15px 0;
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
padding: 0 15px;
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 1.5;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
2022-03-01 15:48:58 +00:00
|
|
|
.account-role {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.announcements-list__item__title {
|
2020-01-28 01:21:00 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
padding: 0 15px;
|
|
|
|
color: $dark-text-color;
|
2022-07-05 00:41:40 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2020-01-28 01:21:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__action-bar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2022-03-01 15:48:58 +00:00
|
|
|
&__permissions {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2020-01-28 01:21:00 +00:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-28 17:39:16 +00:00
|
|
|
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 07:42:13 +00:00
|
|
|
.filters-list__item {
|
|
|
|
&__title {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 0;
|
2024-02-27 10:46:58 +00:00
|
|
|
word-break: break-word;
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 07:42:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__permissions {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.expiration {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.expired {
|
|
|
|
.expiration {
|
|
|
|
color: lighten($error-red, 12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.permissions-list__item__icon {
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
.dashboard__counters.admin-account-counters {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2020-04-28 17:39:16 +00:00
|
|
|
.account-badges {
|
|
|
|
margin: -2px 0;
|
|
|
|
}
|
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
.retention {
|
2021-10-21 04:24:34 +00:00
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
> h4 {
|
|
|
|
position: sticky;
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-start: 0;
|
2021-10-21 04:24:34 +00:00
|
|
|
}
|
|
|
|
|
2021-10-14 18:44:59 +00:00
|
|
|
&__table {
|
|
|
|
&__number {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__date {
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 10px 0;
|
2023-03-27 08:56:25 +00:00
|
|
|
text-align: start;
|
2021-10-14 18:44:59 +00:00
|
|
|
min-width: 120px;
|
|
|
|
|
|
|
|
&.retention__table__average {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__size {
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__box {
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $primary-text-color;
|
|
|
|
width: 52px;
|
|
|
|
margin: 1px;
|
|
|
|
|
|
|
|
@for $i from 0 through 10 {
|
|
|
|
&--#{10 * $i} {
|
2023-02-13 03:57:03 +00:00
|
|
|
background-color: rgba(
|
|
|
|
$ui-highlight-color,
|
|
|
|
1 * (math.div(max(1, $i), 10))
|
|
|
|
);
|
2021-10-14 18:44:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sparkline {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
padding-bottom: 55px + 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__value {
|
|
|
|
display: flex;
|
|
|
|
line-height: 33px;
|
|
|
|
align-items: flex-end;
|
|
|
|
padding: 20px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
|
|
|
&__total {
|
|
|
|
display: block;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 10px;
|
2021-10-14 18:44:59 +00:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 28px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__change {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
margin-bottom: -3px;
|
|
|
|
|
|
|
|
&.positive {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.negative {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
padding: 0 20px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__graph {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
2021-10-21 04:24:34 +00:00
|
|
|
width: 100%;
|
2021-10-14 18:44:59 +00:00
|
|
|
|
|
|
|
svg {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
path:first-child {
|
|
|
|
fill: rgba($highlight-text-color, 0.25) !important;
|
2023-01-04 12:13:57 +00:00
|
|
|
fill-opacity: 1 !important;
|
2021-10-14 18:44:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
path:last-child {
|
|
|
|
stroke: lighten($highlight-text-color, 6%) !important;
|
|
|
|
fill: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.sparkline {
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: lighten($ui-base-color, 6%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.skeleton {
|
|
|
|
background-color: lighten($ui-base-color, 8%);
|
2023-02-13 03:57:03 +00:00
|
|
|
background-image: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
lighten($ui-base-color, 8%),
|
|
|
|
lighten($ui-base-color, 12%),
|
|
|
|
lighten($ui-base-color, 8%)
|
|
|
|
);
|
2021-10-14 18:44:59 +00:00
|
|
|
background-size: 200px 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 1;
|
|
|
|
width: 100%;
|
|
|
|
animation: skeleton 1.2s ease-in-out infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes skeleton {
|
|
|
|
0% {
|
|
|
|
background-position: -200px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
background-position: calc(200px + 100%) 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dimension {
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
|
|
|
|
&__key {
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 11px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__value {
|
2023-03-27 08:56:25 +00:00
|
|
|
text-align: end;
|
2021-10-14 18:44:59 +00:00
|
|
|
color: $darker-text-color;
|
|
|
|
padding: 11px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__indicator {
|
|
|
|
display: inline-block;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: $ui-highlight-color;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 10px;
|
2021-10-14 18:44:59 +00:00
|
|
|
|
|
|
|
@for $i from 0 through 10 {
|
|
|
|
&--#{10 * $i} {
|
2023-02-13 03:57:03 +00:00
|
|
|
background-color: rgba(
|
|
|
|
$ui-highlight-color,
|
|
|
|
1 * (math.div(max(1, $i), 10))
|
|
|
|
);
|
2021-10-14 18:44:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
2023-06-01 07:37:38 +00:00
|
|
|
|
|
|
|
&.negative {
|
|
|
|
color: $error-value-color;
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
|
|
.dimension__item__value {
|
|
|
|
color: $error-value-color;
|
|
|
|
}
|
|
|
|
}
|
2021-10-14 18:44:59 +00:00
|
|
|
}
|
2020-04-28 17:39:16 +00:00
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
.report-reason-selector {
|
|
|
|
border-radius: 4px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&__category {
|
|
|
|
cursor: pointer;
|
|
|
|
border-bottom: 1px solid darken($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
padding: 15px;
|
2024-01-25 15:41:31 +00:00
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
align-items: center;
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__rules {
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-start: 30px;
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__rule {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 15px;
|
2024-01-25 15:41:31 +00:00
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
align-items: center;
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-header {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 15px;
|
|
|
|
grid-template-columns: minmax(0, 1fr) 300px;
|
|
|
|
|
|
|
|
&__details {
|
|
|
|
&__item {
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 15px 0;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
font-weight: 600;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--horizontal {
|
|
|
|
display: grid;
|
|
|
|
grid-auto-columns: minmax(0, 1fr);
|
|
|
|
grid-auto-flow: column;
|
|
|
|
|
|
|
|
.report-header__details__item {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-12 00:08:23 +00:00
|
|
|
|
2023-05-01 09:23:57 +00:00
|
|
|
@media screen and (width <= 930px) {
|
2022-02-12 00:08:23 +00:00
|
|
|
grid-template-columns: minmax(0, 1fr);
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account-card {
|
|
|
|
border-radius: 4px;
|
2024-03-12 09:51:30 +00:00
|
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
2024-03-19 08:20:53 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__warning-badge {
|
|
|
|
position: absolute;
|
|
|
|
padding: 4px 10px;
|
|
|
|
top: 10px;
|
|
|
|
inset-inline-start: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background:
|
|
|
|
url('../images/warning-stripes.svg') repeat-y left,
|
|
|
|
url('../images/warning-stripes.svg') repeat-y right,
|
|
|
|
var(--background-color);
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
|
2022-03-07 10:38:52 +00:00
|
|
|
&__permalink {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-01-17 08:41:33 +00:00
|
|
|
&__header {
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 128px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
background: darken($ui-base-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2022-03-07 10:38:52 +00:00
|
|
|
margin-top: -(15px + 8px);
|
2022-01-17 08:41:33 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
|
|
|
|
&__avatar {
|
2022-03-07 10:38:52 +00:00
|
|
|
padding: 14px;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
2022-03-07 10:38:52 +00:00
|
|
|
img,
|
|
|
|
.account__avatar {
|
2022-01-17 08:41:33 +00:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
2022-03-07 10:38:52 +00:00
|
|
|
background-color: darken($ui-base-color, 8%);
|
2022-01-17 08:41:33 +00:00
|
|
|
border-radius: 8px;
|
2022-03-07 10:38:52 +00:00
|
|
|
border: 1px solid $ui-base-color;
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-name {
|
|
|
|
color: $darker-text-color;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
font-size: 15px;
|
2022-03-07 10:38:52 +00:00
|
|
|
line-height: 20px;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
bdi {
|
|
|
|
display: block;
|
|
|
|
color: $primary-text-color;
|
2022-03-07 10:38:52 +00:00
|
|
|
font-weight: 700;
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__bio {
|
|
|
|
padding: 0 15px;
|
2022-03-07 10:38:52 +00:00
|
|
|
margin: 8px 0;
|
2022-01-17 08:41:33 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
word-wrap: break-word;
|
2022-03-07 10:38:52 +00:00
|
|
|
max-height: 21px * 2;
|
2022-01-17 08:41:33 +00:00
|
|
|
position: relative;
|
2022-03-07 10:38:52 +00:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 21px;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
display: block;
|
2023-02-13 03:57:03 +00:00
|
|
|
content: '';
|
2022-01-17 08:41:33 +00:00
|
|
|
width: 50px;
|
2022-03-07 10:38:52 +00:00
|
|
|
height: 21px;
|
2022-01-17 08:41:33 +00:00
|
|
|
position: absolute;
|
2022-03-22 10:58:13 +00:00
|
|
|
bottom: 0;
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-end: 15px;
|
2022-01-17 08:41:33 +00:00
|
|
|
background: linear-gradient(to left, $ui-base-color, transparent);
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2022-02-22 14:27:25 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
unicode-bidi: isolate;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
display: flex;
|
2022-03-07 10:38:52 +00:00
|
|
|
justify-content: space-between;
|
2022-01-17 08:41:33 +00:00
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__button {
|
2022-03-07 10:38:52 +00:00
|
|
|
flex-shrink: 1;
|
2022-01-17 08:41:33 +00:00
|
|
|
padding: 0 15px;
|
2022-03-07 10:38:52 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
min-width: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__counters {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: grid;
|
|
|
|
grid-auto-columns: minmax(0, 1fr);
|
|
|
|
grid-auto-flow: column;
|
2022-03-07 10:38:52 +00:00
|
|
|
max-width: 340px;
|
|
|
|
min-width: 65px * 3;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
&__item {
|
2022-03-07 10:38:52 +00:00
|
|
|
padding: 15px 0;
|
2022-01-17 08:41:33 +00:00
|
|
|
text-align: center;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 15px;
|
2022-03-07 10:38:52 +00:00
|
|
|
line-height: 21px;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 13px;
|
2022-03-07 10:38:52 +00:00
|
|
|
line-height: 18px;
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-notes {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
background: $ui-base-color;
|
|
|
|
position: relative;
|
|
|
|
padding: 15px;
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-inline-start: 15px * 2 + 40px;
|
2022-01-17 08:41:33 +00:00
|
|
|
border-bottom: 1px solid darken($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__avatar {
|
|
|
|
position: absolute;
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-start: 15px;
|
2022-01-17 08:41:33 +00:00
|
|
|
top: 15px;
|
|
|
|
border-radius: 4px;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
2022-02-26 20:14:12 +00:00
|
|
|
.username {
|
2022-01-17 08:41:33 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 5px;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
2022-02-26 20:14:12 +00:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
time {
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-start: 5px;
|
2022-01-17 08:41:33 +00:00
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
unicode-bidi: plaintext;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2023-01-18 15:32:23 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
position: absolute;
|
|
|
|
top: 15px;
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-end: 15px;
|
|
|
|
text-align: end;
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-actions {
|
|
|
|
border: 1px solid darken($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
line-height: 18px;
|
|
|
|
border-bottom: 1px solid darken($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
2022-02-11 20:51:57 +00:00
|
|
|
box-sizing: border-box;
|
2022-01-17 08:41:33 +00:00
|
|
|
flex: 0 0 auto;
|
2022-02-11 20:51:57 +00:00
|
|
|
width: 200px;
|
2022-01-17 08:41:33 +00:00
|
|
|
padding: 15px;
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-inline-end: 0;
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
.button {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
|
|
|
padding: 15px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $dark-text-color;
|
|
|
|
}
|
|
|
|
}
|
2022-02-11 20:51:57 +00:00
|
|
|
|
2023-05-01 09:23:57 +00:00
|
|
|
@media screen and (width <= 800px) {
|
2022-02-11 20:51:57 +00:00
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
flex-direction: column;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description {
|
|
|
|
padding: 0;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-skip-link {
|
2023-04-04 14:48:34 +00:00
|
|
|
float: right;
|
2022-02-11 20:51:57 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $ui-highlight-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2022-01-17 08:41:33 +00:00
|
|
|
}
|
2022-02-14 20:27:53 +00:00
|
|
|
|
|
|
|
.strike-card {
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $primary-text-color;
|
2022-03-01 21:20:29 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
min-height: 100%;
|
2022-02-14 20:27:53 +00:00
|
|
|
|
2022-12-13 19:03:09 +00:00
|
|
|
a {
|
2022-12-15 14:52:18 +00:00
|
|
|
color: $highlight-text-color;
|
2022-12-13 19:03:09 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-14 20:27:53 +00:00
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
unicode-bidi: plaintext;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-02-22 05:20:04 +00:00
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__rules {
|
|
|
|
list-style: disc;
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-inline-start: 15px;
|
2022-02-22 05:20:04 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
2022-02-14 20:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__statuses-list {
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid darken($ui-base-color, 8%);
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
padding: 16px;
|
|
|
|
background: lighten($ui-base-color, 2%);
|
|
|
|
border-bottom: 1px solid darken($ui-base-color, 8%);
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-09 07:52:32 +00:00
|
|
|
|
|
|
|
.availability-indicator {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 21px;
|
|
|
|
|
|
|
|
&__hint {
|
|
|
|
padding: 0 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__graphic {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 -2px;
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: block;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 4px;
|
|
|
|
height: 21px;
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
margin: 0 2px;
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
|
|
&.positive {
|
|
|
|
background: $valid-value-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.negative {
|
|
|
|
background: $error-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-26 11:42:29 +00:00
|
|
|
|
|
|
|
.history {
|
|
|
|
counter-reset: step 0;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
li {
|
|
|
|
counter-increment: step 1;
|
2023-03-27 08:56:25 +00:00
|
|
|
padding-inline-start: 2.5rem;
|
2022-10-26 11:42:29 +00:00
|
|
|
padding-bottom: 8px;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
content: counter(step);
|
|
|
|
font-size: 0.625rem;
|
|
|
|
font-weight: 500;
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-start: 0;
|
2022-10-26 11:42:29 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: calc(1.375rem + 1px);
|
|
|
|
height: calc(1.375rem + 1px);
|
|
|
|
background: $ui-base-color;
|
|
|
|
border: 1px solid $highlight-text-color;
|
|
|
|
color: $highlight-text-color;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
2023-02-13 03:57:03 +00:00
|
|
|
content: '';
|
2022-10-26 11:42:29 +00:00
|
|
|
width: 1px;
|
|
|
|
background: $highlight-text-color;
|
|
|
|
bottom: 0;
|
|
|
|
top: calc(1.875rem + 1px);
|
2023-03-27 08:56:25 +00:00
|
|
|
inset-inline-start: 0.6875rem;
|
2022-10-26 11:42:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__entry {
|
|
|
|
h5 {
|
|
|
|
font-weight: 500;
|
|
|
|
color: $primary-text-color;
|
|
|
|
line-height: 25px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status {
|
|
|
|
border: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
background: $ui-base-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|