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

86 lines
1.2 KiB
SCSS
Raw Normal View History

@import '_variables';
@import '_mixins';
$form-base-input-width: 340px;
label {
font-weight: $font-regular;
font-size: 100%;
}
form {
padding-bottom: 1.5rem;
2019-08-23 15:23:27 +02:00
}
input[type=text] {
@include peertube-input-text($form-base-input-width);
display: block;
}
input[type=number] {
@include peertube-input-text(315px);
display: block;
}
input[type=checkbox] {
@include peertube-checkbox(1px);
}
.peertube-select-container {
@include peertube-select-container($form-base-input-width);
}
input[type=submit] {
@include peertube-button;
@include orange-button;
display: flex;
margin-left: auto;
2018-06-07 10:20:59 +02:00
& + .form-error {
display: inline;
margin-left: 5px;
}
}
.inner-form-title {
@include settings-big-title;
}
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;
}
my-markdown-textarea ::ng-deep {
.root {
@media screen and (max-width: 1400px) {
flex-direction: column !important;
}
}
}
.form-group-right {
padding-top: 2px;
}
ngb-tabset:not(.previews) ::ng-deep {
.nav-link {
font-size: 105%;
}
}