2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2010-07-14 19:55:54 +00:00
|
|
|
* jQuery UI Progressbar @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2010-07-14 19:55:54 +00:00
|
|
|
*
|
2013-01-10 13:52:20 +00:00
|
|
|
* Copyright 2013 jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-14 19:55:54 +00:00
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Progressbar#theming
|
|
|
|
*/
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-progressbar {
|
2012-03-27 02:51:16 +00:00
|
|
|
height: 2em;
|
2012-11-20 00:29:01 +00:00
|
|
|
text-align: left;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.ui-progressbar .ui-progressbar-value {
|
|
|
|
margin: -1px;
|
2012-11-27 03:10:50 +00:00
|
|
|
height: 100%;
|
2012-03-27 02:51:16 +00:00
|
|
|
}
|
2012-12-12 16:21:49 +00:00
|
|
|
.ui-progressbar .ui-progressbar-overlay {
|
2012-03-27 02:51:16 +00:00
|
|
|
background: url("images/animated-overlay.gif");
|
2012-11-20 00:29:01 +00:00
|
|
|
height: 100%;
|
2012-03-27 02:51:16 +00:00
|
|
|
filter: alpha(opacity=25);
|
|
|
|
opacity: 0.25;
|
|
|
|
}
|
2012-12-12 16:21:49 +00:00
|
|
|
.ui-progressbar-indeterminate .ui-progressbar-value {
|
2012-03-27 02:51:16 +00:00
|
|
|
background-image: none;
|
2012-11-20 00:29:01 +00:00
|
|
|
}
|