forms.less 958 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. label.cr1 {
  13. display: inline-block;
  14. height: 19px;
  15. clear: none;
  16. text-indent: 2px;
  17. margin: 0 0 1px 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. }
  26. .gf-form {
  27. padding-bottom: 10px;
  28. .checkbox-label {
  29. padding-left: 7px;
  30. display: inline;
  31. }
  32. }
  33. .gf-fluid-input {
  34. border: none;
  35. display: block;
  36. overflow: hidden;
  37. padding-right: 10px;
  38. input[type=text] {
  39. width: 100%;
  40. padding: 5px 6px;
  41. height: 100%;
  42. box-sizing: border-box;
  43. }
  44. textarea {
  45. width: 100%;
  46. padding: 5px 6px;
  47. height: 100%;
  48. box-sizing: border-box;
  49. }
  50. }