| 123456789101112131415161718192021222324252627282930 |
- input[type=text].input-fluid {
- width: 100%;
- box-sizing: border-box;
- padding: 10px;
- font-size: 16px;
- -moz-box-sizing: border-box;
- height: 100%;
- }
- input[type="checkbox"].cr1 {
- display: none;
- }
- input[type="checkbox"]+.cr1 {
- display: inline-block;
- height: 19px;
- clear: none;
- text-indent: 2px;
- margin: 0;
- padding: 0 0 0 20px;
- vertical-align:middle;
- background: url(@checkboxImageUrl) left top no-repeat;
- cursor:pointer;
- }
- input[type="checkbox"]:checked+label {
- background: url(@checkboxImageUrl) 0px -18px no-repeat;
- }
|