2017-10-15 08:36:44 +08:00
|
|
|
@import 'ui-variables';
|
|
|
|
@import 'ui-mixins';
|
2016-03-18 00:50:30 +08:00
|
|
|
|
|
|
|
@keyframes sending-progress-move {
|
|
|
|
0% {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 50px 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.draft-list {
|
|
|
|
.sending {
|
|
|
|
background-color: @background-primary;
|
|
|
|
&:hover {
|
|
|
|
background-color: @background-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sending-progress {
|
|
|
|
display: block;
|
|
|
|
height: 7px;
|
|
|
|
align-self: center;
|
|
|
|
background-color: @background-primary;
|
2017-10-15 08:36:44 +08:00
|
|
|
border-bottom: 1px solid @border-color-divider;
|
2016-03-18 00:50:30 +08:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.filled {
|
|
|
|
display: block;
|
|
|
|
background: @component-active-color;
|
2017-10-15 08:36:44 +08:00
|
|
|
height: 6px;
|
2016-03-18 00:50:30 +08:00
|
|
|
width: 0; //overridden by style
|
|
|
|
transition: width 1000ms linear;
|
|
|
|
}
|
|
|
|
.indeterminate {
|
|
|
|
display: block;
|
|
|
|
background: @component-active-color;
|
2017-10-15 08:36:44 +08:00
|
|
|
height: 6px;
|
2016-03-18 00:50:30 +08:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.indeterminate:after {
|
2017-10-15 08:36:44 +08:00
|
|
|
content: '';
|
2016-03-18 00:50:30 +08:00
|
|
|
position: absolute;
|
2017-10-15 08:36:44 +08:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2016-03-18 00:50:30 +08:00
|
|
|
background-image: linear-gradient(
|
|
|
|
-45deg,
|
2017-10-15 08:36:44 +08:00
|
|
|
rgba(255, 255, 255, 0.2) 25%,
|
2016-03-18 00:50:30 +08:00
|
|
|
transparent 25%,
|
|
|
|
transparent 50%,
|
2017-10-15 08:36:44 +08:00
|
|
|
rgba(255, 255, 255, 0.2) 50%,
|
|
|
|
rgba(255, 255, 255, 0.2) 75%,
|
2016-03-18 00:50:30 +08:00
|
|
|
transparent 75%,
|
|
|
|
transparent
|
|
|
|
);
|
|
|
|
background-size: 50px 50px;
|
|
|
|
animation: sending-progress-move 2s linear infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|