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