Fix card-outline-tabs in dark mode and hover (#4099)

* Fix card-outline-tabs in dark mode and hover

* removing blanks

Co-authored-by: Erick <kreic51@hotmail.com>
pull/4181/head
kreic51 2022-01-12 11:21:15 -07:00 committed by GitHub
parent 5f7d0dcaf8
commit 60c63ab68b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 9 deletions

View File

@ -504,8 +504,11 @@ html.maximized-card {
.card-footer {
background-color: rgba($black, .1);
}
&.card-outline-tabs {
border-top: 0;
}
&.card-outline-tabs .card-header a:hover {
border-color: $gray-600;
border-top-color: $gray-600;
border-bottom-color: transparent;
}
&:not(.card-outline) > .card-header a.active {

View File

@ -25,18 +25,16 @@
&.card-outline-tabs {
> .card-header {
a {
&:hover {
a:hover{
border-top: 3px solid $nav-tabs-border-color;
}
&.active {
a.active,
a.active:hover{
border-top: 3px solid $color;
}
}
}
}
}
.bg-#{$name},
.bg-gradient-#{$name},