##// END OF EJS Templates
fixed NlsBundle locale package loading...
fixed NlsBundle locale package loading corrected DjxFragment params and return value fixed regression in DjxWidgetBase attach points processing fixed empty RenditionBase startup

File last commit:

r100:ff52224a63f0 v1.3
r112:2ccfaae984e9 v1.4.4 default
Show More
ProgressBar.css
38 lines | 726 B | text/css | LassoCssLexer
cin
Added test widgets to the playground
r100 .progress-bar * {
transition: all 0.5s;
}
.progress-bar {
transition: all 0.5s;
height: 1em;
line-height: 0;
font-size: 10px;
white-space: nowrap;
}
.progress-track {
background-color: #888;
height: 0.2em;
box-shadow: 0 0 0.5em 0 #0004;
width: 70%;
display: inline-block;
vertical-align: middle;
}
.progress-indicator {
width: 30%;
background-color: #0ae;
height: 100%;
display: inline-block;
vertical-align: middle;
box-shadow: 0 0.6em 1em -0.4em #000;
}
.progress-bar:hover .progress-indicator {
box-shadow: 0 1em 2em -0.4em #000;
}
.progress-bar:hover .progress-track {
background-color: #0ae;
box-shadow: 0 0 0.5em 0 #0ae;
}