Changes between Version 6 and Version 7 of Styles/SidewalksAndFootways
- Timestamp:
- 2021-01-31T20:06:44+01:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Styles/SidewalksAndFootways
v6 v7 98 98 99 99 way.sidewalk-yes::sidewalks_left { 100 color: #00 ff00;100 color: #00cc00; 101 101 } 102 102 way.sidewalk-yes::sidewalks_right { 103 color: #00 ff00;103 color: #00cc00; 104 104 } 105 105 … … 127 127 128 128 way[highway=footway] { 129 color: #00 ff00;129 color: #00cc00; 130 130 width: 1; 131 131 } … … 141 141 } 142 142 way|z19-[highway=footway][footway=crossing] { 143 width: 1;143 width: 2; 144 144 color: #00aa80; 145 145 dashes: none; … … 164 164 way|z19-[highway=footway][footway=island], 165 165 way|z19-[highway=footway][footway=traffic_island] { 166 width: 1;166 width: 2; 167 167 color: #00aa80; 168 168 } … … 195 195 } 196 196 197 /* 198 Make ways with no pedestrian access translucent. This makes it easier to focus on the ways that do permit pedestrians, 199 and shows whether or not pedestrian access is allowed at a glance. 200 */ 201 202 way[foot=yes], 203 way[foot=permissive], 204 way[foot=designated] { 205 /* This overrides access=* below. */ 206 set foot-has-access; 207 } 208 209 way[access=no]!.foot-has-access, 210 way[access=private]!.foot-has-access, 197 211 way[foot=use_sidepath], 198 212 way[foot=private], … … 202 216 } 203 217 218 way[access=no]!.foot-has-access::core_access, 219 way[access=private]!.foot-has-access::core_access, 220 way[foot=use_sidepath]::core_access, 221 way[foot=private]::core_access, 222 way[foot=no]::core_access { 223 /* ::core_access is the layer used for access restrictions in JOSM default. */ 224 opacity: 0.3; 225 } 226 204 227 }}}
