Improve nav in admin/configuration

This commit is contained in:
Rigel Kent 2020-03-07 00:15:49 +01:00
parent 54e7884775
commit 758f0d19f2
No known key found for this signature in database
GPG Key ID: 5E53E96A494E452F
3 changed files with 17 additions and 4 deletions

View File

@ -10,6 +10,7 @@
::ng-deep { ::ng-deep {
.ui-button-text { .ui-button-text {
font-size: 15px; font-size: 15px;
font-weight: 600;
} }
.ui-button.ui-state-active { .ui-button.ui-state-active {

View File

@ -70,7 +70,7 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
} }
get videoExtensions () { get videoExtensions () {
return this.serverConfig.video.file.extensions.join(',') return this.serverConfig.video.file.extensions.join(', ')
} }
ngOnInit () { ngOnInit () {

View File

@ -163,9 +163,21 @@ ngb-tabset.bootstrap {
} }
} }
.nav-tabs .nav-link.active { .nav-tabs .nav-link {
background-color: var(--mainBackgroundColor) !important; &:not(.active) {
border-bottom: none; opacity: .6;
border-bottom: 3px solid transparent;
}
&.active {
background-color: var(--mainBackgroundColor) !important;
border: none;
border-bottom: 2px solid var(--mainColor);
}
&:hover {
border-top-color: transparent;
border-left-color: transparent;
border-right-color: transparent;
}
} }
.card { .card {