mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2024-11-29 19:54:20 +01:00
Fixed CSS rendering issues related to important interfering withthe navbar.
This commit is contained in:
parent
67679a987f
commit
09e1b5b89b
@ -10,7 +10,6 @@
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
.navbar-logo { height: 32px; }
|
||||
|
||||
.hero .navbar.is-freestanding {
|
||||
background: $navbar-background-color;
|
||||
}
|
||||
@ -18,21 +17,4 @@
|
||||
// For call to action heros, we want to style them on hover.
|
||||
.hero.is-actionable:hover {
|
||||
color: #969696;
|
||||
}
|
||||
|
||||
// https://github.com/jgthms/bulma/issues/935
|
||||
.navbar-dropdown {
|
||||
a.navbar-item {
|
||||
color: #4a4a4a !important;
|
||||
}
|
||||
|
||||
a.navbar-item:hover {
|
||||
background-color: #f5f5f5 !important;
|
||||
color: #0a0a0a !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Works around incorrect coloring on navbar dropdown, related to above.
|
||||
.is-info div {
|
||||
color: inherit !important;
|
||||
}
|
||||
}
|
@ -1,8 +1,9 @@
|
||||
/* Yuzu uses a dark theme by default */
|
||||
$background: darken($dark, 8);
|
||||
|
||||
$navbar-item-color: $white;
|
||||
$navbar-item-hover-background-color: $black;
|
||||
$navbar-background-color: $dark;
|
||||
$navbar-item-color: $dark;
|
||||
$navbar-item-hover-background-color: $dark;
|
||||
$navbar-item-hover-color: $white;
|
||||
|
||||
$box-background-color: $info;
|
||||
@ -13,7 +14,4 @@ $text-light: $white;
|
||||
$text-strong: $white;
|
||||
|
||||
$title-color: $white;
|
||||
$subtitle-color: $white;
|
||||
|
||||
// $link: $primary;
|
||||
// $link-hover: darken($link, 15);
|
||||
$subtitle-color: $white;
|
Loading…
Reference in New Issue
Block a user