]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.scss
Merge branch 'release/3.4.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-custom-config.component.scss
... / ...
CommitLineData
1@use '_variables' as *;
2@use '_mixins' as *;
3
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;
13}
14
15input[type=text] {
16 @include peertube-input-text($form-base-input-width);
17
18 display: block;
19}
20
21input[type=number] {
22 @include peertube-input-text($form-base-input-width);
23
24 display: block;
25}
26
27.number-with-unit {
28 position: relative;
29 width: min-content;
30
31 input[type=number] + span {
32 position: absolute;
33 top: 5px;
34 right: 2.5rem;
35 }
36
37 input[disabled] {
38 background-color: #f9f9f9;
39 pointer-events: none;
40 }
41}
42
43input[type=checkbox] {
44 @include peertube-checkbox(1px);
45}
46
47.peertube-select-container {
48 @include peertube-select-container($form-base-input-width);
49}
50
51my-select-options,
52my-select-custom-value,
53my-select-checkbox {
54 @include responsive-width($form-base-input-width);
55
56 display: block;
57}
58
59input[type=submit] {
60 @include peertube-button;
61 @include orange-button;
62 @include margin-left(auto);
63
64 display: flex;
65
66 + .form-error {
67 @include margin-left(5px);
68
69 display: inline;
70 }
71}
72
73.inner-form-title {
74 @include settings-big-title;
75}
76
77textarea {
78 @include peertube-textarea(500px, 150px);
79
80 max-width: 100%;
81 display: block;
82
83 &.small {
84 height: 75px;
85 }
86}
87
88.label-small-info {
89 font-style: italic;
90 margin-bottom: 10px;
91}
92
93.disabled-checkbox-extra {
94 &,
95 ::ng-deep label {
96 opacity: .5;
97 pointer-events: none;
98 }
99}
100
101input[disabled] {
102 opacity: 0.5;
103}
104
105
106.form-group-right {
107 padding-top: 2px;
108}
109
110ngb-tabset:not(.previews) ::ng-deep {
111 .nav-link {
112 font-size: 105%;
113 }
114}
115
116.submit-error {
117 margin-bottom: 20px;
118}
119
120.alert-signup {
121 width: fit-content;
122 margin-top: 10px;
123}
124
125.callout-container {
126 position: absolute;
127 display: flex;
128 height: 0;
129 width: 100%;
130 justify-content: right;
131
132 .callout-link {
133 @include peertube-button-link;
134
135 position: relative;
136 right: 3.3em;
137 top: .3em;
138 font-size: 90%;
139 color: pvar(--mainColor);
140 background-color: pvar(--mainBackgroundColor);
141 padding: 0 .3em;
142 }
143}