78 lines
1.7 KiB
CSS
78 lines
1.7 KiB
CSS
|
|
/**
|
||
|
|
* @Author: zhangtq 2452618307@qq.com
|
||
|
|
* @Date: 2024-11-18 13:33:30
|
||
|
|
* @LastEditors: zhangtq 2452618307@qq.com
|
||
|
|
* @LastEditTime: 2024-11-18 13:36:23
|
||
|
|
* @FilePath: static/js/qx/utility/mini-easyui/themes/gray/spinner.css
|
||
|
|
* @Description: 这是默认设置,可以在设置》工具》File Description中进行配置
|
||
|
|
*/
|
||
|
|
.spinner {
|
||
|
|
display: inline-block;
|
||
|
|
white-space: nowrap;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
border-width: 1px;
|
||
|
|
border-style: solid;
|
||
|
|
overflow: hidden;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
.spinner .spinner-text {
|
||
|
|
font-size: 12px;
|
||
|
|
border: 0px;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0 2px;
|
||
|
|
vertical-align: baseline;
|
||
|
|
}
|
||
|
|
.spinner-arrow {
|
||
|
|
background-color: #f3f3f3;
|
||
|
|
display: inline-block;
|
||
|
|
overflow: hidden;
|
||
|
|
vertical-align: top;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
opacity: 1.0;
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
width: 18px;
|
||
|
|
}
|
||
|
|
.spinner-arrow-up,
|
||
|
|
.spinner-arrow-down {
|
||
|
|
opacity: 0.6;
|
||
|
|
filter: alpha(opacity=60);
|
||
|
|
display: block;
|
||
|
|
font-size: 1px;
|
||
|
|
width: 18px;
|
||
|
|
height: 10px;
|
||
|
|
width: 100%;
|
||
|
|
height: 50%;
|
||
|
|
}
|
||
|
|
.spinner-arrow-hover {
|
||
|
|
background-color: #e2e2e2;
|
||
|
|
opacity: 1.0;
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
}
|
||
|
|
.spinner-arrow-up:hover,
|
||
|
|
.spinner-arrow-down:hover {
|
||
|
|
opacity: 1.0;
|
||
|
|
filter: alpha(opacity=100);
|
||
|
|
background-color: #e2e2e2;
|
||
|
|
}
|
||
|
|
.textbox-icon-disabled .spinner-arrow-up:hover,
|
||
|
|
.textbox-icon-disabled .spinner-arrow-down:hover {
|
||
|
|
opacity: 0.6;
|
||
|
|
filter: alpha(opacity=60);
|
||
|
|
background-color: #f3f3f3;
|
||
|
|
}
|
||
|
|
.spinner .textbox-icon-disabled {
|
||
|
|
opacity: 0.6;
|
||
|
|
filter: alpha(opacity=60);
|
||
|
|
}
|
||
|
|
.spinner-arrow-up {
|
||
|
|
background: url('images/spinner_arrows.png') no-repeat 1px center;
|
||
|
|
}
|
||
|
|
.spinner-arrow-down {
|
||
|
|
background: url('images/spinner_arrows.png') no-repeat -15px center;
|
||
|
|
}
|
||
|
|
.spinner {
|
||
|
|
border-color: #D3D3D3;
|
||
|
|
}
|