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