mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +00:00
fix some problems with quartz theme
This commit is contained in:
parent
45b727ae84
commit
8db77f6136
1 changed files with 19 additions and 3 deletions
|
@ -95,7 +95,7 @@ body {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-select {
|
.form-select:not([multiple]) {
|
||||||
transition: border-color .15s ease-in-out;
|
transition: border-color .15s ease-in-out;
|
||||||
option {
|
option {
|
||||||
background-color: $primary;
|
background-color: $primary;
|
||||||
|
@ -121,8 +121,10 @@ body {
|
||||||
.nav-link {
|
.nav-link {
|
||||||
transition: none;
|
transition: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover,
|
||||||
|
&:focus {
|
||||||
color: $white;
|
color: $white;
|
||||||
|
isolation: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
&,
|
&,
|
||||||
|
@ -145,7 +147,8 @@ body {
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
|
|
||||||
&:hover {
|
&:hover,
|
||||||
|
&:focus {
|
||||||
color: $gray-800;
|
color: $gray-800;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -153,6 +156,19 @@ body {
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-pills {
|
||||||
|
.nav-link {
|
||||||
|
transition: none;
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
|
color: $white;
|
||||||
|
isolation: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Indicators
|
// Indicators
|
||||||
|
|
Loading…
Reference in a new issue