Improve nav in admin/configuration
This commit is contained in:
parent
54e7884775
commit
758f0d19f2
|
@ -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 {
|
||||||
|
|
|
@ -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 () {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue