| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| @import '../../variables'; |
| |
| .sql-data-loader-view { |
| height: 100%; |
| width: 100%; |
| position: relative; |
| |
| .title-frame, |
| .resume-step, |
| .loading-step, |
| .error-step { |
| width: 100%; |
| height: 100%; |
| } |
| |
| .resume-step { |
| text-align: center; |
| |
| .spec-card { |
| display: inline-block; |
| vertical-align: top; |
| position: relative; |
| width: 440px; |
| height: 120px; |
| margin: 10px; |
| text-align: left; |
| |
| .spec-card-icon { |
| position: absolute; |
| top: 26px; |
| left: 20px; |
| |
| svg { |
| width: 20px; |
| height: 20px; |
| } |
| } |
| |
| .spec-card-header { |
| font-size: 16px; |
| font-weight: 600; |
| line-height: 32px; |
| padding-left: 36px; |
| |
| .spec-card-caption { |
| font-size: 13px; |
| line-height: 20px; |
| font-weight: 400; |
| color: $gray4; |
| } |
| } |
| } |
| } |
| |
| .loading-step { |
| position: relative; |
| padding: 20px; |
| |
| .execution-stages-pane { |
| position: absolute; |
| top: 160px; |
| bottom: 0; |
| right: 20px; |
| left: 20px; |
| } |
| } |
| } |