1
0

rstudio_leaflet.css 804 B

1234567891011121314151617181920212223242526272829303132
  1. .leaflet-tooltip.leaflet-tooltip-text-only,
  2. .leaflet-tooltip.leaflet-tooltip-text-only:before,
  3. .leaflet-tooltip.leaflet-tooltip-text-only:after {
  4. background: none;
  5. border: none;
  6. box-shadow: none;
  7. }
  8. .leaflet-tooltip.leaflet-tooltip-text-only.leaflet-tooltip-left {
  9. margin-left: 5px;
  10. }
  11. .leaflet-tooltip.leaflet-tooltip-text-only.leaflet-tooltip-right {
  12. margin-left: -5px;
  13. }
  14. .leaflet-tooltip:after {
  15. border-right: 6px solid transparent;
  16. /* right: -16px; */
  17. }
  18. .leaflet-popup-pane .leaflet-popup-tip-container {
  19. /* when the tooltip container is clicked, it is closed */
  20. pointer-events: all;
  21. /* tooltips should display the "hand" icon, just like .leaflet-interactive*/
  22. cursor: pointer;
  23. }
  24. /* have the widget be displayed in the right 'layer' */
  25. .leaflet-map-pane {
  26. z-index: auto;
  27. }