You are here

openlayers.css in Openlayers 6.2

Same filename and directory in other branches
  1. 6 openlayers.css

OpenLayers Main CSS

This file holds the base CSS for the openlayers module

File

openlayers.css
View source
  1. /**
  2. * @file
  3. * OpenLayers Main CSS
  4. *
  5. * This file holds the base CSS for the openlayers module
  6. *
  7. * @ingroup openlayers
  8. */
  9. .openlayers-cck-feature-selected { border: 2px solid blue; }
  10. .openlayers-map {
  11. z-index:0;
  12. position:relative;
  13. }
  14. /**
  15. * prevent rtl translations from mirroring
  16. * vector layers
  17. */
  18. .openlayers-map .olLayerDiv {
  19. direction: ltr;
  20. }
  21. /**
  22. * Controls
  23. */
  24. .openlayers-controls {
  25. z-index:1000;
  26. }
  27. /**
  28. * This is a 'sensible default' for a weird decision
  29. * by OpenLayers to make 404 tiles pink.
  30. */
  31. .olImageLoadError {
  32. background: transparent;
  33. }

Related topics