_LineOfSight.scss 804 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @mixin lineOfSight() {
  2. .esri-line-of-sight__container {
  3. position: relative;
  4. padding: $cap-spacing 0;
  5. overflow-y: auto;
  6. a {
  7. text-decoration: none;
  8. }
  9. }
  10. .esri-line-of-sight__hint {
  11. padding: 0 $side-spacing;
  12. animation: esri-fade-in 250ms ease-in-out;
  13. }
  14. .esri-line-of-sight__hint-text {
  15. margin: $cap-spacing 0;
  16. padding: 0;
  17. }
  18. .esri-line-of-sight__panel--error {
  19. color: $font-color--error;
  20. padding: 0 $side-spacing;
  21. animation: esri-fade-in 250ms ease-in-out;
  22. }
  23. .esri-line-of-sight__actions {
  24. display: flex;
  25. flex-flow: column;
  26. justify-content: center;
  27. padding: 0 $side-spacing;
  28. }
  29. .esri-line-of-sight__secondary-button {
  30. margin-bottom: 10px;
  31. }
  32. }
  33. @if $include_LineOfSight == true {
  34. @include lineOfSight();
  35. }