Makes points of interest badges smaller and semi-transparent, hides paid ones.
mapy.cz - less distractive POIs by myfonj
Details
Authormyfonj
LicenseCC0
Categorymapy.cz
Created
Updated
Size560 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name mapy.cz - less distractive POIs
@namespace github.com/openstyles/stylus
@version 1.0.3
@description Makes points of interest badges smaller and semi-transparent, unifies paid ones.
@license CC0
==/UserStyle== */
@-moz-document domain("mapy.cz") {
.marker.lookup-poi {
&:not(:hover) {
transform: scale(.7);
opacity: .7;
}
&:hover {
transform: scale(1.3);
background-color: #fff7;
}
&.type-paid {
/* * / display: none; /* */
&,& * {
animation: none !important;
}
}
}
}