40 lines
838 B
CSS
40 lines
838 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:53
|
|
* @FilePath: static/js/qx/utility/easyui/themes/black/checkbox.css
|
|
* @Description: 这是默认设置,可以在设置》工具》File Description中进行配置
|
|
*/
|
|
.checkbox {
|
|
position: relative;
|
|
border: 2px solid #00458a;
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
border-radius: 5px 5px 5px 5px;
|
|
}
|
|
.checkbox-checked {
|
|
border: 0;
|
|
background: #00458a;
|
|
}
|
|
.checkbox-inner {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.checkbox path {
|
|
stroke-width: 2px;
|
|
}
|
|
.checkbox-disabled {
|
|
opacity: 0.6;
|
|
}
|
|
.checkbox-value {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
width: 1px;
|
|
height: 1px;
|
|
left: -999px;
|
|
}
|