Note: Since we update to 1.80.1 deprecation warnings are appear when execute the assets:precompile command. In order to silence this deprecation, we add silence_deprecation option in sass.rb initializer. The code has also been updated to remove the deprecation warnings that appeared related to the function darken(), lighten() and "Using / for division" instead of the function calc(). Bumps [sassc-embedded](https://github.com/sass-contrib/sassc-embedded-shim-ruby) from 1.70.1 to 1.80.1. - [Commits](https://github.com/sass-contrib/sassc-embedded-shim-ruby/compare/v1.70.1...v1.80.1) --- updated-dependencies: - dependency-name: sassc-embedded dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
600 B
SCSS
42 lines
600 B
SCSS
@use "sass:color";
|
|
|
|
.map-location-remove-marker {
|
|
border-bottom: 1px dotted;
|
|
border-radius: 0;
|
|
color: $delete;
|
|
cursor: pointer;
|
|
margin-bottom: $line-height;
|
|
margin-top: calc(#{$line-height} / 2);
|
|
|
|
&:hover,
|
|
&:active,
|
|
&:focus {
|
|
border-bottom-style: solid;
|
|
color: color.adjust($delete, $lightness: -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;
|
|
}
|