Application.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. html,
  2. body {
  3. height: 100%;
  4. margin: 0;
  5. }
  6. body.launching {
  7. @include background-size(cover);
  8. background-color: $auth-background-color;
  9. background-image: $auth-background-image;
  10. background-position: center;
  11. &::before {
  12. @include animation(rotate-animation 1s linear infinite);
  13. @include transform-origin(50% 50%);
  14. @include background-size(cover);
  15. background-image: url(get-resource-path('images/loading.png'));
  16. background-position: center;
  17. content: '';
  18. position: absolute;
  19. margin-top: -15px;
  20. margin-left: -15px;
  21. top: 50%;
  22. left: 50%;
  23. width: 41px;
  24. height: 41px;
  25. }
  26. }
  27. @mixin btn-border($background-color) {
  28. background-color: $background-color;
  29. border-color: $background-color !important;
  30. .x-btn-inner-default-toolbar-small {
  31. color: $lightest-color;
  32. }
  33. &:hover {
  34. background-color: transparent;
  35. .x-btn-inner-default-toolbar-small,
  36. .x-btn-inner-default-small {
  37. color: $background-color;
  38. }
  39. .x-btn-icon-el-default-small,
  40. .x-btn-icon-el-default-toolbar-small {
  41. color: $background-color;
  42. }
  43. }
  44. }
  45. .x-menu-header {
  46. z-index: 0 !important;
  47. }
  48. .x-css-shadow {
  49. box-shadow: none !important;
  50. }
  51. .shadow {
  52. @include box-shadow(rgba(0, 0, 0, 0.2) 0 1px 2px);
  53. }
  54. .x-fa {
  55. display: inline-block;
  56. }
  57. .alignRight {
  58. float: right;
  59. }
  60. .boldFont {
  61. font-weight: bold;
  62. }