The color we were using didn't have enough contrast against a white background, which made it harder to read texts like "Remove map marker" or "Erase my account". Since the new color is almost identical to the color we were using on hover and for the border, we're changing the color on hover as well, while IMHO it's no longer necessary to use a different color for the border.
40 lines
552 B
SCSS
40 lines
552 B
SCSS
.map-location-remove-marker {
|
|
border-bottom: 1px dotted;
|
|
border-radius: 0;
|
|
color: $delete;
|
|
cursor: pointer;
|
|
margin-bottom: $line-height;
|
|
margin-top: $line-height / 2;
|
|
|
|
&:hover,
|
|
&:active,
|
|
&:focus {
|
|
border-bottom-style: solid;
|
|
color: darken($delete, 10%);
|
|
}
|
|
}
|
|
|
|
.leaflet-bar a {
|
|
|
|
&.leaflet-disabled {
|
|
color: #525252;
|
|
}
|
|
}
|
|
|
|
.leaflet-container {
|
|
|
|
.leaflet-control-attribution {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
a {
|
|
@include link;
|
|
}
|
|
}
|
|
|
|
.leaflet-bottom,
|
|
.leaflet-pane,
|
|
.leaflet-top {
|
|
z-index: 4;
|
|
}
|