Skip to content

Commit

Permalink
Merge pull request #230 from eparadise/hover-color
Browse files Browse the repository at this point in the history
Changing hover color of bottom right buttons
  • Loading branch information
readingdancer authored Jun 3, 2020
2 parents db9adab + ed323a0 commit 6591fa5
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion covid-19-support/src/components/ResourceMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,18 @@ div.markeropen svg path {
.leaflet-bottom .leaflet-control-zoom {
margin-bottom: 26px !important;
}
.leaflet-control-zoom a:hover {
background-color: #f4f4f4 !important;
@media (prefers-color-scheme: dark) {
background-color: $gray-300 !important;
}
}
.leaflet-control-zoom a.leaflet-disabled {
background-color: #f4f4f4 !important;
@media (prefers-color-scheme: dark) {
background-color: $gray-300 !important;
}
}
.user-location-button {
bottom: 68px !important;
}
Expand All @@ -397,6 +408,9 @@ div.markeropen svg path {
color: #000 !important;
&:hover {
background-color: #f4f4f4;
@media (prefers-color-scheme: dark) {
background-color: $gray-300 !important;
}
}
&.active {
color: theme-color('primary') !important;
Expand Down

0 comments on commit 6591fa5

Please sign in to comment.