Changes between Initial Version and Version 1 of Styles/DestinationSignRelation


Ignore:
Timestamp:
2016-01-12T17:12:53+01:00 (10 years ago)
Author:
Klumbumbus
Comment:

copied from https://josm.openstreetmap.de/attachment/wiki/StylesSource/signs.mapcss and adjusted a bit (formatting, autorevision)

Legend:

Unmodified
Added
Removed
Modified
  • Styles/DestinationSignRelation

    v1 v1  
     1=destination_sign Relation=
     2
     3Highlight relation rols from, sign and to
     4
     5{{{
     6#!style type="mapcss"
     7
     8meta {
     9    title: "destination_sign Relation";
     10    autor: mdv;
     11    version: "1.[[revision]]_[[date]]";
     12    watch-modified: true;
     13    description: "Highlight relation rols from, sign and to";
     14}
     15
     16relation[type=destination_sign] >[role="to"] node { 
     17    icon-image: https://wiki.openstreetmap.org/w/images/6/65/To_sign.png;
     18}
     19
     20relation[type=destination_sign] >[role="from"] node {
     21    icon-image: https://wiki.openstreetmap.org/w/images/7/7d/From_sign.png;
     22}
     23
     24relation[type=destination_sign] >[role="sign"] node { 
     25    icon-image: https://wiki.openstreetmap.org/w/images/5/50/Sign_sign.png;
     26    text: "destination"
     27}
     28}}}