]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1@use '_variables' as *;
2@use '_mixins' as *;
3
4$width-size: 250px;
5
6.alert.alert-danger {
7 text-align: center;
8
9 > div {
10 font-weight: $font-semibold;
11 }
12}
13
14.first-step-block {
15 display: flex;
16 flex-direction: column;
17 align-items: center;
18
19 .upload-icon {
20 @include apply-svg-color($input-border-color);
21
22 width: 90px;
23 margin-bottom: 25px;
24 }
25
26 .peertube-select-container {
27 @include peertube-select-container($width-size);
28 }
29 my-select-options ::ng-deep ng-select,
30 my-select-channel ::ng-deep ng-select {
31 width: $width-size;
32
33 @media screen and (max-width: $width-size) {
34 width: 100%;
35 }
36 }
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 }
50
51 .button-file {
52 @include peertube-button-file(max-content);
53 @include orange-button;
54 }
55}