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 597B

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