@fluent-windows/core
Version:
React components that inspired by Microsoft's Fluent Design System.
44 lines (41 loc) • 980 B
JavaScript
const root = theme => ({
position: 'relative',
overflow: 'hidden',
height: 4,
backgroundColor: theme.colors.standard.default
});
const progress = theme => ({
width: '100%',
transformOrigin: 'left',
position: 'absolute',
left: 0,
top: 0,
bottom: 0,
// isIndeterminate false
background: theme.colors.primary.default,
transition: 'transform 0.43s linear',
// keyframes
'@global': {
'@keyframes indeterminateProgress': {
from: {
transform: 'translateX(-130%)'
},
to: {
transform: 'translateX(100%)'
}
}
}
});
const isIndeterminate = theme => ({
background: `linear-gradient(to right,
${theme.colors.standard.default} 0%,
${theme.colors.primary.default} 50%,
${theme.colors.standard.default} 100%
)`,
animation: '$indeterminateProgress 2.6s infinite'
});
export const styles = theme => ({
root: root(theme),
progress: progress(theme),
isIndeterminate: isIndeterminate(theme)
});