34 lines
730 B
CSS
34 lines
730 B
CSS
|
|
/**
|
||
|
|
* @Author: zhangtq 2452618307@qq.com
|
||
|
|
* @Date: 2024-11-18 13:33:31
|
||
|
|
* @LastEditors: zhangtq 2452618307@qq.com
|
||
|
|
* @LastEditTime: 2024-11-18 13:36:25
|
||
|
|
* @FilePath: static/js/qx/utility/easyui/themes/gray/radiobutton.css
|
||
|
|
* @Description: 这是默认设置,可以在设置》工具》File Description中进行配置
|
||
|
|
*/
|
||
|
|
.radiobutton {
|
||
|
|
position: relative;
|
||
|
|
border: 2px solid #0070a9;
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
.radiobutton-inner {
|
||
|
|
position: absolute;
|
||
|
|
left: 0;
|
||
|
|
top: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background: #0070a9;
|
||
|
|
border-radius: 50%;
|
||
|
|
transform: scale(.6);
|
||
|
|
}
|
||
|
|
.radiobutton-disabled {
|
||
|
|
opacity: 0.6;
|
||
|
|
}
|
||
|
|
.radiobutton-value {
|
||
|
|
position: absolute;
|
||
|
|
overflow: hidden;
|
||
|
|
width: 1px;
|
||
|
|
height: 1px;
|
||
|
|
left: -999px;
|
||
|
|
}
|