M _sass/minimal-mistakes/_navigation.scss => _sass/minimal-mistakes/_navigation.scss +1 -2
@@ 200,8 200,7 @@
height: $nav-toggle-height;
border: 0;
outline: none;
- color: #fff;
- background-color: $primary-color;
+ background-color: transparent;
cursor: pointer;
}
M _sass/minimal-mistakes/_search.scss => _sass/minimal-mistakes/_search.scss +3 -2
@@ 11,16 11,17 @@
.search__toggle {
margin-left: 1rem;
margin-right: 1rem;
+ height: $nav-toggle-height;
border: 0;
outline: none;
- color: $muted-text-color;
+ color: $primary-color;
background-color: transparent;
cursor: pointer;
-webkit-transition: 0.2s;
transition: 0.2s;
&:hover {
- color: $text-color;
+ color: mix(#000, $primary-color, 25%);
}
}
M _sass/minimal-mistakes/_utilities.scss => _sass/minimal-mistakes/_utilities.scss +2 -2
@@ 315,7 315,7 @@ body:hover .visually-hidden button {
position: relative;
width: $navicon-width;
height: $navicon-height;
- background: #fff;
+ background: $primary-color;
margin: auto;
-webkit-transition: 0.3s;
transition: 0.3s;
@@ 327,7 327,7 @@ body:hover .visually-hidden button {
left: 0;
width: $navicon-width;
height: $navicon-height;
- background: #fff;
+ background: $primary-color;
-webkit-transition: 0.3s;
transition: 0.3s;
}