]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/video-add-components/video-send.scss
Theme breaking: --submenuColor becomes --submenuBackgroundColor
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-send.scss
1 @import 'variables';
2 @import 'mixins';
3
4 $width-size: 190px;
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 width: 90px;
21 margin-bottom: 25px;
22
23 @include apply-svg-color(#C6C6C6);
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 @media screen and (max-width: $width-size) {
33 width: 100%;
34 }
35 }
36
37 input[type=text] {
38 @include peertube-input-text($width-size);
39 display: block;
40 }
41
42 input[type=button] {
43 @include peertube-button;
44 @include orange-button;
45
46 width: $width-size;
47 margin-top: 30px;
48 }
49
50 .button-file {
51 @include peertube-button-file(max-content);
52 @include orange-button;
53 }
54 }