forms.less 950 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. .editor-option label.cr1 {
  13. display: inline-block;
  14. margin: 5px 0 1px 0;
  15. }
  16. label.cr1 {
  17. display: inline-block;
  18. height: 19px;
  19. position: relative;
  20. clear: none;
  21. text-indent: 2px;
  22. margin: 0 0 0px 0;
  23. padding: 0 0 0 20px;
  24. vertical-align: top;
  25. background: url(@checkboxImageUrl) left top no-repeat;
  26. cursor:pointer;
  27. }
  28. input[type="checkbox"]:checked+label {
  29. background: url(@checkboxImageUrl) 0px -21px no-repeat;
  30. }
  31. .gf-fluid-input {
  32. border: none;
  33. display: block;
  34. overflow: hidden;
  35. padding-right: 10px;
  36. input[type=text] {
  37. width: 100%;
  38. padding: 5px 6px;
  39. height: 100%;
  40. box-sizing: border-box;
  41. }
  42. textarea {
  43. width: 100%;
  44. padding: 5px 6px;
  45. height: 100%;
  46. box-sizing: border-box;
  47. }
  48. }