]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.scss
Merge branch 'release/2.1.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-custom-config.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .form-group {
5 margin-bottom: 25px;
6 }
7
8 input[type=text] {
9 @include peertube-input-text(340px);
10 display: block;
11 }
12
13 input[type=number] {
14 @include peertube-input-text(315px);
15 display: block;
16 }
17
18 input[type=checkbox] {
19 @include peertube-checkbox(1px);
20 }
21
22 .peertube-select-container {
23 @include peertube-select-container(340px);
24 }
25
26 input[type=submit] {
27 @include peertube-button;
28 @include orange-button;
29
30 margin-top: 20px;
31
32 & + .form-error {
33 display: inline;
34 margin-left: 5px;
35 }
36 }
37
38 .inner-form-title {
39 text-transform: uppercase;
40 color: var(--mainColor);
41 font-weight: $font-bold;
42 font-size: 13px;
43 margin-top: 30px;
44 margin-bottom: 10px;
45 }
46
47 textarea {
48 @include peertube-textarea(500px, 150px);
49
50 display: block;
51
52 &.small {
53 height: 75px;
54 }
55 }
56
57 .label-small-info {
58 font-style: italic;
59 margin-bottom: 10px;
60 }
61
62 .disabled-checkbox-extra {
63 opacity: .5;
64 pointer-events: none;
65 }