2018-09-20 17:21:58 +01:00
|
|
|
$no-columns-breakpoint: 600px;
|
|
|
|
|
2016-10-23 11:05:55 +01:00
|
|
|
code {
|
2018-10-01 12:13:58 +01:00
|
|
|
font-family: $font-monospace, monospace;
|
2016-10-23 11:05:55 +01:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
.form-container {
|
2022-10-05 17:57:33 +01:00
|
|
|
max-width: 450px;
|
2016-10-18 15:37:15 +01:00
|
|
|
padding: 20px;
|
2022-10-05 17:57:33 +01:00
|
|
|
padding-bottom: 50px;
|
|
|
|
margin: 50px auto;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
|
2024-09-10 13:00:40 +01:00
|
|
|
.form-section {
|
|
|
|
border-radius: 8px;
|
|
|
|
background: var(--surface-background-color);
|
|
|
|
padding: 24px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-out-top {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 160px;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
background: linear-gradient(
|
|
|
|
to bottom,
|
|
|
|
var(--surface-background-color),
|
|
|
|
transparent
|
|
|
|
);
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
inset-inline-start: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
position: absolute;
|
|
|
|
inset-inline-start: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 16:07:30 +01:00
|
|
|
.indicator-icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
|
|
|
color: $primary-text-color;
|
|
|
|
|
|
|
|
&.success {
|
|
|
|
background: $success-green;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.failure {
|
|
|
|
background: $error-red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
.simple_form {
|
2020-08-24 15:46:27 +01:00
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
.input {
|
2023-11-15 11:13:53 +00:00
|
|
|
margin-bottom: 16px;
|
2017-05-20 18:42:44 +01:00
|
|
|
overflow: hidden;
|
2018-09-20 17:21:58 +01:00
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.radio_buttons {
|
|
|
|
.radio {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio > label {
|
|
|
|
position: relative;
|
2023-04-16 16:45:18 +01:00
|
|
|
padding-inline-start: 28px;
|
2018-09-20 17:21:58 +01:00
|
|
|
|
|
|
|
input {
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
2023-04-16 16:45:18 +01:00
|
|
|
inset-inline-start: 0;
|
2018-09-20 17:21:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.boolean {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
.label_input > label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-top: 5px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label_input,
|
|
|
|
.hint {
|
2023-04-16 16:45:18 +01:00
|
|
|
padding-inline-start: 28px;
|
2018-09-20 17:21:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.label_input__wrapper {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
|
|
|
label.checkbox {
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
2023-04-16 16:45:18 +01:00
|
|
|
inset-inline-start: 0;
|
2018-09-20 17:21:58 +01:00
|
|
|
}
|
2019-03-12 16:34:00 +00:00
|
|
|
|
|
|
|
label a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2019-06-07 02:39:24 +01:00
|
|
|
|
2023-09-01 14:41:10 +01:00
|
|
|
.overridden,
|
2022-11-12 09:17:22 +00:00
|
|
|
.recommended,
|
2022-11-12 09:09:27 +00:00
|
|
|
.not_recommended,
|
|
|
|
.glitch_only {
|
2019-06-07 02:39:24 +01:00
|
|
|
position: absolute;
|
|
|
|
margin: 0 4px;
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
2018-09-20 17:21:58 +01:00
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
|
2018-04-29 15:30:05 +01:00
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 -5px;
|
|
|
|
|
|
|
|
.input {
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 50%;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-24 15:46:27 +01:00
|
|
|
.title {
|
2022-10-05 17:57:33 +01:00
|
|
|
font-size: 28px;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lead {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
margin-bottom: 30px;
|
2023-05-25 18:14:37 +01:00
|
|
|
|
2023-06-02 17:35:37 +01:00
|
|
|
&.invited-by {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2023-05-25 18:14:37 +01:00
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
2022-10-05 17:57:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.rules-list {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
2020-08-24 15:46:27 +01:00
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.hint {
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 0.2em 0.4em;
|
|
|
|
background: darken($ui-base-color, 12%);
|
|
|
|
}
|
2023-01-18 17:54:04 +00:00
|
|
|
|
|
|
|
li {
|
|
|
|
list-style: disc;
|
2023-04-16 16:45:18 +01:00
|
|
|
margin-inline-start: 18px;
|
2023-01-18 17:54:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.hint {
|
|
|
|
margin-bottom: 15px;
|
2018-09-20 17:21:58 +01:00
|
|
|
}
|
|
|
|
|
2017-03-26 12:22:38 +01:00
|
|
|
span.hint {
|
2016-12-22 22:03:57 +00:00
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2017-03-26 12:22:38 +01:00
|
|
|
p.hint {
|
|
|
|
margin-bottom: 15px;
|
2018-05-05 16:58:46 +01:00
|
|
|
color: $darker-text-color;
|
2017-07-11 14:27:59 +01:00
|
|
|
|
|
|
|
&.subtle-hint {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 0;
|
2018-09-20 17:07:52 +01:00
|
|
|
}
|
2017-03-26 12:22:38 +01:00
|
|
|
}
|
|
|
|
|
2020-08-24 15:46:27 +01:00
|
|
|
.authentication-hint {
|
2020-04-28 09:16:55 +01:00
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
2017-07-21 04:28:51 +01:00
|
|
|
.card {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2017-04-08 21:20:08 +01:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-04-08 21:20:08 +01:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.input.with_floating_label {
|
|
|
|
.label_input {
|
|
|
|
display: flex;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
& > label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
min-width: 150px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
input,
|
|
|
|
select {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
&.select .hint {
|
|
|
|
margin-top: 6px;
|
2023-04-16 16:45:18 +01:00
|
|
|
margin-inline-start: 150px;
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
2016-12-22 22:03:57 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 02:24:04 +01:00
|
|
|
.input.with_label {
|
2017-05-20 18:42:44 +01:00
|
|
|
.label_input > label {
|
2017-01-05 04:24:27 +00:00
|
|
|
font-family: inherit;
|
2018-09-20 17:21:58 +01:00
|
|
|
font-size: 14px;
|
2017-05-08 14:57:49 +01:00
|
|
|
color: $primary-text-color;
|
2016-11-16 16:51:02 +00:00
|
|
|
display: block;
|
2018-09-20 17:21:58 +01:00
|
|
|
margin-bottom: 8px;
|
2017-09-02 14:49:28 +01:00
|
|
|
word-wrap: break-word;
|
2018-09-20 17:21:58 +01:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-09-02 14:49:28 +01:00
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.hint {
|
|
|
|
margin-top: 6px;
|
2017-09-02 14:49:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
flex: 390px;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
2017-07-12 02:24:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.input.with_block_label {
|
2018-09-20 17:21:58 +01:00
|
|
|
max-width: none;
|
2018-09-20 17:07:52 +01:00
|
|
|
|
2017-07-12 02:24:04 +01:00
|
|
|
& > label {
|
|
|
|
font-family: inherit;
|
2022-10-22 10:44:41 +01:00
|
|
|
font-size: 14px;
|
2017-07-12 02:24:04 +01:00
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
2023-11-15 11:13:53 +00:00
|
|
|
font-weight: 600;
|
|
|
|
line-height: 20px;
|
2017-07-12 02:24:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.hint {
|
2023-11-15 11:13:53 +00:00
|
|
|
line-height: 16px;
|
|
|
|
margin-bottom: 12px;
|
2017-07-12 02:24:04 +01:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:07:52 +01:00
|
|
|
ul {
|
|
|
|
columns: 2;
|
2024-09-26 20:26:40 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: $mobile-breakpoint) {
|
|
|
|
columns: 1;
|
|
|
|
}
|
2017-07-12 02:24:04 +01:00
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
|
2022-07-05 01:41:40 +01:00
|
|
|
.input.with_block_label.user_role_permissions_as_keys ul {
|
|
|
|
columns: unset;
|
|
|
|
}
|
|
|
|
|
2020-01-23 21:00:13 +00:00
|
|
|
.input.datetime .label_input select {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
flex: 0;
|
|
|
|
}
|
|
|
|
|
2024-08-10 10:17:10 +01:00
|
|
|
.input.select.select--languages {
|
|
|
|
min-width: 32ch;
|
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.required abbr {
|
|
|
|
text-decoration: none;
|
|
|
|
color: lighten($error-value-color, 12%);
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
.fields-group {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.input:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-10-22 10:44:41 +01:00
|
|
|
|
|
|
|
&__thumbnail {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
2024-08-13 08:26:23 +01:00
|
|
|
border-radius: var(--avatar-border-radius);
|
2023-02-13 03:57:03 +00:00
|
|
|
background: url('images/void.png');
|
2022-10-22 10:44:41 +01:00
|
|
|
|
2023-08-18 17:24:32 +01:00
|
|
|
&[src$='missing.png'] {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2022-10-22 10:44:41 +01:00
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2023-08-18 17:24:32 +01:00
|
|
|
|
|
|
|
&#account_avatar-preview {
|
|
|
|
width: 90px;
|
|
|
|
height: 90px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
2022-10-22 10:44:41 +01:00
|
|
|
}
|
2017-04-17 09:37:00 +01:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.fields-row {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 -10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
margin-bottom: 25px;
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.input {
|
|
|
|
max-width: none;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
2016-11-25 13:01:14 +00:00
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
&__column {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 10px;
|
2017-04-17 09:37:00 +01:00
|
|
|
flex: 1 1 auto;
|
2018-09-20 17:21:58 +01:00
|
|
|
min-height: 1px;
|
|
|
|
|
|
|
|
&-6 {
|
|
|
|
max-width: 50%;
|
|
|
|
}
|
2019-09-18 15:37:27 +01:00
|
|
|
|
|
|
|
.actions {
|
|
|
|
margin-top: 27px;
|
|
|
|
}
|
2016-11-23 15:26:53 +00:00
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.fields-group:last-child,
|
|
|
|
.fields-row__column.fields-group {
|
|
|
|
margin-bottom: 0;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
2016-12-22 22:03:57 +00:00
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
@media screen and (max-width: $no-columns-breakpoint) {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
max-width: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fields-group:last-child,
|
|
|
|
.fields-row__column.fields-group,
|
|
|
|
.fields-row__column {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
2016-12-22 22:03:57 +00:00
|
|
|
}
|
2020-04-28 09:16:55 +01:00
|
|
|
|
|
|
|
.fields-group.invited-by {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.input.radio_buttons .radio label {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2017-07-12 02:24:04 +01:00
|
|
|
.check_boxes {
|
|
|
|
.checkbox {
|
|
|
|
label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $primary-text-color;
|
2018-11-27 12:29:12 +00:00
|
|
|
display: inline-block;
|
2017-07-12 02:24:04 +01:00
|
|
|
width: auto;
|
|
|
|
position: relative;
|
|
|
|
padding-top: 5px;
|
2023-04-16 16:45:18 +01:00
|
|
|
padding-inline-start: 25px;
|
2017-07-12 02:24:04 +01:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2023-02-13 03:57:03 +00:00
|
|
|
input[type='checkbox'] {
|
2017-07-12 02:24:04 +01:00
|
|
|
position: absolute;
|
2023-04-16 16:45:18 +01:00
|
|
|
inset-inline-start: 0;
|
2017-07-12 02:24:04 +01:00
|
|
|
top: 5px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-22 09:48:50 +01:00
|
|
|
.input.static .label_input__wrapper {
|
2024-07-23 16:30:45 +01:00
|
|
|
font-size: 14px;
|
2019-07-22 09:48:50 +01:00
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid $dark-text-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2023-02-13 03:57:03 +00:00
|
|
|
input[type='text'],
|
|
|
|
input[type='number'],
|
|
|
|
input[type='email'],
|
|
|
|
input[type='password'],
|
|
|
|
input[type='url'],
|
|
|
|
input[type='datetime-local'],
|
2017-05-07 19:47:31 +01:00
|
|
|
textarea {
|
2016-11-07 17:45:44 +00:00
|
|
|
box-sizing: border-box;
|
2023-11-15 11:13:53 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
2017-05-08 14:57:49 +01:00
|
|
|
color: $primary-text-color;
|
2016-10-18 15:37:15 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
outline: 0;
|
2017-01-05 04:24:27 +00:00
|
|
|
font-family: inherit;
|
2017-02-14 19:59:26 +00:00
|
|
|
resize: vertical;
|
2024-07-23 16:30:45 +01:00
|
|
|
background: $ui-base-color;
|
|
|
|
border: 1px solid var(--background-border-color);
|
|
|
|
border-radius: 4px;
|
2023-11-15 11:13:53 +00:00
|
|
|
padding: 10px 16px;
|
2016-10-18 15:37:15 +01:00
|
|
|
|
|
|
|
&:invalid {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:required:valid {
|
2018-09-20 17:21:58 +01:00
|
|
|
border-color: $valid-value-color;
|
|
|
|
}
|
|
|
|
|
2023-11-15 11:13:53 +00:00
|
|
|
@media screen and (width <= 600px) {
|
|
|
|
font-size: 16px;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-13 03:57:03 +00:00
|
|
|
input[type='text'],
|
|
|
|
input[type='number'],
|
|
|
|
input[type='email'],
|
|
|
|
input[type='password'],
|
|
|
|
input[type='datetime-local'] {
|
2020-12-14 09:03:09 +00:00
|
|
|
&:focus:invalid:not(:placeholder-shown),
|
|
|
|
&:required:invalid:not(:placeholder-shown) {
|
|
|
|
border-color: lighten($error-red, 12%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
.input.field_with_errors {
|
2017-01-28 02:56:10 +00:00
|
|
|
label {
|
2018-05-05 16:58:46 +01:00
|
|
|
color: lighten($error-red, 12%);
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2023-02-13 03:57:03 +00:00
|
|
|
input[type='text'],
|
|
|
|
input[type='number'],
|
|
|
|
input[type='email'],
|
|
|
|
input[type='password'],
|
|
|
|
input[type='datetime-local'],
|
2018-11-09 14:10:09 +00:00
|
|
|
textarea,
|
|
|
|
select {
|
|
|
|
border-color: lighten($error-red, 12%);
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
2017-01-28 02:56:10 +00:00
|
|
|
display: block;
|
2016-10-18 15:37:15 +01:00
|
|
|
font-weight: 500;
|
2018-05-05 16:58:46 +01:00
|
|
|
color: lighten($error-red, 12%);
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-top: 4px;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-12 16:34:00 +00:00
|
|
|
.input.disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
.actions {
|
|
|
|
margin-top: 30px;
|
2017-05-17 23:38:01 +01:00
|
|
|
display: flex;
|
2018-05-11 13:31:18 +01:00
|
|
|
|
|
|
|
&.actions--top {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
2016-10-22 18:38:47 +01:00
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2022-10-05 17:57:33 +01:00
|
|
|
.stacked-actions {
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2017-05-07 19:47:31 +01:00
|
|
|
button,
|
2017-05-17 23:38:01 +01:00
|
|
|
.button,
|
2017-05-07 19:47:31 +01:00
|
|
|
.block-button {
|
2016-10-22 18:38:47 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
2023-07-03 10:32:31 +01:00
|
|
|
background: $ui-button-background-color;
|
|
|
|
color: $ui-button-color;
|
2023-11-15 11:13:53 +00:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
2017-05-17 23:38:01 +01:00
|
|
|
height: auto;
|
2023-11-15 11:13:53 +00:00
|
|
|
padding: 7px 18px;
|
2017-01-27 19:28:46 +00:00
|
|
|
text-decoration: none;
|
|
|
|
text-align: center;
|
|
|
|
box-sizing: border-box;
|
2016-10-22 18:38:47 +01:00
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 500;
|
|
|
|
outline: 0;
|
|
|
|
margin-bottom: 10px;
|
2023-04-16 16:45:18 +01:00
|
|
|
margin-inline-end: 10px;
|
2017-05-17 23:38:01 +01:00
|
|
|
|
|
|
|
&:last-child {
|
2023-04-16 16:45:18 +01:00
|
|
|
margin-inline-end: 0;
|
2017-05-17 23:38:01 +01:00
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2017-05-07 19:47:31 +01:00
|
|
|
&:active,
|
2022-06-19 07:18:08 +01:00
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2023-07-03 10:32:31 +01:00
|
|
|
background-color: $ui-button-focus-background-color;
|
2016-10-22 18:38:47 +01:00
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2019-03-12 16:34:00 +00:00
|
|
|
&:disabled:hover {
|
|
|
|
background-color: $ui-primary-color;
|
|
|
|
}
|
|
|
|
|
2016-10-22 18:38:47 +01:00
|
|
|
&.negative {
|
2023-07-03 10:32:31 +01:00
|
|
|
background: $ui-button-destructive-background-color;
|
2016-10-18 15:37:15 +01:00
|
|
|
|
2023-07-03 10:32:31 +01:00
|
|
|
&:hover,
|
2017-05-07 19:47:31 +01:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2023-07-03 10:32:31 +01:00
|
|
|
background-color: $ui-button-destructive-focus-background-color;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 09:37:00 +01:00
|
|
|
|
2022-10-05 17:57:33 +01:00
|
|
|
.button.button-tertiary {
|
|
|
|
padding: 9px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 09:37:00 +01:00
|
|
|
select {
|
2018-09-20 17:21:58 +01:00
|
|
|
appearance: none;
|
|
|
|
box-sizing: border-box;
|
2024-07-23 16:30:45 +01:00
|
|
|
font-size: 14px;
|
2018-09-20 17:21:58 +01:00
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
outline: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
resize: vertical;
|
2024-07-23 16:30:45 +01:00
|
|
|
background: $ui-base-color
|
2023-02-13 03:57:03 +00:00
|
|
|
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.933 18.467' height='19.698' width='15.929'><path d='M3.467 14.967l-3.393-3.5H14.86l-3.392 3.5c-1.866 1.925-3.666 3.5-4 3.5-.335 0-2.135-1.575-4-3.5zm.266-11.234L7.467 0 11.2 3.733l3.733 3.734H0l3.733-3.734z' fill='#{hex-color(lighten($ui-base-color, 12%))}'/></svg>")
|
2024-07-23 16:30:45 +01:00
|
|
|
no-repeat right 8px center / auto 14px;
|
|
|
|
border: 1px solid var(--background-border-color);
|
2018-09-20 17:21:58 +01:00
|
|
|
border-radius: 4px;
|
2023-04-16 16:45:18 +01:00
|
|
|
padding-inline-start: 10px;
|
|
|
|
padding-inline-end: 30px;
|
2018-09-20 17:21:58 +01:00
|
|
|
height: 41px;
|
2024-07-23 16:30:45 +01:00
|
|
|
|
|
|
|
@media screen and (width <= 600px) {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2017-04-17 09:37:00 +01:00
|
|
|
}
|
2017-07-11 14:27:59 +01:00
|
|
|
|
2019-06-07 02:39:24 +01:00
|
|
|
h4 {
|
|
|
|
margin-bottom: 15px !important;
|
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.label_input {
|
|
|
|
&__wrapper {
|
|
|
|
position: relative;
|
2017-07-11 14:27:59 +01:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
&__append {
|
2017-07-11 14:27:59 +01:00
|
|
|
position: absolute;
|
2023-04-16 16:45:18 +01:00
|
|
|
inset-inline-end: 3px;
|
2018-09-20 17:21:58 +01:00
|
|
|
top: 1px;
|
|
|
|
padding: 10px;
|
2024-08-08 10:21:54 +01:00
|
|
|
font-size: 14px;
|
2018-05-05 16:58:46 +01:00
|
|
|
color: $dark-text-color;
|
2017-07-11 14:27:59 +01:00
|
|
|
font-family: inherit;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
2018-09-20 17:07:52 +01:00
|
|
|
max-width: 140px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-04-16 16:45:18 +01:00
|
|
|
inset-inline-end: 0;
|
2018-09-20 17:07:52 +01:00
|
|
|
bottom: 1px;
|
|
|
|
width: 5px;
|
|
|
|
}
|
2017-07-11 14:27:59 +01:00
|
|
|
}
|
|
|
|
}
|
2019-03-23 01:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.block-icon {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 24px;
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flash-message {
|
2024-07-23 16:30:45 +01:00
|
|
|
background: var(--background-color);
|
|
|
|
color: $highlight-text-color;
|
|
|
|
border: 1px solid $highlight-text-color;
|
2016-10-18 15:37:15 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 15px 10px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
text-align: center;
|
|
|
|
|
2018-10-22 17:20:43 +01:00
|
|
|
&.notice {
|
|
|
|
border: 1px solid rgba($valid-value-color, 0.5);
|
|
|
|
background: rgba($valid-value-color, 0.25);
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
|
2021-04-03 13:12:30 +01:00
|
|
|
&.warning {
|
|
|
|
border: 1px solid rgba($gold-star, 0.5);
|
|
|
|
background: rgba($gold-star, 0.25);
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
|
2018-10-22 17:20:43 +01:00
|
|
|
&.alert {
|
|
|
|
border: 1px solid rgba($error-value-color, 0.5);
|
2020-05-31 19:35:18 +01:00
|
|
|
background: rgba($error-value-color, 0.1);
|
2018-10-22 17:20:43 +01:00
|
|
|
color: $error-value-color;
|
|
|
|
}
|
|
|
|
|
2020-08-24 15:46:27 +01:00
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-05-03 19:36:36 +01:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 13:12:30 +01:00
|
|
|
&.warning a {
|
|
|
|
font-weight: 700;
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-17 14:23:44 +01:00
|
|
|
p {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.oauth-code {
|
|
|
|
outline: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2021-03-06 12:12:35 +00:00
|
|
|
border: 0;
|
2017-09-17 14:23:44 +01:00
|
|
|
padding: 10px;
|
2018-10-01 12:13:58 +01:00
|
|
|
font-family: $font-monospace, monospace;
|
2017-09-17 14:23:44 +01:00
|
|
|
background: $ui-base-color;
|
2018-05-05 16:58:46 +01:00
|
|
|
color: $primary-text-color;
|
2017-09-17 14:23:44 +01:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
2017-09-17 14:23:44 +01:00
|
|
|
|
2023-05-07 14:04:59 +01:00
|
|
|
@media screen and (width <= 740px) and (width >= 441px) {
|
2017-09-17 14:23:44 +01:00
|
|
|
margin-top: 40px;
|
|
|
|
}
|
2020-04-28 09:16:55 +01:00
|
|
|
|
|
|
|
&.translation-prompt {
|
|
|
|
text-align: unset;
|
|
|
|
color: unset;
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 15:37:15 +01:00
|
|
|
}
|
|
|
|
|
2021-04-03 13:12:30 +01:00
|
|
|
.flash-message-stack {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
.flash-message {
|
|
|
|
border-radius: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-top-width: 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
border-top-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-18 15:37:15 +01:00
|
|
|
.form-footer {
|
|
|
|
margin-top: 30px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
a {
|
2018-05-05 16:58:46 +01:00
|
|
|
color: $darker-text-color;
|
2016-10-18 15:37:15 +01:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:58 +01:00
|
|
|
.quick-nav {
|
|
|
|
list-style: none;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2023-04-16 16:45:18 +01:00
|
|
|
margin-inline-end: 10px;
|
2018-09-20 17:21:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
color: lighten($highlight-text-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-07 19:47:31 +01:00
|
|
|
.oauth-prompt,
|
|
|
|
.follow-prompt {
|
2016-10-22 18:38:47 +01:00
|
|
|
margin-bottom: 30px;
|
2018-05-05 16:58:46 +01:00
|
|
|
color: $darker-text-color;
|
2016-10-22 18:38:47 +01:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 30px;
|
2018-10-22 17:22:49 +01:00
|
|
|
text-align: center;
|
2016-10-22 18:38:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2018-05-05 16:58:46 +01:00
|
|
|
color: $secondary-text-color;
|
2016-10-22 18:38:47 +01:00
|
|
|
font-weight: 500;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2016-10-22 18:38:47 +01:00
|
|
|
}
|
2022-03-01 15:48:58 +00:00
|
|
|
}
|
2017-08-27 23:01:07 +01:00
|
|
|
|
2022-03-01 15:48:58 +00:00
|
|
|
.oauth-prompt {
|
|
|
|
h3 {
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.permissions-list {
|
|
|
|
border: 1px solid $ui-base-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: darken($ui-base-color, 4%);
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
margin: 0 -10px;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
form {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 10px;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
min-height: 1px;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2017-08-27 23:01:07 +01:00
|
|
|
}
|
2016-10-22 18:38:47 +01:00
|
|
|
}
|
2017-01-27 19:28:46 +00:00
|
|
|
|
2017-04-08 21:20:08 +01:00
|
|
|
.qr-wrapper {
|
|
|
|
display: flex;
|
2017-09-02 14:49:28 +01:00
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: flex-start;
|
2017-04-08 21:20:08 +01:00
|
|
|
}
|
|
|
|
|
2017-01-27 19:28:46 +00:00
|
|
|
.qr-code {
|
2017-04-08 21:20:08 +01:00
|
|
|
flex: 0 0 auto;
|
2017-05-08 14:57:49 +01:00
|
|
|
background: $simple-background-color;
|
2017-01-27 19:28:46 +00:00
|
|
|
padding: 4px;
|
2023-04-16 16:45:18 +01:00
|
|
|
margin-inline-end: 10px;
|
|
|
|
margin-bottom: 20px;
|
2017-05-08 14:57:49 +01:00
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
2017-01-27 19:28:46 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-04-08 21:20:08 +01:00
|
|
|
|
|
|
|
.qr-alternative {
|
2017-09-02 14:49:28 +01:00
|
|
|
margin-bottom: 20px;
|
2018-05-05 16:58:46 +01:00
|
|
|
color: $secondary-text-color;
|
2017-09-02 14:49:28 +01:00
|
|
|
flex: 150px;
|
2017-04-08 21:20:08 +01:00
|
|
|
|
|
|
|
samp {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 23:38:37 +01:00
|
|
|
|
2022-10-13 13:42:37 +01:00
|
|
|
.simple_form {
|
2017-04-23 23:38:37 +01:00
|
|
|
.warning {
|
|
|
|
box-sizing: border-box;
|
2017-05-08 14:57:49 +01:00
|
|
|
background: rgba($error-value-color, 0.5);
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-shadow: 1px 1px 0 rgba($base-shadow-color, 0.3);
|
|
|
|
box-shadow: 0 2px 6px rgba($base-shadow-color, 0.4);
|
2017-04-23 23:38:37 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
a {
|
2017-05-08 14:57:49 +01:00
|
|
|
color: $primary-text-color;
|
2017-04-23 23:38:37 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
|
2017-05-07 19:47:31 +01:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-04-23 23:38:37 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
2018-01-13 18:41:20 +00:00
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 23:38:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-pagination {
|
|
|
|
display: flex;
|
2017-10-04 21:49:36 +01:00
|
|
|
flex-wrap: wrap;
|
2017-04-23 23:38:37 +01:00
|
|
|
align-items: center;
|
|
|
|
|
2017-05-07 19:47:31 +01:00
|
|
|
.actions,
|
|
|
|
.pagination {
|
2017-04-23 23:38:37 +01:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
padding: 30px 0;
|
2023-04-16 16:45:18 +01:00
|
|
|
padding-inline-end: 20px;
|
2017-04-23 23:38:37 +01:00
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
2017-05-01 16:42:13 +01:00
|
|
|
|
2017-07-10 17:05:06 +01:00
|
|
|
.post-follow-actions {
|
|
|
|
text-align: center;
|
2018-05-11 13:31:18 +01:00
|
|
|
color: $darker-text-color;
|
2017-07-10 17:05:06 +01:00
|
|
|
|
|
|
|
div {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
}
|
2018-05-11 13:31:18 +01:00
|
|
|
|
|
|
|
.alternative-login {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 16px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2018-09-20 17:07:52 +01:00
|
|
|
|
|
|
|
.scope-danger {
|
|
|
|
color: $warning-red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form_admin_settings_site_short_description,
|
|
|
|
.form_admin_settings_site_description,
|
|
|
|
.form_admin_settings_site_extended_description,
|
|
|
|
.form_admin_settings_site_terms,
|
|
|
|
.form_admin_settings_custom_css,
|
|
|
|
.form_admin_settings_closed_registrations_message {
|
|
|
|
textarea {
|
2018-10-01 12:13:58 +01:00
|
|
|
font-family: $font-monospace, monospace;
|
2018-09-20 17:07:52 +01:00
|
|
|
}
|
|
|
|
}
|
2018-09-20 17:21:58 +01:00
|
|
|
|
|
|
|
.input-copy {
|
|
|
|
background: darken($ui-base-color, 10%);
|
|
|
|
border: 1px solid darken($ui-base-color, 14%);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-04-16 16:45:18 +01:00
|
|
|
padding-inline-end: 4px;
|
2018-09-20 17:21:58 +01:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
transition: border-color 300ms linear;
|
|
|
|
|
|
|
|
&__wrapper {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
2023-02-13 03:57:03 +00:00
|
|
|
input[type='text'] {
|
2018-09-20 17:21:58 +01:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 14px;
|
2018-10-01 12:13:58 +01:00
|
|
|
font-family: $font-monospace, monospace;
|
2018-09-20 17:21:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin: 4px;
|
|
|
|
text-transform: none;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 7px 18px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
width: auto;
|
|
|
|
transition: background 300ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.copied {
|
|
|
|
border-color: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
|
|
|
|
button {
|
|
|
|
background: $valid-value-color;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-18 20:00:55 +00:00
|
|
|
|
2020-12-10 05:27:26 +00:00
|
|
|
.input.user_confirm_password,
|
|
|
|
.input.user_website {
|
|
|
|
&:not(.field_with_errors) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-01-24 18:06:19 +00:00
|
|
|
|
|
|
|
.simple_form .h-captcha {
|
2023-06-13 21:30:40 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 30px;
|
2022-01-24 18:06:19 +00:00
|
|
|
}
|
2022-03-01 15:48:58 +00:00
|
|
|
|
|
|
|
.permissions-list {
|
|
|
|
&__item {
|
|
|
|
padding: 15px;
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__type {
|
|
|
|
color: $darker-text-color;
|
2024-02-27 10:46:58 +00:00
|
|
|
word-break: break-word;
|
2022-03-01 15:48:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 18px;
|
|
|
|
width: 30px;
|
|
|
|
color: $valid-value-color;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-28 08:42:13 +01:00
|
|
|
|
2022-11-11 01:55:20 +00:00
|
|
|
// Only remove padding when listing applications, to prevent styling issues on
|
|
|
|
// the Authorization page.
|
|
|
|
.applications-list {
|
|
|
|
.permissions-list__item:last-child {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-28 08:42:13 +01:00
|
|
|
.keywords-table {
|
|
|
|
thead {
|
|
|
|
th {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
th:first-child {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tfoot {
|
|
|
|
td {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.input.string {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label_input__wrapper {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-action-link {
|
|
|
|
margin-top: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
2023-04-16 06:01:24 +01:00
|
|
|
|
|
|
|
.progress-tracker {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
li {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.separator {
|
|
|
|
height: 2px;
|
|
|
|
background: $ui-base-lighter-color;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
&.completed {
|
|
|
|
background: $highlight-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.circle {
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid $ui-base-lighter-color;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $secondary-text-color;
|
|
|
|
padding-top: 10px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
li:first-child .label {
|
|
|
|
inset-inline-start: 0;
|
2023-08-30 15:29:52 +01:00
|
|
|
inset-inline-end: auto;
|
2023-04-16 06:01:24 +01:00
|
|
|
text-align: start;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li:last-child .label {
|
2023-08-30 15:29:52 +01:00
|
|
|
inset-inline-start: auto;
|
2023-04-16 06:01:24 +01:00
|
|
|
inset-inline-end: 0;
|
|
|
|
text-align: end;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active .circle {
|
|
|
|
border-color: $highlight-text-color;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: $highlight-text-color;
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.completed .circle {
|
|
|
|
border-color: $highlight-text-color;
|
|
|
|
background: $highlight-text-color;
|
|
|
|
}
|
|
|
|
}
|
2023-11-15 11:13:53 +00:00
|
|
|
|
|
|
|
.app-form {
|
|
|
|
&__avatar-input,
|
|
|
|
&__header-input {
|
|
|
|
display: block;
|
|
|
|
border-radius: 8px;
|
|
|
|
background: var(--dropdown-background-color);
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
img {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: 8px;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
position: absolute;
|
|
|
|
inset-inline-start: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
color: $darker-text-color;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected .icon {
|
|
|
|
color: $primary-text-color;
|
|
|
|
transform: none;
|
|
|
|
inset-inline-start: auto;
|
|
|
|
inset-inline-end: 8px;
|
|
|
|
top: auto;
|
|
|
|
bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.invalid img {
|
|
|
|
outline: 1px solid $error-value-color;
|
|
|
|
outline-offset: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.invalid::before {
|
|
|
|
display: block;
|
|
|
|
content: '';
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
background: rgba($error-value-color, 0.25);
|
|
|
|
z-index: 2;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--dropdown-border-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__avatar-input {
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__header-input {
|
|
|
|
aspect-ratio: 580/193;
|
|
|
|
}
|
2023-11-17 10:37:04 +00:00
|
|
|
|
|
|
|
&__toggle {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 16px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2024-03-11 15:02:21 +00:00
|
|
|
.hint {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
}
|
|
|
|
|
2023-11-17 10:37:04 +00:00
|
|
|
.recommended {
|
|
|
|
position: absolute;
|
|
|
|
margin: 0 4px;
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__toggle {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__toggle > div {
|
|
|
|
display: flex;
|
2024-07-23 16:30:45 +01:00
|
|
|
border-inline-start: 1px solid var(--background-border-color);
|
2023-11-17 10:37:04 +00:00
|
|
|
padding-inline-start: 16px;
|
|
|
|
}
|
|
|
|
}
|
2023-11-15 11:13:53 +00:00
|
|
|
}
|