You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_reconnect-dialog.scss 688B

12345678910111213141516171819202122232425262728293031
  1. @mixin valo-reconnect-dialog {
  2. .v-reconnect-dialog {
  3. color: white;
  4. top: $v-layout-spacing-vertical;
  5. right: $v-layout-spacing-horizontal;
  6. max-width: 100%;
  7. border-radius: 0;
  8. @include box-shadow(0 0 20px 0 rgba(0,0,0,0.25));
  9. padding: round($v-unit-size/3) round($v-unit-size/2.5);
  10. background-color: #444;
  11. background-color: rgba(#444, .9);
  12. line-height: round($v-font-size * 1.4);
  13. text-align: center;
  14. .text {
  15. display: inline-block;
  16. padding-left: 10px;
  17. }
  18. .spinner {
  19. @include valo-spinner;
  20. display: none;
  21. vertical-align: middle;
  22. }
  23. &.active .spinner {
  24. display: inline-block;
  25. }
  26. }
  27. }