mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-25 20:26:36 +00:00
90 lines
1.8 KiB
SCSS
90 lines
1.8 KiB
SCSS
/*
|
|
* Copyright 2016 balena.io
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
|
|
img[disabled] {
|
|
opacity: $disabled-opacity;
|
|
}
|
|
|
|
.page-main {
|
|
flex: 1;
|
|
align-self: center;
|
|
margin: 20px;
|
|
}
|
|
|
|
.page-main > .col-xs {
|
|
height: 165px;
|
|
}
|
|
|
|
.page-main .relative {
|
|
position: relative;
|
|
}
|
|
|
|
.page-main .glyphicon {
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
.page-main .step-name {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 39px;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
color: $palette-theme-primary-foreground;
|
|
}
|
|
|
|
.target-status-wrap {
|
|
display: flex;
|
|
position: absolute;
|
|
top: 62px;
|
|
flex-direction: column;
|
|
margin: 8px 28px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.target-status-line {
|
|
display: flex;
|
|
align-items: baseline;
|
|
|
|
> .target-status-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&.target-status-successful > .target-status-dot {
|
|
background-color: $palette-theme-success-background;
|
|
}
|
|
&.target-status-failed > .target-status-dot {
|
|
background-color: $palette-theme-danger-background;
|
|
}
|
|
|
|
> .target-status-quantity {
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
> .target-status-message {
|
|
color: gray;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.space-vertical-large {
|
|
position: relative;
|
|
}
|