1
0
Fork 0
peertube/client/src/app/videos/+video-edit/video-add.component.scss

56 lines
1.1 KiB
SCSS
Raw Normal View History

2017-12-11 16:36:46 +00:00
@import '_variables';
@import '_mixins';
$border-width: 3px;
$border-type: solid;
$border-color: #EAEAEA;
2017-12-07 15:32:06 +00:00
2019-07-24 14:12:35 +00:00
::ng-deep .root-tabset.video-add-tabset {
2018-09-28 14:17:10 +00:00
&.hide-nav > .nav {
display: none !important;
2017-12-07 15:32:06 +00:00
}
& > .nav {
2018-01-23 14:15:03 +00:00
border-bottom: $border-width $border-type $border-color;
margin: 0 !important;
2017-12-07 16:56:59 +00:00
& > li {
margin-bottom: -$border-width;
2017-12-08 07:39:15 +00:00
}
2018-08-06 13:12:54 +00:00
a.nav-link {
@include disable-default-a-behaviour;
height: 40px !important;
padding: 0 30px !important;
font-size: 15px;
&.active {
border: $border-width $border-type $border-color;
border-bottom: none;
2018-09-05 09:24:43 +00:00
background-color: var(--submenuColor) !important;
2017-12-08 07:39:15 +00:00
span {
border-bottom: 2px solid var(--mainColor);
font-weight: $font-bold;
2018-01-23 14:15:03 +00:00
}
2017-12-08 07:39:15 +00:00
}
2017-12-07 16:56:59 +00:00
}
}
.upload-video-container {
border: $border-width $border-type $border-color;
border-top: none;
2018-01-23 14:15:03 +00:00
2018-09-05 09:24:43 +00:00
background-color: var(--submenuColor);
border-radius: 3px;
width: 100%;
2018-08-07 07:54:36 +00:00
min-height: 440px;
2018-08-07 08:07:53 +00:00
padding-bottom: 20px;
display: flex;
justify-content: center;
align-items: center;
2018-01-23 14:15:03 +00:00
}
2019-07-24 14:12:35 +00:00
}