Improve nav in admin/configuration

pull/2546/head
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 {
.ui-button-text {
font-size: 15px;
font-weight: 600;
}
.ui-button.ui-state-active {

View File

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

View File

@ -163,9 +163,21 @@ ngb-tabset.bootstrap {
}
}
.nav-tabs .nav-link.active {
background-color: var(--mainBackgroundColor) !important;
border-bottom: none;
.nav-tabs .nav-link {
&:not(.active) {
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 {