Changes between Version 253 and Version 254 of Help/Styles/MapCSSImplementation


Ignore:
Timestamp:
2023-03-04T09:59:16+01:00 (2 years ago)
Author:
mikeho
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Help/Styles/MapCSSImplementation

    v253 v254  
    724724way::A { a; }
    725725way::B { b; }
    726 way::* { c; }
     726way::* { c; }  /* overrides all existing subparts */
    727727}}}
    728728is equivalent to
     
    731731way::A { a; }
    732732way::B { b; }
    733 way::A { c; }
    734 way::B { c; }
     733way::A { c; } /* overrides a with c all existing subparts */
     734way::B { c; } /* overrides b with c all existing subparts */
    735735}}}
    736736And it initializes new subparts. In other words: