]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1@import '_variables';
2@import '_mixins';
3
4$border-width: 3px;
5$border-type: solid;
6$border-color: #EAEAEA;
7
8.margin-content {
9 padding-top: 50px;
10}
11
12.alert {
13 font-size: 15px;
14}
15
16::ng-deep .root-tabset.video-add-tabset {
17 margin-top: 50px;
18
19 &.hide-nav > .nav {
20 display: none !important;
21 }
22
23 & > .nav {
24 border-bottom: $border-width $border-type $border-color;
25 margin: 0 !important;
26
27 & > li {
28 margin-bottom: -$border-width;
29 }
30
31 a.nav-link {
32 @include disable-default-a-behaviour;
33
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;
41 background-color: var(--submenuColor) !important;
42
43 span {
44 border-bottom: 2px solid var(--mainColor);
45 font-weight: $font-bold;
46 }
47 }
48 }
49 }
50
51 .upload-video-container {
52 border: $border-width $border-type $border-color;
53 border-top: none;
54
55 background-color: var(--submenuColor);
56 border-radius: 3px;
57 width: 100%;
58 min-height: 440px;
59 padding-bottom: 20px;
60 display: flex;
61 justify-content: center;
62 align-items: center;
63 }
64}