mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
88a46e6dd4
* Fix prettier version to 1.16.4
170 lines
3.3 KiB
SCSS
170 lines
3.3 KiB
SCSS
// Colors
|
|
$progress-color-dark: $panel-bg !default;
|
|
$progress-color: $panel-bg !default;
|
|
$progress-color-light: $panel-bg !default;
|
|
$progress-color-grey-light: $body-bg !default;
|
|
$progress-color-shadow: $panel-border !default;
|
|
$progress-color-grey: $iconContainerBackground !default;
|
|
$progress-color-grey-dark: $iconContainerBackground !default;
|
|
|
|
// Sizing
|
|
$marker-size: 60px !default;
|
|
$marker-size-half: ($marker-size / 2);
|
|
$path-height: 2px !default;
|
|
$path-position: $marker-size-half - ($path-height / 2);
|
|
|
|
.dashlist-cta-close-btn {
|
|
color: $text-color-weak;
|
|
float: right;
|
|
padding: 0;
|
|
margin: 0 2px 0 0;
|
|
background-color: transparent;
|
|
border: none;
|
|
|
|
i {
|
|
font-size: 80%;
|
|
}
|
|
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
// Container element
|
|
.progress-tracker {
|
|
display: flex;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
// Step container that creates lines between steps
|
|
.progress-step {
|
|
text-align: center;
|
|
position: relative;
|
|
flex: 1 1 0%;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: $text-color-weak;
|
|
|
|
// For a flexbox bug in firefox that wont allow the text overflow on the text
|
|
min-width: $marker-size;
|
|
|
|
&::after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: $path-position;
|
|
bottom: $path-position;
|
|
right: -$marker-size-half;
|
|
width: 100%;
|
|
height: $path-height;
|
|
border-top: 2px solid $progress-color-grey-light;
|
|
border-bottom: $progress-color-shadow;
|
|
background: $progress-color-grey-light;
|
|
}
|
|
|
|
&:first-child {
|
|
&::after {
|
|
left: 50%;
|
|
}
|
|
}
|
|
&:last-child {
|
|
&::after {
|
|
right: 50%;
|
|
}
|
|
}
|
|
|
|
// Active state
|
|
&.active {
|
|
.progress-step-cta {
|
|
display: inline-block;
|
|
}
|
|
.progress-title {
|
|
font-weight: 400;
|
|
}
|
|
.progress-text {
|
|
display: none;
|
|
}
|
|
.progress-marker {
|
|
.icon-gf {
|
|
color: $brand-primary;
|
|
-webkit-text-fill-color: transparent;
|
|
background: $brand-gradient;
|
|
-webkit-background-clip: text;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.completed {
|
|
.progress-marker {
|
|
color: $online;
|
|
|
|
// change icon to check
|
|
.icon-gf::before {
|
|
content: '\e604';
|
|
}
|
|
}
|
|
.progress-text {
|
|
text-decoration: line-through;
|
|
}
|
|
&::after {
|
|
background: $progress-color-grey-light;
|
|
}
|
|
}
|
|
}
|
|
|
|
.progress-step-cta {
|
|
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-sm, $btn-border-radius);
|
|
@include buttonBackground($btn-primary-bg, $btn-primary-bg-hl);
|
|
display: none;
|
|
}
|
|
|
|
// Progress marker
|
|
.progress-marker {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
width: $marker-size;
|
|
height: $marker-size;
|
|
padding-bottom: 2px; // To align text within the marker
|
|
z-index: 20;
|
|
background-color: $panel-bg;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: $spacer;
|
|
color: $text-color-weak;
|
|
font-size: 35px;
|
|
vertical-align: sub;
|
|
}
|
|
|
|
// Progress text
|
|
.progress-text {
|
|
display: block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
color: $text-muted;
|
|
}
|
|
|
|
.progress-marker {
|
|
color: $text-color-weak;
|
|
text-decoration: none;
|
|
font-size: 35px;
|
|
vertical-align: sub;
|
|
}
|
|
|
|
a.progress-link {
|
|
&:hover {
|
|
.progress-marker,
|
|
.progress-text {
|
|
color: $link-hover-color;
|
|
}
|
|
&:hover .progress-marker.completed {
|
|
color: $online;
|
|
}
|
|
}
|
|
}
|