index.less 413 B

12345678910111213141516171819202122
  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. }
  17. .checkbox-item.white {
  18. background-color: #fff;
  19. }