2018-09-20 16:21:58 +00:00
|
|
|
$no-columns-breakpoint: 600px;
|
|
|
|
|
2016-10-23 10:05:55 +00:00
|
|
|
code {
|
2018-10-01 11:13:58 +00:00
|
|
|
font-family: $font-monospace, monospace;
|
2016-10-23 10:05:55 +00:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
.form-container {
|
|
|
|
max-width: 400px;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2021-06-21 15:07:30 +00: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 14:37:15 +00:00
|
|
|
.simple_form {
|
2020-08-24 14:46:27 +00:00
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
.input {
|
|
|
|
margin-bottom: 15px;
|
2017-05-20 17:42:44 +00:00
|
|
|
overflow: hidden;
|
2018-09-20 16:21:58 +00:00
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.radio_buttons {
|
|
|
|
.radio {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio > label {
|
|
|
|
position: relative;
|
|
|
|
padding-left: 28px;
|
|
|
|
|
|
|
|
input {
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.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 {
|
|
|
|
padding-left: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label_input__wrapper {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
|
|
|
label.checkbox {
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 0;
|
|
|
|
}
|
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 01:39:24 +00:00
|
|
|
|
|
|
|
.recommended {
|
|
|
|
position: absolute;
|
|
|
|
margin: 0 4px;
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
2018-09-20 16:21:58 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2018-04-29 14:30:05 +00:00
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 -5px;
|
|
|
|
|
|
|
|
.input {
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 50%;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-24 14:46:27 +00:00
|
|
|
.title {
|
|
|
|
color: #d9e1e8;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00: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%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-26 11:22:38 +00: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 11:22:38 +00:00
|
|
|
p.hint {
|
|
|
|
margin-bottom: 15px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
|
|
|
|
&.subtle-hint {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 0;
|
2018-09-20 16:07:52 +00:00
|
|
|
}
|
2017-03-26 11:22:38 +00:00
|
|
|
}
|
|
|
|
|
2020-08-24 14:46:27 +00:00
|
|
|
.authentication-hint {
|
2020-04-28 08:16:55 +00:00
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
2017-07-21 03:28:51 +00:00
|
|
|
.card {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2017-04-08 20:20:08 +00: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 20:20:08 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.input.with_floating_label {
|
|
|
|
.label_input {
|
|
|
|
display: flex;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
2018-09-20 16:21:58 +00: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 16:21:58 +00:00
|
|
|
&.select .hint {
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-left: 150px;
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
2016-12-22 22:03:57 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 01:24:04 +00:00
|
|
|
.input.with_label {
|
2017-05-20 17:42:44 +00:00
|
|
|
.label_input > label {
|
2017-01-05 04:24:27 +00:00
|
|
|
font-family: inherit;
|
2018-09-20 16:21:58 +00:00
|
|
|
font-size: 14px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2016-11-16 16:51:02 +00:00
|
|
|
display: block;
|
2018-09-20 16:21:58 +00:00
|
|
|
margin-bottom: 8px;
|
2017-09-02 13:49:28 +00:00
|
|
|
word-wrap: break-word;
|
2018-09-20 16:21:58 +00:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-09-02 13:49:28 +00:00
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.hint {
|
|
|
|
margin-top: 6px;
|
2017-09-02 13:49:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
flex: 390px;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
2017-07-12 01:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.input.with_block_label {
|
2018-09-20 16:21:58 +00:00
|
|
|
max-width: none;
|
2018-09-20 16:07:52 +00:00
|
|
|
|
2017-07-12 01:24:04 +00:00
|
|
|
& > label {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 16px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
2018-09-20 16:21:58 +00:00
|
|
|
font-weight: 500;
|
2017-07-12 01:24:04 +00:00
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:07:52 +00:00
|
|
|
ul {
|
|
|
|
columns: 2;
|
2017-07-12 01:24:04 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 21:00:13 +00:00
|
|
|
.input.datetime .label_input select {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
flex: 0;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.required abbr {
|
|
|
|
text-decoration: none;
|
|
|
|
color: lighten($error-value-color, 12%);
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
.fields-group {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.input:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2017-04-17 08:37:00 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.fields-row {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 -10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
margin-bottom: 25px;
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.input {
|
|
|
|
max-width: none;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
2016-11-25 13:01:14 +00:00
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
&__column {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 10px;
|
2017-04-17 08:37:00 +00:00
|
|
|
flex: 1 1 auto;
|
2018-09-20 16:21:58 +00:00
|
|
|
min-height: 1px;
|
|
|
|
|
|
|
|
&-6 {
|
|
|
|
max-width: 50%;
|
|
|
|
}
|
2019-09-18 14:37:27 +00:00
|
|
|
|
|
|
|
.actions {
|
|
|
|
margin-top: 27px;
|
|
|
|
}
|
2016-11-23 15:26:53 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.fields-group:last-child,
|
|
|
|
.fields-row__column.fields-group {
|
|
|
|
margin-bottom: 0;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
2016-12-22 22:03:57 +00:00
|
|
|
|
2018-09-20 16:21:58 +00: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 08:16:55 +00:00
|
|
|
|
|
|
|
.fields-group.invited-by {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00: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 01:24:04 +00: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 01:24:04 +00:00
|
|
|
width: auto;
|
|
|
|
position: relative;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-left: 25px;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 5px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-22 08:48:50 +00:00
|
|
|
.input.static .label_input__wrapper {
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid $dark-text-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
input[type=text],
|
|
|
|
input[type=number],
|
|
|
|
input[type=email],
|
|
|
|
input[type=password],
|
2020-12-10 05:27:26 +00:00
|
|
|
input[type=url],
|
2017-05-07 18:47:31 +00:00
|
|
|
textarea {
|
2016-11-07 17:45:44 +00:00
|
|
|
box-sizing: border-box;
|
2016-10-18 14:37:15 +00:00
|
|
|
font-size: 16px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2016-10-18 14:37:15 +00: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;
|
2018-09-20 16:21:58 +00:00
|
|
|
background: darken($ui-base-color, 10%);
|
|
|
|
border: 1px solid darken($ui-base-color, 14%);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 10px;
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2019-09-19 17:58:40 +00:00
|
|
|
&::placeholder {
|
|
|
|
color: lighten($darker-text-color, 4%);
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
&:invalid {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:required:valid {
|
2018-09-20 16:21:58 +00:00
|
|
|
border-color: $valid-value-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: darken($ui-base-color, 20%);
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2018-09-20 16:21:58 +00:00
|
|
|
border-color: $highlight-text-color;
|
|
|
|
background: darken($ui-base-color, 8%);
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-14 09:03:09 +00:00
|
|
|
input[type=text],
|
|
|
|
input[type=number],
|
|
|
|
input[type=email],
|
|
|
|
input[type=password] {
|
|
|
|
&:focus:invalid:not(:placeholder-shown),
|
|
|
|
&:required:invalid:not(:placeholder-shown) {
|
|
|
|
border-color: lighten($error-red, 12%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
.input.field_with_errors {
|
2017-01-28 02:56:10 +00:00
|
|
|
label {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($error-red, 12%);
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
input[type=text],
|
2018-11-09 14:10:09 +00:00
|
|
|
input[type=number],
|
2017-05-07 18:47:31 +00:00
|
|
|
input[type=email],
|
2018-11-09 14:10:09 +00:00
|
|
|
input[type=password],
|
|
|
|
textarea,
|
|
|
|
select {
|
|
|
|
border-color: lighten($error-red, 12%);
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
2017-01-28 02:56:10 +00:00
|
|
|
display: block;
|
2016-10-18 14:37:15 +00:00
|
|
|
font-weight: 500;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: lighten($error-red, 12%);
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-top: 4px;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-12 16:34:00 +00:00
|
|
|
.input.disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:37:15 +00:00
|
|
|
.actions {
|
|
|
|
margin-top: 30px;
|
2017-05-17 22:38:01 +00:00
|
|
|
display: flex;
|
2018-05-11 12:31:18 +00:00
|
|
|
|
|
|
|
&.actions--top {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
button,
|
2017-05-17 22:38:01 +00:00
|
|
|
.button,
|
2017-05-07 18:47:31 +00:00
|
|
|
.block-button {
|
2016-10-22 17:38:47 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 4px;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
2016-10-22 17:38:47 +00:00
|
|
|
font-size: 18px;
|
2017-05-17 22:38:01 +00:00
|
|
|
line-height: inherit;
|
|
|
|
height: auto;
|
2016-10-22 17:38:47 +00:00
|
|
|
padding: 10px;
|
|
|
|
text-transform: uppercase;
|
2017-01-27 19:28:46 +00:00
|
|
|
text-decoration: none;
|
|
|
|
text-align: center;
|
|
|
|
box-sizing: border-box;
|
2016-10-22 17:38:47 +00:00
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 500;
|
|
|
|
outline: 0;
|
|
|
|
margin-bottom: 10px;
|
2017-05-17 22:38:01 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2016-10-22 17:38:47 +00:00
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: lighten($ui-highlight-color, 5%);
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: darken($ui-highlight-color, 5%);
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2019-03-12 16:34:00 +00:00
|
|
|
&:disabled:hover {
|
|
|
|
background-color: $ui-primary-color;
|
|
|
|
}
|
|
|
|
|
2016-10-22 17:38:47 +00:00
|
|
|
&.negative {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $error-value-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2016-10-22 17:38:47 +00:00
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: lighten($error-value-color, 5%);
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:active,
|
|
|
|
&:focus {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: darken($error-value-color, 5%);
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 08:37:00 +00:00
|
|
|
|
|
|
|
select {
|
2018-09-20 16:21:58 +00:00
|
|
|
appearance: none;
|
|
|
|
box-sizing: border-box;
|
2017-04-17 08:37:00 +00:00
|
|
|
font-size: 16px;
|
2018-09-20 16:21:58 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
outline: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
resize: vertical;
|
|
|
|
background: darken($ui-base-color, 10%) 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>") no-repeat right 8px center / auto 16px;
|
|
|
|
border: 1px solid darken($ui-base-color, 14%);
|
|
|
|
border-radius: 4px;
|
2019-01-17 22:28:30 +00:00
|
|
|
padding-left: 10px;
|
2018-12-16 12:36:19 +00:00
|
|
|
padding-right: 30px;
|
2018-09-20 16:21:58 +00:00
|
|
|
height: 41px;
|
2017-04-17 08:37:00 +00:00
|
|
|
}
|
2017-07-11 13:27:59 +00:00
|
|
|
|
2019-06-07 01:39:24 +00:00
|
|
|
h4 {
|
|
|
|
margin-bottom: 15px !important;
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.label_input {
|
|
|
|
&__wrapper {
|
|
|
|
position: relative;
|
2017-07-11 13:27:59 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
&__append {
|
2017-07-11 13:27:59 +00:00
|
|
|
position: absolute;
|
2018-10-22 16:37:17 +00:00
|
|
|
right: 3px;
|
2018-09-20 16:21:58 +00:00
|
|
|
top: 1px;
|
|
|
|
padding: 10px;
|
2017-07-11 13:27:59 +00:00
|
|
|
padding-bottom: 9px;
|
|
|
|
font-size: 16px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $dark-text-color;
|
2017-07-11 13:27:59 +00:00
|
|
|
font-family: inherit;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
2018-09-20 16:07:52 +00:00
|
|
|
max-width: 140px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 1px;
|
|
|
|
width: 5px;
|
2018-09-20 16:21:58 +00:00
|
|
|
background-image: linear-gradient(to right, rgba(darken($ui-base-color, 10%), 0), darken($ui-base-color, 10%));
|
2018-09-20 16:07:52 +00:00
|
|
|
}
|
2017-07-11 13:27:59 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-23 01:24:01 +00:00
|
|
|
|
|
|
|
&__overlay-area {
|
|
|
|
position: relative;
|
|
|
|
|
2019-11-22 14:56:59 +00:00
|
|
|
&__blurred form {
|
|
|
|
filter: blur(2px);
|
|
|
|
}
|
|
|
|
|
2019-03-23 01:24:01 +00:00
|
|
|
&__overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background: rgba($ui-base-color, 0.65);
|
|
|
|
border-radius: 4px;
|
2019-11-22 14:56:59 +00:00
|
|
|
margin-left: -4px;
|
|
|
|
margin-top: -4px;
|
|
|
|
padding: 4px;
|
2019-03-23 01:24:01 +00:00
|
|
|
|
|
|
|
&__content {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&.rich-formatting {
|
|
|
|
&,
|
|
|
|
p {
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.block-icon {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 24px;
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.flash-message {
|
2017-08-05 02:24:58 +00:00
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 15px 10px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
text-align: center;
|
|
|
|
|
2018-10-22 16:20:43 +00: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 12:12:30 +00:00
|
|
|
&.warning {
|
|
|
|
border: 1px solid rgba($gold-star, 0.5);
|
|
|
|
background: rgba($gold-star, 0.25);
|
|
|
|
color: $gold-star;
|
|
|
|
}
|
|
|
|
|
2018-10-22 16:20:43 +00:00
|
|
|
&.alert {
|
|
|
|
border: 1px solid rgba($error-value-color, 0.5);
|
2020-05-31 18:35:18 +00:00
|
|
|
background: rgba($error-value-color, 0.1);
|
2018-10-22 16:20:43 +00:00
|
|
|
color: $error-value-color;
|
|
|
|
}
|
|
|
|
|
2020-08-24 14:46:27 +00:00
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-05-03 18:36:36 +00:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
color: $darker-text-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-text-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:12:30 +00:00
|
|
|
&.warning a {
|
|
|
|
font-weight: 700;
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-17 13:23:44 +00: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 13:23:44 +00:00
|
|
|
padding: 10px;
|
2018-10-01 11:13:58 +00:00
|
|
|
font-family: $font-monospace, monospace;
|
2017-09-17 13:23:44 +00:00
|
|
|
background: $ui-base-color;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $primary-text-color;
|
2017-09-17 13:23:44 +00: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 14:37:15 +00: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 14:37:15 +00:00
|
|
|
}
|
2017-09-17 13:23:44 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 740px) and (min-width: 441px) {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
2020-04-28 08:16:55 +00:00
|
|
|
|
|
|
|
&.translation-prompt {
|
|
|
|
text-align: unset;
|
|
|
|
color: unset;
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 14:37:15 +00:00
|
|
|
}
|
|
|
|
|
2021-04-03 12:12:30 +00: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 14:37:15 +00:00
|
|
|
.form-footer {
|
|
|
|
margin-top: 30px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
a {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2016-10-18 14:37:15 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 16:21:58 +00:00
|
|
|
.quick-nav {
|
|
|
|
list-style: none;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 18:47:31 +00:00
|
|
|
.oauth-prompt,
|
|
|
|
.follow-prompt {
|
2016-10-22 17:38:47 +00:00
|
|
|
margin-bottom: 30px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $darker-text-color;
|
2016-10-22 17:38:47 +00:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 30px;
|
2018-10-22 16:22:49 +00:00
|
|
|
text-align: center;
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2016-10-22 17:38:47 +00: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 17:38:47 +00:00
|
|
|
}
|
2022-03-01 15:48:58 +00:00
|
|
|
}
|
2017-08-27 22:01:07 +00: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 22:01:07 +00:00
|
|
|
}
|
2016-10-22 17:38:47 +00:00
|
|
|
}
|
2017-01-27 19:28:46 +00:00
|
|
|
|
2017-04-08 20:20:08 +00:00
|
|
|
.qr-wrapper {
|
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: flex-start;
|
2017-04-08 20:20:08 +00:00
|
|
|
}
|
|
|
|
|
2017-01-27 19:28:46 +00:00
|
|
|
.qr-code {
|
2017-04-08 20:20:08 +00:00
|
|
|
flex: 0 0 auto;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $simple-background-color;
|
2017-01-27 19:28:46 +00:00
|
|
|
padding: 4px;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 10px 20px 0;
|
2017-05-08 13:57:49 +00: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 20:20:08 +00:00
|
|
|
|
|
|
|
.qr-alternative {
|
2017-09-02 13:49:28 +00:00
|
|
|
margin-bottom: 20px;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex: 150px;
|
2017-04-08 20:20:08 +00:00
|
|
|
|
|
|
|
samp {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 22:38:37 +00:00
|
|
|
|
|
|
|
.table-form {
|
|
|
|
p {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 22:38:37 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-14 16:01:27 +00:00
|
|
|
}
|
2017-04-23 22:38:37 +00:00
|
|
|
|
2017-06-14 16:01:27 +00:00
|
|
|
.simple_form,
|
|
|
|
.table-form {
|
2017-04-23 22:38:37 +00:00
|
|
|
.warning {
|
|
|
|
box-sizing: border-box;
|
2017-05-08 13:57:49 +00: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 22:38:37 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
a {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2017-04-23 22:38:37 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2017-04-23 22:38:37 +00: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 22:38:37 +00:00
|
|
|
.fa {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-pagination {
|
|
|
|
display: flex;
|
2017-10-04 20:49:36 +00:00
|
|
|
flex-wrap: wrap;
|
2017-04-23 22:38:37 +00:00
|
|
|
align-items: center;
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
.actions,
|
|
|
|
.pagination {
|
2017-04-23 22:38:37 +00:00
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
padding: 30px 0;
|
|
|
|
padding-right: 20px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
2017-05-01 15:42:13 +00:00
|
|
|
|
2017-07-10 16:05:06 +00:00
|
|
|
.post-follow-actions {
|
|
|
|
text-align: center;
|
2018-05-11 12:31:18 +00:00
|
|
|
color: $darker-text-color;
|
2017-07-10 16:05:06 +00:00
|
|
|
|
|
|
|
div {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
}
|
2018-05-11 12:31:18 +00: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 16:07:52 +00: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 11:13:58 +00:00
|
|
|
font-family: $font-monospace, monospace;
|
2018-09-20 16:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-20 16:21:58 +00: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;
|
|
|
|
padding-right: 4px;
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
transition: border-color 300ms linear;
|
|
|
|
|
|
|
|
&__wrapper {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=text] {
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 14px;
|
2018-10-01 11:13:58 +00:00
|
|
|
font-family: $font-monospace, monospace;
|
2018-09-20 16:21:58 +00: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
|
|
|
|
|
|
|
.connection-prompt {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
|
|
|
.fa-link {
|
|
|
|
background-color: darken($ui-base-color, 4%);
|
|
|
|
border-radius: 100%;
|
|
|
|
font-size: 24px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-shrink: 1;
|
2019-03-28 17:01:09 +00:00
|
|
|
max-width: 50%;
|
2019-03-18 20:00:55 +00:00
|
|
|
|
|
|
|
&-sep {
|
2019-03-28 17:01:09 +00:00
|
|
|
align-self: center;
|
2019-03-18 20:00:55 +00:00
|
|
|
flex-grow: 0;
|
|
|
|
overflow: visible;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2019-03-28 17:01:09 +00:00
|
|
|
|
|
|
|
p {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2019-03-18 20:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.account__avatar {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__connection {
|
|
|
|
background-color: lighten($ui-base-color, 8%);
|
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 25px 10px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
background-color: darken($ui-base-color, 4%);
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
left: 50%;
|
|
|
|
position: absolute;
|
2019-03-28 17:01:09 +00:00
|
|
|
top: 0;
|
2019-03-18 20:00:55 +00:00
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__row {
|
2019-03-28 17:01:09 +00:00
|
|
|
align-items: flex-start;
|
2019-03-18 20:00:55 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
}
|
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 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 18px;
|
|
|
|
width: 30px;
|
|
|
|
color: $valid-value-color;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|