Changes between Version 253 and Version 254 of Help/Styles/MapCSSImplementation
- Timestamp:
- 2023-03-04T09:59:16+01:00 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Help/Styles/MapCSSImplementation
v253 v254 724 724 way::A { a; } 725 725 way::B { b; } 726 way::* { c; } 726 way::* { c; } /* overrides all existing subparts */ 727 727 }}} 728 728 is equivalent to … … 731 731 way::A { a; } 732 732 way::B { b; } 733 way::A { c; } 734 way::B { c; } 733 way::A { c; } /* overrides a with c all existing subparts */ 734 way::B { c; } /* overrides b with c all existing subparts */ 735 735 }}} 736 736 And it initializes new subparts. In other words: