]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.component.scss
fixing grid readjustment with expand and screens < 1150px
[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
b04eabb2 10/deep/ .root-tabset.video-add-tabset {
fbad87b0
C
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
43620009
C
24 a.nav-link {
25 @include disable-default-a-behaviour;
26
27 color: #000;
fbad87b0
C
28 height: 40px !important;
29 padding: 0 30px !important;
30 font-size: 15px;
31
32 &.active {
33 border: $border-width $border-type $border-color;
34 border-bottom: none;
35 background-color: $background-color !important;
cadb46d8 36
fbad87b0
C
37 span {
38 border-bottom: 2px solid #F1680D;
39 font-weight: $font-bold;
e494f91e 40 }
cadb46d8 41 }
c182778e
C
42 }
43 }
c182778e 44
fbad87b0
C
45 .upload-video-container {
46 border: $border-width $border-type $border-color;
47 border-top: none;
e494f91e 48
fbad87b0
C
49 background-color: $background-color;
50 border-radius: 3px;
51 width: 100%;
990b6a0b 52 min-height: 440px;
a84b8fa5 53 padding-bottom: 20px;
fbad87b0
C
54 display: flex;
55 justify-content: center;
56 align-items: center;
e494f91e 57 }
fbad87b0 58}