Improve nav in admin/configuration
This commit is contained in:
parent
54e7884775
commit
758f0d19f2
3 changed files with 17 additions and 4 deletions
|
@ -10,6 +10,7 @@
|
|||
::ng-deep {
|
||||
.ui-button-text {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.ui-button.ui-state-active {
|
||||
|
|
|
@ -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 () {
|
||||
|
|
18
client/src/sass/bootstrap.scss
vendored
18
client/src/sass/bootstrap.scss
vendored
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue