You are here

geolocation_googlemaps.css in Geolocation Field 7

Same filename and directory in other branches
  1. 6 modules/geolocation_googlemaps/geolocation_googlemaps.css

CSS for Goole Map widget of Geolocation field.

File

modules/geolocation_googlemaps/geolocation_googlemaps.css
View source
  1. /**
  2. * @file
  3. * CSS for Goole Map widget of Geolocation field.
  4. */
  5. .geolocation-address-geocode,
  6. .geolocation-client-location {
  7. background-color:#96BC44;
  8. color:#FFF;
  9. padding:2px 10px 3px 10px;
  10. cursor:pointer;
  11. margin:2px 0 0 4px;
  12. }
  13. .geolocation-address-geocode-suggestions {
  14. margin: 15px 0 0 0;
  15. }
  16. .field-widget-geolocation-googlemap {
  17. /* Clear floated elements */
  18. overflow: auto;
  19. }
  20. .geolocation-address-geocode:hover,
  21. .geolocation-client-location:hover {
  22. background-color:#999;
  23. }
  24. .geolocation-help,
  25. .geolocation-map {
  26. margin: 1em 0;
  27. }
  28. .geolocation-lat-item,
  29. .geolocation-lng-item {
  30. float: left;
  31. margin-right: 1em;
  32. }
  33. .geolocation-lat,
  34. .geolocation-lng {
  35. display: none;
  36. }
  37. .geolocation-lng-item label,
  38. .geolocation-lat-item label {
  39. display: inline;
  40. }
  41. .geolocation-lng .form-disabled input.form-text,
  42. .geolocation-lat .form-disabled input.form-text {
  43. background: transparent;
  44. border: 0;
  45. outline: 0;
  46. }
  47. .geolocation-address .form-type-textfield {
  48. float: left;
  49. }
  50. .geolocation-remove {
  51. float: right;
  52. }
  53. .geolocation-remove span {
  54. background-color: #CC0000;
  55. color: #FFF;
  56. padding: 2px 10px 3px 10px;
  57. cursor: pointer;
  58. margin: 2px 0 0 4px;
  59. }
  60. .geolocation-remove span:hover {
  61. background-color: #999;
  62. }