Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 179 | espaco | 1 | body { |
| 2 | .ui-inputgroup { |
||
| 3 | .ui-inputgroup-addon, |
||
| 4 | .ui-inputgroup-addon-checkbox { |
||
| 5 | padding: $inputPadding; |
||
| 6 | border-color: $inputGroupBorderColor; |
||
| 7 | background: $inputGroupBg; |
||
| 8 | color: $inputGroupIconColor; |
||
| 9 | min-width: $inputGroupAddonMinWidth; |
||
| 10 | |||
| 11 | &:first-child { |
||
| 12 | @include border-radius-left($borderRadius); |
||
| 13 | } |
||
| 14 | |||
| 15 | &:last-child { |
||
| 16 | @include border-radius-right($borderRadius); |
||
| 17 | } |
||
| 18 | } |
||
| 19 | |||
| 20 | button:first-child, input:first-child { |
||
| 21 | @include border-radius-left($borderRadius); |
||
| 22 | } |
||
| 23 | |||
| 24 | .ui-float-label:first-child input { |
||
| 25 | @include border-radius-left($borderRadius); |
||
| 26 | } |
||
| 27 | |||
| 28 | button:last-child, input:last-child { |
||
| 29 | @include border-radius-right($borderRadius); |
||
| 30 | } |
||
| 31 | |||
| 32 | .ui-float-label:last-child input { |
||
| 33 | @include border-radius-right($borderRadius); |
||
| 34 | } |
||
| 35 | |||
| 36 | > .ui-widget, |
||
| 37 | > .ui-float-label > .ui-widget { |
||
| 38 | border-radius: 0; |
||
| 39 | |||
| 40 | + .ui-inputgroup-addon { |
||
| 41 | border-left: 0 none; |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | .ui-inputgroup-addon-checkbox { |
||
| 46 | padding: 0; |
||
| 47 | position: relative; |
||
| 48 | |||
| 49 | .ui-chkbox { |
||
| 50 | vertical-align: baseline; |
||
| 51 | position: absolute; |
||
| 52 | top: 50%; |
||
| 53 | left: 50%; |
||
| 54 | margin-top: -1 * $checkboxHeight / 2; |
||
| 55 | margin-left: -1 * $checkboxWidth / 2; |
||
| 56 | } |
||
| 57 | } |
||
| 58 | } |
||
| 59 | } |