source: josm/trunk/test/data/renderer/area-text/style.mapcss@ 15456

Last change on this file since 15456 was 12477, checked in by michael2402, 7 years ago

See #15006: Fix sign issue (wrong direction) for text-offset-y on ways/areas

File size: 336 bytes
RevLine 
[11727]1canvas {
2 default-points: false;
3 default-lines: false;
4}
5
6area[test] {
7 text: "name";
8 text-color: blue;
9 text-position: center;
[11808]10 font-family: "DejaVu Sans";
[11727]11 color: red;
12 width: 1;
13}
14
[12477]15area[test=C] {
16 text-offset-x: 5;
17 text-offset-y: -10.5;
18}
19
20area[test=D] {
21 text-offset: list(10.2, 20.5);
22}
23
[11762]24area[test=H] {
25 text: eval("");
[11802]26}
Note: See TracBrowser for help on using the repository browser.