42 lines
993 B
CSS
42 lines
993 B
CSS
|
|
/**
|
||
|
|
* @Author: zhangtq 2452618307@qq.com
|
||
|
|
* @Date: 2024-11-18 13:33:30
|
||
|
|
* @LastEditors: zhangtq 2452618307@qq.com
|
||
|
|
* @LastEditTime: 2024-11-18 13:34:47
|
||
|
|
* @FilePath: static/js/qx/utility/easyui/themes/material/progressbar.css
|
||
|
|
* @Description: 这是默认设置,可以在设置》工具》File Description中进行配置
|
||
|
|
*/
|
||
|
|
.progressbar {
|
||
|
|
border-width: 1px;
|
||
|
|
border-style: solid;
|
||
|
|
-moz-border-radius: 4px 4px 4px 4px;
|
||
|
|
-webkit-border-radius: 4px 4px 4px 4px;
|
||
|
|
border-radius: 4px 4px 4px 4px;
|
||
|
|
overflow: hidden;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.progressbar-text {
|
||
|
|
text-align: center;
|
||
|
|
position: absolute;
|
||
|
|
}
|
||
|
|
.progressbar-value {
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
width: 0;
|
||
|
|
-moz-border-radius: 4px 0 0 4px;
|
||
|
|
-webkit-border-radius: 4px 0 0 4px;
|
||
|
|
border-radius: 4px 0 0 4px;
|
||
|
|
}
|
||
|
|
.progressbar {
|
||
|
|
border-color: #ddd;
|
||
|
|
}
|
||
|
|
.progressbar-text {
|
||
|
|
color: #404040;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.progressbar-value,
|
||
|
|
.progressbar-value .progressbar-text {
|
||
|
|
background-color: #00bbee;
|
||
|
|
color: #fff;
|
||
|
|
}
|