index.less 361 B

123456789101112131415161718
  1. @import '../../app.less';
  2. .checkbox-item {
  3. width: 20px;
  4. height: 20px;
  5. border-radius: 2px;
  6. border: 1px solid #CCD2DB;
  7. background: #E4EAF4;
  8. display: inline-block;
  9. cursor: pointer;
  10. }
  11. .checkbox-item.checked {
  12. background-image: url('/assets/chooseed_icon.png');
  13. background-repeat: no-repeat;
  14. background-position: center;
  15. position: relative;
  16. }