You are here

gmap.css in GMap Module 6.2

Same filename and directory in other branches
  1. 5 gmap.css
  2. 6 gmap.css
  3. 7.2 gmap.css
  4. 7 gmap.css

GMap CSS rules.

File

gmap.css
View source
  1. /**
  2. * @file
  3. * GMap CSS rules.
  4. */
  5. .gmap-popup {
  6. }
  7. .gmap-tooltip {
  8. padding: 2px;
  9. margin: 0;
  10. border: solid black 1px;
  11. }
  12. .gmap-left {
  13. float: left;
  14. }
  15. .gmap-center {
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. .gmap-right {
  20. float: right;
  21. }
  22. .gmap-map {
  23. /* Don't let long copyright texts stick out the side of the map div. */
  24. overflow: hidden;
  25. }
  26. /* Clean up unwanted styling for google toolbar */
  27. .gmap-map .gmnoprint table {
  28. margin: 0;
  29. }
  30. .gmap-map .gmnoprint tbody {
  31. border-top: none;
  32. }
  33. .gmap-custom-control-button {
  34. position: absolute;
  35. background-color: white;
  36. border: 1px solid black;
  37. text-align: center;
  38. width: 5em;
  39. cursor: pointer;
  40. }
  41. .gmap-custom-control-button div {
  42. font-size: 12px;
  43. border-width: 1px;
  44. border-style: solid;
  45. border-color: white rgb(176, 176, 176) rgb(176, 176, 176) white;
  46. }
  47. .gmap-custom-control-button-disabled {
  48. color: grey;
  49. }
  50. /* Fix grey map bug in Firefox when img { max-width: 100% } is set */
  51. .gmap img,
  52. .view-gmap img,
  53. .openlayers-map img,
  54. .YMaps img,
  55. #getlocations_map_canvas img {
  56. max-width: none !important;
  57. }