source: josm/trunk/styles_nodist/potlatch2/prelude.css@ 7068

Last change on this file since 7068 was 3900, checked in by bastiK, 13 years ago

improve potlatch 2 style

File size: 1.4 KB
Line 
1/*
2
3 Potlatch 2 core stylesheet
4
5 This stylesheet should contain commonly used features and only the most essential extra attributes
6 (e.g. oneway). It needs to remain simple (not too many nested styles or dash-type decorations) in
7 order not to kill performance on slower systems and those with a less effective Flash Player (i.e.
8 Linux).
9
10 It is expected that experienced mappers will switch between this and other stylesheets as required.
11
12*/
13
14meta {
15 title: "Potlatch 2";
16 icon: "dialogs/mappaint/pl2_small.png";
17}
18
19canvas {
20 background-color: #ffffea;
21}
22
23node, area {
24 text-color: black;
25}
26
27relation[restriction=no_left_turn] {
28 icon-image: "vehicle/restriction/turn_restrictions/no_left_turn.png";
29}
30relation[restriction=no_right_turn] {
31 icon-image: "vehicle/restriction/turn_restrictions/no_right_turn.png";
32}
33relation[restriction=no_straight_on] {
34 icon-image: "vehicle/restriction/turn_restrictions/no_straight_on.png";
35}
36relation[restriction=no_u_turn] {
37 icon-image: "vehicle/restriction/turn_restrictions/no_u_turn.png";
38}
39relation[restriction=only_left_turn] {
40 icon-image: "vehicle/restriction/turn_restrictions/only_left_turn.png";
41}
42relation[restriction=only_right_turn] {
43 icon-image: "vehicle/restriction/turn_restrictions/only_right_turn.png";
44}
45relation[restriction=only_straight_on] {
46 icon-image: "vehicle/restriction/turn_restrictions/only_straight_on.png";
47}
48
Note: See TracBrowser for help on using the repository browser.