]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.component.scss
Use ::ng-deep instead of /deep/
[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
03652b31 8::ng-deep .root-tabset.video-add-tabset {
8eaa6d62 9 &.hide-nav > .nav {
fbad87b0 10 display: none !important;
27e1a06c 11 }
27e1a06c 12
fbad87b0 13 & > .nav {
e494f91e 14
fbad87b0
C
15 border-bottom: $border-width $border-type $border-color;
16 margin: 0 !important;
c182778e 17
fbad87b0
C
18 & > li {
19 margin-bottom: -$border-width;
cadb46d8 20 }
cadb46d8 21
43620009
C
22 a.nav-link {
23 @include disable-default-a-behaviour;
24
fbad87b0
C
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;
d77433a8 32 background-color: var(--submenuColor) !important;
cadb46d8 33
fbad87b0 34 span {
9a0fc840 35 border-bottom: 2px solid var(--mainColor);
fbad87b0 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
d77433a8 46 background-color: var(--submenuColor);
fbad87b0
C
47 border-radius: 3px;
48 width: 100%;
990b6a0b 49 min-height: 440px;
a84b8fa5 50 padding-bottom: 20px;
fbad87b0
C
51 display: flex;
52 justify-content: center;
53 align-items: center;
e494f91e 54 }
03652b31 55}