| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- @import '../variables.scss';
- $migrationHeaderBg: #D9DCE3;
- .root {
- .loadingWrapper {
- padding-top: 10%;
- }
- }
- .migrationHead {
- background-color: $migrationHeaderBg;
- margin-top: 64px;
- padding: 16px;
- .migrationTypeImg {
- margin-right: 64px;
- float: left;
- }
- .migrationInfo {
- float: left;
- width: 425px;
- .migrationStatus {
- width: 80px;
- height: 16px;
- font-weight: 500;
- font-size: 9px;
- border-radius: 4px;
- color: #FFF;
- display: inline-block;
- text-align: center;
- margin-top: 1px;
- &:global(.PAUSED) {
- background-color: $gray;
- }
- }
- .migrationType {
- width: 80px;
- height: 13px;
- padding-top: 1px;
- font-weight: 500;
- font-size: 9px;
- background-color: #FFF;
- border-radius: 4px;
- text-align: center;
- display: inline-block;
- text-transform: uppercase;
- border: 1px solid $blue;
- color: $blue;
- margin-right: 16px;
- &:global(.replica) {
- border: 1px solid $color-replica;
- color: $color-replica;
- }
- }
- }
- .migrationActions {
- float: right;
- margin-top: 16px;
- :global(.Dropdown-root) {
- width: 160px;
- float: left;
- }
- button {
- margin-left: 16px;
- }
- }
- &:after {
- clear: both;
- content: " ";
- display: block;
- height: 0;
- }
- }
- .container {
- margin: 0 auto;
- padding: 0;
- max-width: $narrow-content-width;
- }
- .sidebar {
- padding-top: 32px;
- width: 128px;
- float: left;
- a {
- display: block;
- /* Tasks: */
- font-weight: $weight-regular;
- font-size: 16px;
- color: $gray;
- text-decoration: none;
- margin-bottom: 16px;
- &:global(.active) {
- color: $blue;
- }
- }
- }
- .content {
- padding-top: 32px;
- float: left;
- width: 800px;
- }
|