Няма описание

ol3.css 657B

1234567891011121314151617181920212223242526272829303132
  1. .switch-type {
  2. background-repeat: no-repeat;
  3. cursor: pointer;
  4. top: 0.5em;
  5. width: 22px;
  6. height: 20px;
  7. }
  8. .type-Point {
  9. background-image: url("../img/draw_point_off.svg");
  10. right: 5px;
  11. }
  12. .type-Point.type-active {
  13. background-image: url("../img/draw_point_on.svg");
  14. }
  15. .type-LineString {
  16. background-image: url("../img/draw_line_off.svg");
  17. right: 30px;
  18. }
  19. .type-LineString.type-active {
  20. background-image: url("../img/draw_line_on.svg");
  21. }
  22. .type-Polygon {
  23. background-image: url("../img/draw_polygon_off.svg");
  24. right: 55px;
  25. }
  26. .type-Polygon.type-active {
  27. background-image: url("../img/draw_polygon_on.svg");
  28. }