]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-forms/peertube-checkbox.component.scss
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / peertube-checkbox.component.scss
CommitLineData
8cbc40b2
C
1@use '_variables' as *;
2@use '_mixins' as *;
0f7fedc3 3
017c3dca 4.root {
0f7fedc3 5 display: flex;
0f7fedc3 6
4c8749cb 7 label {
0f7fedc3 8 display: flex;
5b0ec7cd 9 font-size: $form-input-font-size;
0f7fedc3
C
10
11 input {
12 @include peertube-checkbox(1px);
0f7fedc3
C
13 }
14 }
0bd84f8b 15
017c3dca
C
16 label {
17 margin-bottom: 0;
18 }
19
0bd84f8b 20 my-help {
5b0ec7cd 21 line-height: 17px;
0bd84f8b 22 }
96a4a7c3 23
5b0ec7cd
C
24 .form-group-description {
25 margin-top: 2px;
96a4a7c3
RK
26 }
27
28 .wrapper:empty {
29 display: none;
30 }
5411da31
RK
31
32 .recommended {
27bc9586
C
33 @include margin-left(.5rem);
34
5411da31
RK
35 align-self: baseline;
36 display: inline-block;
37 padding: 4px 6px;
38 cursor: default;
39 border-radius: 3px;
40 font-size: 12px;
41 line-height: 12px;
42 font-weight: 500;
e66883b3 43 color: pvar(--inputPlaceholderColor);
931d3430
C
44 background-color: rgba(217, 225, 232, .1);
45 border: 1px solid rgba(217, 225, 232, .5);
5411da31 46 }
931d3430 47}