]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.component.scss
Add tests regarding video import
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.component.scss
CommitLineData
63c4db6d
C
1@import '_variables';
2@import '_mixins';
3
fbad87b0
C
4$border-width: 3px;
5$border-type: solid;
6$border-color: #EAEAEA;
27e1a06c 7
fbad87b0 8$background-color: #F7F7F7;
84455f2b 9
fbad87b0
C
10/deep/ tabset.root-tabset.video-add-tabset {
11 &.hide-nav .nav {
12 display: none !important;
27e1a06c 13 }
27e1a06c 14
fbad87b0 15 & > .nav {
e494f91e 16
fbad87b0
C
17 border-bottom: $border-width $border-type $border-color;
18 margin: 0 !important;
c182778e 19
fbad87b0
C
20 & > li {
21 margin-bottom: -$border-width;
cadb46d8 22 }
cadb46d8 23
fbad87b0
C
24 .nav-link {
25 height: 40px !important;
26 padding: 0 30px !important;
27 font-size: 15px;
28
29 &.active {
30 border: $border-width $border-type $border-color;
31 border-bottom: none;
32 background-color: $background-color !important;
cadb46d8 33
fbad87b0
C
34 span {
35 border-bottom: 2px solid #F1680D;
36 font-weight: $font-bold;
e494f91e 37 }
cadb46d8 38 }
c182778e
C
39 }
40 }
c182778e 41
fbad87b0
C
42 .upload-video-container {
43 border: $border-width $border-type $border-color;
44 border-top: none;
e494f91e 45
fbad87b0
C
46 background-color: $background-color;
47 border-radius: 3px;
48 width: 100%;
49 height: 440px;
50 display: flex;
51 justify-content: center;
52 align-items: center;
e494f91e 53 }
fbad87b0 54}