MigrationWizard.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. Copyright (C) 2017 Cloudbase Solutions SRL
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as
  5. published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. @import '../variables.scss';
  15. .root {
  16. padding-top: 150px;
  17. padding-bottom: 220px;
  18. height: 100%;
  19. box-sizing: border-box;
  20. flex-flow: column;
  21. display: flex;
  22. align-items: center;
  23. .stepTitle {
  24. font-weight: $weight-light;
  25. font-size: 32px;
  26. color: $blue;
  27. text-align: center;
  28. background-color: #FFF;
  29. width: $wizard-content-width;
  30. margin: 0 auto 60px;
  31. }
  32. }
  33. .container {
  34. flex: 1;
  35. margin-left: -32px;
  36. padding: 0px 0px 70px 32px;
  37. overflow-y: auto;
  38. overflow-x: hidden;
  39. width: $wizard-content-width;
  40. }
  41. .breadcrumbsWrapper {
  42. text-align: center;
  43. .breadcrumbs {
  44. span {
  45. display: inline-block;
  46. margin-right: 4px;
  47. color: $gray;
  48. &:after {
  49. content: " ";
  50. background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iN3B4IiBoZWlnaHQ9IjEzcHgiIHZpZXdCb3g9Ii0xIC0xIDcgMTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBvbHlsaW5lIGlkPSJQYWdlLTEtQ29weSIgc3Ryb2tlPSIjNjE2NzcwIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIuNTAwMDAwLCA1LjUwMDAwMCkgcm90YXRlKC0yNzAuMDAwMDAwKSB0cmFuc2xhdGUoLTIuNTAwMDAwLCAtNS41MDAwMDApICIgcG9pbnRzPSItMyA4IDIuNSAzIDggOCI+PC9wb2x5bGluZT48L3N2Zz4=');
  51. width: 7px;
  52. height: 13px;
  53. margin-left: 3px;
  54. margin-top: 3px;
  55. float:right;
  56. }
  57. &.selected {
  58. color: $blue;
  59. &:after {
  60. background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iN3B4IiBoZWlnaHQ9IjEzcHgiIHZpZXdCb3g9Ii0xIC0xIDcgMTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBvbHlsaW5lIGlkPSJQYWdlLTEtQ29weSIgc3Ryb2tlPSIjMDA1NkI4IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIuNTAwMDAwLCA1LjUwMDAwMCkgcm90YXRlKC0yNzAuMDAwMDAwKSB0cmFuc2xhdGUoLTIuNTAwMDAwLCAtNS41MDAwMDApICIgcG9pbnRzPSItMyA4IDIuNSAzIDggOCI+PC9wb2x5bGluZT48L3N2Zz4=');
  61. }
  62. }
  63. &:last-child {
  64. margin-right: 0;
  65. &:after {
  66. display: none;
  67. }
  68. }
  69. }
  70. }
  71. }
  72. .wizardControls {
  73. position: absolute;
  74. bottom: 50px;
  75. width: $wizard-content-width;
  76. button {
  77. width: 160px;
  78. &.prev {
  79. float: left;
  80. }
  81. &.next {
  82. float: right;
  83. }
  84. }
  85. .buttons {
  86. margin-bottom: 80px;
  87. &:after {
  88. content: " ";
  89. clear: both;
  90. display: block;
  91. height: 0;
  92. }
  93. }
  94. }
  95. .cloudSelection {
  96. padding-left: 85px;
  97. width: 448px;
  98. height: 32px;
  99. box-sizing: border-box;
  100. float: left;
  101. img {
  102. margin-right: 32px;
  103. &:last-child {
  104. margin-right: 0;
  105. }
  106. }
  107. }
  108. @media (max-height: 800px) {
  109. .root {
  110. padding-top: 88px;
  111. padding-bottom: 112px;
  112. .stepTitle {
  113. margin-bottom: 32px;
  114. }
  115. }
  116. .wizardControls {
  117. bottom: 16px;
  118. .buttons {
  119. margin-bottom: 32px;
  120. }
  121. }
  122. }