PeerTube/client/src/app/+admin/config/edit-custom-config/edit-custom-config.componen...

61 lines
882 B
SCSS
Raw Normal View History

@import '_variables';
@import '_mixins';
2019-08-23 15:23:27 +02:00
.form-group {
margin-bottom: 25px;
}
input[type=text] {
@include peertube-input-text(340px);
display: block;
}
input[type=checkbox] {
@include peertube-checkbox(1px);
}
.peertube-select-container {
@include peertube-select-container(340px);
}
input[type=submit] {
@include peertube-button;
@include orange-button;
margin-top: 20px;
2018-06-07 10:20:59 +02:00
& + .form-error {
display: inline;
margin-left: 5px;
}
}
.inner-form-title {
text-transform: uppercase;
color: var(--mainColor);
font-weight: $font-bold;
font-size: 13px;
margin-top: 30px;
margin-bottom: 10px;
}
textarea {
@include peertube-textarea(500px, 150px);
display: block;
2018-03-15 14:31:08 +01:00
2019-09-03 09:49:04 +02:00
&.small {
height: 75px;
2018-03-15 14:31:08 +01:00
}
}
2019-08-23 15:23:27 +02:00
.label-small-info {
font-style: italic;
margin-bottom: 10px;
}
.disabled-checkbox-extra {
opacity: .5;
pointer-events: none;
}