You are here

control.layers.minimap.css in Get Locations 7

.leaflet-control-layers-expanded.leaflet-control-layers-minimap {
	width: 240px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);

	padding: 0;
	border: 4px solid rgba(255, 255, 255, 0.8);
	border-radius: 5px;
	overflow-x: hidden;
}
.leaflet-minimap-container {
	margin-bottom: 2px;
	position: relative;
	display: block;
	height: 110px;
}
.leaflet-minimap-container .leaflet-minimap-label {
	position: absolute;
	display: block;

	height: 22px;
	bottom: 0;
	left: 0;
	padding: 2px 6px 2px 2px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	white-space: nowrap;
	z-index: 1000;
}
.leaflet-minimap-container .leaflet-minimap-label .leaflet-control-layers-selector {
	top: 3px;
}
.leaflet-minimap {
	width: 100%;
	height: 100%;
}
.leaflet-minimap-container.leaflet-minimap-hidden {
	display: none;
}

File

modules/getlocations_leaflet/plugins/minimap/control.layers.minimap.css
View source
  1. .leaflet-control-layers-expanded.leaflet-control-layers-minimap {
  2. width: 240px;
  3. background: rgba(255, 255, 255, 0.85);
  4. box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  5. padding: 0;
  6. border: 4px solid rgba(255, 255, 255, 0.8);
  7. border-radius: 5px;
  8. overflow-x: hidden;
  9. }
  10. .leaflet-minimap-container {
  11. margin-bottom: 2px;
  12. position: relative;
  13. display: block;
  14. height: 110px;
  15. }
  16. .leaflet-minimap-container .leaflet-minimap-label {
  17. position: absolute;
  18. display: block;
  19. height: 22px;
  20. bottom: 0;
  21. left: 0;
  22. padding: 2px 6px 2px 2px;
  23. background-color: rgba(0, 0, 0, 0.7);
  24. color: white;
  25. white-space: nowrap;
  26. z-index: 1000;
  27. }
  28. .leaflet-minimap-container .leaflet-minimap-label .leaflet-control-layers-selector {
  29. top: 3px;
  30. }
  31. .leaflet-minimap {
  32. width: 100%;
  33. height: 100%;
  34. }
  35. .leaflet-minimap-container.leaflet-minimap-hidden {
  36. display: none;
  37. }