2018-10-17 13:03:48 +00:00
|
|
|
$core-progress-bar-height: 8px !default;
|
2017-12-11 13:59:44 +00:00
|
|
|
|
2018-08-31 08:26:37 +00:00
|
|
|
ion-app.app-root core-progress-bar {
|
2018-08-29 14:42:12 +00:00
|
|
|
@include padding(null, 55px, null, null);
|
2017-12-11 13:59:44 +00:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
2017-12-29 17:05:52 +00:00
|
|
|
@extend .clearfix;
|
2017-12-11 13:59:44 +00:00
|
|
|
|
2017-12-29 17:05:52 +00:00
|
|
|
.core-progress-text {
|
2018-08-29 14:42:12 +00:00
|
|
|
@include margin(null, null, null, 10px);
|
2018-10-04 09:55:24 +00:00
|
|
|
line-height: 40px;
|
2017-12-29 17:05:52 +00:00
|
|
|
font-size: 1.4rem;
|
2017-12-11 13:59:44 +00:00
|
|
|
color: $gray-darker;
|
2018-10-17 13:03:48 +00:00
|
|
|
@include position(-16px, 10px, null, null);
|
2017-12-11 13:59:44 +00:00
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
progress {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
2017-12-29 17:05:52 +00:00
|
|
|
height: $core-progress-bar-height;
|
2018-10-17 13:03:48 +00:00
|
|
|
margin: 16px 0;
|
2017-12-11 13:59:44 +00:00
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.progress-bar-fallback,
|
|
|
|
&[value]::-webkit-progress-bar {
|
2018-10-04 09:55:24 +00:00
|
|
|
background-color: $gray-lighter;
|
2018-10-17 13:03:48 +00:00
|
|
|
border-radius: 0;
|
|
|
|
border:0;
|
2018-10-04 09:55:24 +00:00
|
|
|
box-shadow: none;
|
2017-12-11 13:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.progress-bar-fallback span,
|
|
|
|
&[value]::-webkit-progress-value {
|
2018-07-02 09:10:03 +00:00
|
|
|
background-color: $core-progressbar-color;
|
2018-10-17 13:03:48 +00:00
|
|
|
border-radius: 0;
|
2017-12-11 13:59:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.progress-bar-fallback {
|
|
|
|
width: 100%;
|
2017-12-29 17:05:52 +00:00
|
|
|
height: $core-progress-bar-height;
|
2017-12-11 13:59:44 +00:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
span {
|
2017-12-29 17:05:52 +00:00
|
|
|
height: $core-progress-bar-height;
|
2017-12-11 13:59:44 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|