]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.component.scss
improve likes-dislikes bar usability
[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
cd3d847d
C
8.margin-content {
9 padding-top: 50px;
10}
11
12.alert {
13 font-size: 15px;
14}
15
03652b31 16::ng-deep .root-tabset.video-add-tabset {
cd3d847d
C
17 margin-top: 50px;
18
8eaa6d62 19 &.hide-nav > .nav {
fbad87b0 20 display: none !important;
27e1a06c 21 }
27e1a06c 22
fbad87b0 23 & > .nav {
fbad87b0
C
24 border-bottom: $border-width $border-type $border-color;
25 margin: 0 !important;
c182778e 26
fbad87b0
C
27 & > li {
28 margin-bottom: -$border-width;
cadb46d8 29 }
cadb46d8 30
43620009
C
31 a.nav-link {
32 @include disable-default-a-behaviour;
33
fbad87b0
C
34 height: 40px !important;
35 padding: 0 30px !important;
36 font-size: 15px;
37
38 &.active {
39 border: $border-width $border-type $border-color;
40 border-bottom: none;
d77433a8 41 background-color: var(--submenuColor) !important;
cadb46d8 42
fbad87b0 43 span {
9a0fc840 44 border-bottom: 2px solid var(--mainColor);
fbad87b0 45 font-weight: $font-bold;
e494f91e 46 }
cadb46d8 47 }
c182778e
C
48 }
49 }
c182778e 50
fbad87b0
C
51 .upload-video-container {
52 border: $border-width $border-type $border-color;
53 border-top: none;
e494f91e 54
d77433a8 55 background-color: var(--submenuColor);
fbad87b0
C
56 border-radius: 3px;
57 width: 100%;
990b6a0b 58 min-height: 440px;
a84b8fa5 59 padding-bottom: 20px;
fbad87b0
C
60 display: flex;
61 justify-content: center;
62 align-items: center;
e494f91e 63 }
03652b31 64}