2016-02-29 18:42:08 +00:00
|
|
|
.card {
|
2018-07-31 20:54:18 +00:00
|
|
|
& > a {
|
2016-03-12 19:47:22 +00:00
|
|
|
display: block;
|
2018-07-31 20:54:18 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
2023-06-02 16:35:37 +00:00
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 4px;
|
2016-02-29 18:42:08 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
.card__bar {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
|
|
|
}
|
2016-02-29 18:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&__img {
|
|
|
|
height: 130px;
|
2016-03-12 19:47:22 +00:00
|
|
|
position: relative;
|
2018-07-31 20:54:18 +00:00
|
|
|
background: darken($ui-base-color, 12%);
|
2016-02-29 18:42:08 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
2016-03-19 13:02:30 +00:00
|
|
|
width: 100%;
|
2018-07-31 20:54:18 +00:00
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
object-fit: cover;
|
2016-03-19 13:02:30 +00:00
|
|
|
}
|
2016-03-06 11:34:39 +00:00
|
|
|
|
2023-05-07 13:04:59 +00:00
|
|
|
@media screen and (width <= 600px) {
|
2018-07-31 20:54:18 +00:00
|
|
|
height: 200px;
|
2016-03-06 11:34:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&__bar {
|
|
|
|
position: relative;
|
|
|
|
padding: 15px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
2016-10-03 14:10:17 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
2018-07-31 21:34:52 +00:00
|
|
|
@include avatar-size(48px);
|
2023-02-25 20:20:01 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
padding-top: 2px;
|
2016-10-03 14:10:17 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
2023-02-25 20:20:01 +00:00
|
|
|
@include avatar-radius;
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
background: darken($ui-base-color, 8%);
|
2019-06-02 16:04:41 +00:00
|
|
|
object-fit: cover;
|
2018-07-31 20:54:18 +00:00
|
|
|
}
|
2016-10-03 14:10:17 +00:00
|
|
|
}
|
2016-03-19 11:49:34 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.display-name {
|
2023-04-16 15:45:18 +00:00
|
|
|
margin-inline-start: 15px;
|
|
|
|
text-align: start;
|
2018-07-31 20:54:18 +00:00
|
|
|
|
2020-07-01 11:51:50 +00:00
|
|
|
i[data-hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
strong {
|
|
|
|
font-size: 15px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-04-04 13:40:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-04-04 13:40:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-19 11:49:34 +00:00
|
|
|
.pagination {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
a,
|
|
|
|
.current,
|
2018-04-04 13:40:59 +00:00
|
|
|
.newer,
|
|
|
|
.older,
|
2017-05-07 18:47:31 +00:00
|
|
|
.page,
|
|
|
|
.gap {
|
2016-03-19 11:49:34 +00:00
|
|
|
font-size: 14px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
font-weight: 500;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 10px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.current {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $simple-background-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
border-radius: 100px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $inverted-text-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
cursor: default;
|
2017-04-23 22:38:37 +00:00
|
|
|
margin: 0 10px;
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gap {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2018-04-04 13:40:59 +00:00
|
|
|
.older,
|
|
|
|
.newer {
|
2016-03-19 11:49:34 +00:00
|
|
|
text-transform: uppercase;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
|
|
|
|
2018-04-04 13:40:59 +00:00
|
|
|
.older {
|
2016-03-19 11:49:34 +00:00
|
|
|
float: left;
|
2023-04-16 15:45:18 +00:00
|
|
|
padding-inline-start: 0;
|
2016-03-19 11:49:34 +00:00
|
|
|
|
|
|
|
.fa {
|
|
|
|
display: inline-block;
|
2023-04-16 15:45:18 +00:00
|
|
|
margin-inline-end: 5px;
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-04 13:40:59 +00:00
|
|
|
.newer {
|
2016-03-19 11:49:34 +00:00
|
|
|
float: right;
|
2023-04-16 15:45:18 +00:00
|
|
|
padding-inline-start: 0;
|
2016-03-19 11:49:34 +00:00
|
|
|
|
|
|
|
.fa {
|
|
|
|
display: inline-block;
|
2023-04-16 15:45:18 +00:00
|
|
|
margin-inline-start: 5px;
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
cursor: default;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($inverted-text-color, 10%);
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
2016-10-03 14:10:17 +00:00
|
|
|
|
2023-05-07 13:04:59 +00:00
|
|
|
@media screen and (width <= 700px) {
|
2016-10-03 14:10:17 +00:00
|
|
|
padding: 30px 20px;
|
|
|
|
|
2017-10-04 20:49:36 +00:00
|
|
|
.page {
|
2016-10-03 14:10:17 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-04-04 13:40:59 +00:00
|
|
|
.newer,
|
|
|
|
.older {
|
2016-10-03 14:10:17 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
2016-03-19 13:02:30 +00:00
|
|
|
|
|
|
|
.nothing-here {
|
2018-07-31 20:54:18 +00:00
|
|
|
background: $ui-base-color;
|
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $light-text-color;
|
2016-03-19 13:02:30 +00:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
2018-07-31 20:54:18 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2016-03-19 13:02:30 +00:00
|
|
|
cursor: default;
|
2016-12-29 15:54:54 +00:00
|
|
|
border-radius: 4px;
|
2018-07-31 20:54:18 +00:00
|
|
|
padding: 20px;
|
|
|
|
min-height: 30vh;
|
2016-12-29 15:54:54 +00:00
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
&--under-tabs {
|
|
|
|
border-radius: 0 0 4px 4px;
|
2017-08-16 15:12:58 +00:00
|
|
|
}
|
2018-12-09 12:33:00 +00:00
|
|
|
|
|
|
|
&--flexible {
|
|
|
|
box-sizing: border-box;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
2017-08-16 15:12:58 +00:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:39:24 +00:00
|
|
|
.account-role,
|
2023-09-01 13:41:10 +00:00
|
|
|
.information-badge,
|
|
|
|
.simple_form .overridden,
|
2022-11-12 09:17:22 +00:00
|
|
|
.simple_form .recommended,
|
2022-11-12 09:09:27 +00:00
|
|
|
.simple_form .not_recommended,
|
|
|
|
.simple_form .glitch_only {
|
2017-08-16 15:12:58 +00:00
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 6px;
|
|
|
|
cursor: default;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 12px;
|
|
|
|
font-weight: 500;
|
2023-01-26 22:35:23 +00:00
|
|
|
color: $ui-secondary-color;
|
2022-07-18 23:06:11 +00:00
|
|
|
background-color: var(--user-role-background, rgba($ui-secondary-color, 0.1));
|
|
|
|
border: 1px solid var(--user-role-border, rgba($ui-secondary-color, 0.5));
|
2017-11-17 00:22:38 +00:00
|
|
|
|
|
|
|
&.moderator {
|
|
|
|
color: $success-green;
|
|
|
|
background-color: rgba($success-green, 0.1);
|
|
|
|
border-color: rgba($success-green, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.admin {
|
2017-11-17 18:59:53 +00:00
|
|
|
color: lighten($error-red, 12%);
|
|
|
|
background-color: rgba(lighten($error-red, 12%), 0.1);
|
|
|
|
border-color: rgba(lighten($error-red, 12%), 0.5);
|
2017-11-17 00:22:38 +00:00
|
|
|
}
|
2017-08-16 15:12:58 +00:00
|
|
|
}
|
2018-01-13 18:41:20 +00:00
|
|
|
|
2022-11-12 09:17:22 +00:00
|
|
|
.simple_form .not_recommended {
|
|
|
|
color: lighten($error-red, 12%);
|
|
|
|
background-color: rgba(lighten($error-red, 12%), 0.1);
|
|
|
|
border-color: rgba(lighten($error-red, 12%), 0.5);
|
|
|
|
}
|
|
|
|
|
2022-11-12 09:09:27 +00:00
|
|
|
.simple_form .glitch_only {
|
|
|
|
color: lighten($warning-red, 12%);
|
|
|
|
background-color: rgba(lighten($warning-red, 12%), 0.1);
|
|
|
|
border-color: rgba(lighten($warning-red, 12%), 0.5);
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
.account__header__fields {
|
2019-09-13 17:15:59 +00:00
|
|
|
max-width: 100vw;
|
2018-07-31 20:54:18 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 15px -15px -15px;
|
|
|
|
border: 0 none;
|
|
|
|
border-top: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
|
|
dl {
|
|
|
|
display: flex;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
dt,
|
|
|
|
dd {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 14px;
|
|
|
|
text-align: center;
|
|
|
|
max-height: 48px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-weight: 500;
|
|
|
|
width: 120px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
background: rgba(darken($ui-base-color, 8%), 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.verified {
|
|
|
|
border: 1px solid rgba($valid-value-color, 0.5);
|
|
|
|
background: rgba($valid-value-color, 0.25);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $valid-value-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__mark {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:54:18 +00:00
|
|
|
dl:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 20:50:42 +00:00
|
|
|
|
|
|
|
.directory__tag .trends__item__current {
|
|
|
|
width: auto;
|
|
|
|
}
|
2019-04-09 14:06:30 +00:00
|
|
|
|
|
|
|
.pending-account {
|
|
|
|
&__header {
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
2021-11-26 06:01:04 +00:00
|
|
|
|
2021-12-05 20:48:39 +00:00
|
|
|
.batch-table__row--muted {
|
|
|
|
color: lighten($ui-base-color, 26%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.batch-table__row--muted .pending-account__header,
|
2022-02-24 23:34:14 +00:00
|
|
|
.batch-table__row--muted .accounts-table,
|
|
|
|
.batch-table__row--muted .name-tag {
|
2021-11-26 06:01:04 +00:00
|
|
|
&,
|
|
|
|
a,
|
|
|
|
strong {
|
|
|
|
color: lighten($ui-base-color, 26%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-24 23:34:14 +00:00
|
|
|
.batch-table__row--muted .name-tag .avatar {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2021-12-05 20:48:39 +00:00
|
|
|
.batch-table__row--muted .accounts-table {
|
|
|
|
tbody td.accounts-table__extra,
|
|
|
|
&__count,
|
|
|
|
&__count small {
|
|
|
|
color: lighten($ui-base-color, 26%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.batch-table__row--attention {
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
|
|
|
|
.batch-table__row--attention .pending-account__header,
|
2022-02-24 23:34:14 +00:00
|
|
|
.batch-table__row--attention .accounts-table,
|
|
|
|
.batch-table__row--attention .name-tag {
|
2021-11-26 06:01:04 +00:00
|
|
|
&,
|
|
|
|
a,
|
|
|
|
strong {
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
}
|
2021-12-05 20:48:39 +00:00
|
|
|
|
|
|
|
.batch-table__row--attention .accounts-table {
|
|
|
|
tbody td.accounts-table__extra,
|
|
|
|
&__count,
|
|
|
|
&__count small {
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
}
|