123456789101112131415161718 |
- @import '../../app.less';
- .checkbox-item {
- width: 20px;
- height: 20px;
- border-radius: 2px;
- border: 1px solid #CCD2DB;
- background: #E4EAF4;
- display: inline-block;
- cursor: pointer;
- }
- .checkbox-item.checked {
- background-image: url('/assets/chooseed_icon.png');
- background-repeat: no-repeat;
- background-position: center;
- position: relative;
- }
|