2021-05-27 12:25:00 -04:00
|
|
|
@use '_variables' as *;
|
|
|
|
@use '_mixins' as *;
|
2018-07-17 08:44:19 -04:00
|
|
|
|
2018-10-10 08:35:55 -04:00
|
|
|
.root {
|
2018-07-17 08:44:19 -04:00
|
|
|
display: flex;
|
|
|
|
|
2022-06-08 10:14:24 -04:00
|
|
|
label {
|
2018-07-17 08:44:19 -04:00
|
|
|
display: flex;
|
2022-06-15 08:59:25 -04:00
|
|
|
font-size: $form-input-font-size;
|
2018-07-17 08:44:19 -04:00
|
|
|
|
|
|
|
input {
|
|
|
|
@include peertube-checkbox(1px);
|
|
|
|
}
|
|
|
|
}
|
2018-08-27 05:52:14 -04:00
|
|
|
|
2018-10-10 08:35:55 -04:00
|
|
|
label {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-08-27 05:52:14 -04:00
|
|
|
my-help {
|
2022-06-15 08:59:25 -04:00
|
|
|
line-height: 17px;
|
2018-08-27 05:52:14 -04:00
|
|
|
}
|
2020-01-15 06:15:31 -05:00
|
|
|
|
2022-06-15 08:59:25 -04:00
|
|
|
.form-group-description {
|
|
|
|
margin-top: 2px;
|
2020-01-15 06:15:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-03-23 18:43:51 -04:00
|
|
|
|
|
|
|
.recommended {
|
2021-06-07 11:38:31 -04:00
|
|
|
@include margin-left(.5rem);
|
|
|
|
|
2020-03-23 18:43:51 -04:00
|
|
|
align-self: baseline;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 6px;
|
|
|
|
cursor: default;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 12px;
|
|
|
|
font-weight: 500;
|
2020-06-09 03:33:28 -04:00
|
|
|
color: pvar(--inputPlaceholderColor);
|
2021-04-28 10:41:07 -04:00
|
|
|
background-color: rgba(217, 225, 232, .1);
|
|
|
|
border: 1px solid rgba(217, 225, 232, .5);
|
2020-03-23 18:43:51 -04:00
|
|
|
}
|
2021-04-28 10:41:07 -04:00
|
|
|
}
|