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

Last change on this file since 14061 was 10706, checked in by Klumbumbus, 8 years ago

see #13217 - replace about 166 png icons by svg from https://trac.openstreetmap.org/browser/subversion/applications/share/map-icons/svg reworked most of them (white background or halo, resizing, pixel alignement), draw a few new svg icons from png derived; remove duplicate icons; reorder icons; adapt internal preset and mappaint styles

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 fill-color: #ffffea;
21}
22
23node, area {
24 text-color: black;
25}
26
27relation[restriction=no_left_turn] {
28 icon-image: "presets/vehicle/restriction/turn_restrictions/no_left_turn.svg";
29}
30relation[restriction=no_right_turn] {
31 icon-image: "presets/vehicle/restriction/turn_restrictions/no_right_turn.svg";
32}
33relation[restriction=no_straight_on] {
34 icon-image: "presets/vehicle/restriction/turn_restrictions/no_straight_on.svg";
35}
36relation[restriction=no_u_turn] {
37 icon-image: "presets/vehicle/restriction/turn_restrictions/no_u_turn.svg";
38}
39relation[restriction=only_left_turn] {
40 icon-image: "presets/vehicle/restriction/turn_restrictions/only_left_turn.svg";
41}
42relation[restriction=only_right_turn] {
43 icon-image: "presets/vehicle/restriction/turn_restrictions/only_right_turn.svg";
44}
45relation[restriction=only_straight_on] {
46 icon-image: "presets/vehicle/restriction/turn_restrictions/only_straight_on.svg";
47}
48
Note: See TracBrowser for help on using the repository browser.