MapLocationNamesLayer.uss 414 B

123456789
  1. /* Map Location Names Layer Control */
  2. .map-location-names-layer {
  3. z-index: -1; /* Place behind all other UI elements */
  4. pointer-events: none; /* CSS equivalent of PickingMode.Ignore */
  5. visibility: visible; /* Ensure container is visible */
  6. display: flex; /* Ensure container can contain children */
  7. overflow: visible; /* Allow children to be visible even if they extend beyond container */
  8. }