mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-15 03:03:26 +01:00
Select highlighted multibutton
This commit is contained in:
parent
2516fba105
commit
bcab165f97
2 changed files with 5 additions and 4 deletions
|
@ -43,10 +43,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// BUTTON
|
// BUTTON
|
||||||
|
|
||||||
.maputnik-button {
|
.maputnik-button {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: $color-midgray;
|
background-color: $color-gray;
|
||||||
color: $color-lowgray;
|
color: $color-lowgray;
|
||||||
font-size: $font-size-6;
|
font-size: $font-size-6;
|
||||||
padding: $margin-2;
|
padding: $margin-2;
|
||||||
|
@ -55,7 +54,7 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($color-midgray, 6);
|
background-color: lighten($color-midgray, 12);
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.maputnik-button-selected {
|
.maputnik-button-selected {
|
||||||
background-color: $color-midgray;
|
background-color: lighten($color-midgray, 12);
|
||||||
|
outline: 1px $color-white;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
// CHECKBOX
|
// CHECKBOX
|
||||||
|
|
Loading…
Reference in a new issue