forms.less 553 B

123456789101112131415161718192021222324252627282930
  1. input[type=text].input-fluid {
  2. width: 100%;
  3. box-sizing: border-box;
  4. padding: 10px;
  5. font-size: 16px;
  6. -moz-box-sizing: border-box;
  7. height: 100%;
  8. }
  9. input[type="checkbox"].cr1 {
  10. display: none;
  11. }
  12. input[type="checkbox"]+.cr1 {
  13. display: inline-block;
  14. height: 19px;
  15. clear: none;
  16. text-indent: 2px;
  17. margin: 0;
  18. padding: 0 0 0 20px;
  19. vertical-align:middle;
  20. background: url(@checkboxImageUrl) left top no-repeat;
  21. cursor:pointer;
  22. }
  23. input[type="checkbox"]:checked+label {
  24. background: url(@checkboxImageUrl) 0px -18px no-repeat;
  25. }