2023-01-03 11:55:46 -08:00
|
|
|
// Copyright 2017 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2016-03-18 17:59:54 -07:00
|
|
|
@keyframes progress-bar-stripes {
|
|
|
|
from {
|
|
|
|
background-position: 40px 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.progress-bar-striped {
|
2018-05-04 16:07:52 -04:00
|
|
|
background-image: linear-gradient(
|
|
|
|
45deg,
|
2019-10-04 11:06:17 -07:00
|
|
|
$color-white-alpha-60 25%,
|
2018-05-04 16:07:52 -04:00
|
|
|
transparent 25%,
|
|
|
|
transparent 50%,
|
2019-10-04 11:06:17 -07:00
|
|
|
$color-white-alpha-60 50%,
|
|
|
|
$color-white-alpha-60 75%,
|
2018-05-04 16:07:52 -04:00
|
|
|
transparent 75%,
|
|
|
|
transparent
|
|
|
|
);
|
|
|
|
background-size: 40px 40px;
|
2016-03-18 17:59:54 -07:00
|
|
|
}
|
|
|
|
.progress-bar-striped {
|
2018-05-04 16:07:52 -04:00
|
|
|
background-image: linear-gradient(
|
|
|
|
45deg,
|
2019-10-04 11:06:17 -07:00
|
|
|
$color-white-alpha-60 25%,
|
2018-05-04 16:07:52 -04:00
|
|
|
transparent 25%,
|
|
|
|
transparent 50%,
|
2019-10-04 11:06:17 -07:00
|
|
|
$color-white-alpha-60 50%,
|
|
|
|
$color-white-alpha-60 75%,
|
2018-05-04 16:07:52 -04:00
|
|
|
transparent 75%,
|
|
|
|
transparent
|
|
|
|
);
|
2016-03-18 17:59:54 -07:00
|
|
|
}
|
|
|
|
.progress-bar.active {
|
2018-05-04 16:07:52 -04:00
|
|
|
animation: progress-bar-stripes 2s linear infinite;
|
2016-03-18 17:59:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.bar-container {
|
2019-10-04 11:06:17 -07:00
|
|
|
background: $color-ios-blue-tint;
|
2016-03-18 17:59:54 -07:00
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|