]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-add-components/video-send.scss
Fix classic select and ng select css inconsistency
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-send.scss
CommitLineData
8cbc40b2
C
1@use '_variables' as *;
2@use '_mixins' as *;
fbad87b0 3
1e2fe802 4$width-size: 250px;
fbad87b0 5
7373507f
C
6.alert.alert-danger {
7 text-align: center;
8
931d3430 9 > div {
7373507f
C
10 font-weight: $font-semibold;
11 }
12}
13
457bb213 14.first-step-block {
fbad87b0
C
15 display: flex;
16 flex-direction: column;
17 align-items: center;
18
457bb213 19 .upload-icon {
bffee1d5 20 @include apply-svg-color($input-border-color);
931d3430 21
457bb213 22 width: 90px;
fbad87b0 23 margin-bottom: 25px;
457bb213
C
24 }
25
26 .peertube-select-container {
27 @include peertube-select-container($width-size);
fbad87b0 28 }
02c01341
RK
29 my-select-options ::ng-deep ng-select,
30 my-select-channel ::ng-deep ng-select {
31 width: $width-size;
1e2fe802 32
02c01341
RK
33 @media screen and (max-width: $width-size) {
34 width: 100%;
35 }
36 }
fbad87b0
C
37
38 input[type=text] {
39 @include peertube-input-text($width-size);
40 display: block;
41 }
42
43 input[type=button] {
44 @include peertube-button;
45 @include orange-button;
46
47 width: $width-size;
48 margin-top: 30px;
49 }
fbad87b0 50
457bb213 51 .button-file {
e61151b0 52 @include peertube-button-file(max-content);
6c808af9 53 @include orange-button;
457bb213 54 }
457bb213 55}