]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.scss
Merge branch 'blacklist' 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
482fa503
RK
4$form-base-input-width: 340px;
5
6label {
7 font-weight: $font-regular;
8 font-size: 100%;
9}
10
11form {
12 padding-bottom: 1.5rem;
ccc00cb2
C
13}
14
fd206f0b 15input[type=text] {
482fa503 16 @include peertube-input-text($form-base-input-width);
fd206f0b
C
17 display: block;
18}
19
e40afb5b
RK
20input[type=number] {
21 @include peertube-input-text(315px);
22 display: block;
23}
24
fd206f0b
C
25input[type=checkbox] {
26 @include peertube-checkbox(1px);
27}
28
29.peertube-select-container {
482fa503 30 @include peertube-select-container($form-base-input-width);
fd206f0b
C
31}
32
33input[type=submit] {
34 @include peertube-button;
35 @include orange-button;
36
482fa503
RK
37 display: flex;
38 margin-left: auto;
5b7c47a7
C
39
40 & + .form-error {
41 display: inline;
42 margin-left: 5px;
43 }
fd206f0b
C
44}
45
46.inner-form-title {
482fa503 47 @include settings-big-title;
fd206f0b 48}
00b5556c
C
49
50textarea {
51 @include peertube-textarea(500px, 150px);
52
76314386 53 max-width: 100%;
00b5556c 54 display: block;
2e3a0215 55
8ae03c37
C
56 &.small {
57 height: 75px;
2e3a0215 58 }
00b5556c 59}
ccc00cb2
C
60
61.label-small-info {
62 font-style: italic;
63 margin-bottom: 10px;
64}
96a4a7c3
RK
65
66.disabled-checkbox-extra {
5fb2e288
C
67 &, ::ng-deep label {
68 opacity: .5;
69 pointer-events: none;
70 }
96a4a7c3 71}
482fa503 72
482fa503
RK
73.form-group-right {
74 padding-top: 2px;
75}
76
77ngb-tabset:not(.previews) ::ng-deep {
78 .nav-link {
79 font-size: 105%;
80 }
72c33e71
C
81}
82
83.submit-error {
84 margin-bottom: 20px;
85}