SelectionIndicator.css 472 B

1234567891011121314151617181920
  1. /* packages/widgets/Source/SelectionIndicator/SelectionIndicator.css */
  2. .cesium-selection-wrapper {
  3. position: absolute;
  4. width: 160px;
  5. height: 160px;
  6. pointer-events: none;
  7. visibility: hidden;
  8. opacity: 0;
  9. transition: visibility 0s 0.2s, opacity 0.2s ease-in;
  10. }
  11. .cesium-selection-wrapper-visible {
  12. visibility: visible;
  13. opacity: 1;
  14. transition: opacity 0.2s ease-out;
  15. }
  16. .cesium-selection-wrapper svg {
  17. fill: #2e2;
  18. stroke: #000;
  19. stroke-width: 1.1px;
  20. }