]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-forms/peertube-checkbox.component.scss
Migrate to bootstrap 5
[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;
46db9430 9 align-items: center;
0f7fedc3 10
bc20aaed 11 .label-text {
0f7fedc3
C
12 font-weight: $font-regular;
13 margin: 0;
14 }
15
16 input {
17 @include peertube-checkbox(1px);
0f7fedc3
C
18 }
19 }
0bd84f8b 20
017c3dca
C
21 label {
22 margin-bottom: 0;
23 }
24
0bd84f8b
C
25 my-help {
26 position: relative;
46db9430 27 top: 2px;
0bd84f8b 28 }
96a4a7c3
RK
29
30 small {
31 font-size: 90%;
32 }
33
34 .wrapper:empty {
35 display: none;
36 }
5411da31
RK
37
38 .recommended {
27bc9586
C
39 @include margin-left(.5rem);
40
5411da31
RK
41 align-self: baseline;
42 display: inline-block;
43 padding: 4px 6px;
44 cursor: default;
45 border-radius: 3px;
46 font-size: 12px;
47 line-height: 12px;
48 font-weight: 500;
e66883b3 49 color: pvar(--inputPlaceholderColor);
931d3430
C
50 background-color: rgba(217, 225, 232, .1);
51 border: 1px solid rgba(217, 225, 232, .5);
5411da31 52 }
931d3430 53}