diff options
| author | Mark Otto <[email protected]> | 2014-07-08 16:25:01 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-08 16:25:01 -0700 |
| commit | f6367bc0e4d66ab56f61d9aee3d326dcce19847f (patch) | |
| tree | c7692865a22e379339b7140cd89c7c5d30c5aaf4 /less/input-groups.less | |
| parent | 86099bfb330ae43026e07ce7d14b67201fbb96d4 (diff) | |
| download | bootstrap-f6367bc0e4d66ab56f61d9aee3d326dcce19847f.tar.xz bootstrap-f6367bc0e4d66ab56f61d9aee3d326dcce19847f.zip | |
Implement the new border-radius guard: only round things if global @enable-rounded == true
Diffstat (limited to 'less/input-groups.less')
| -rw-r--r-- | less/input-groups.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/input-groups.less b/less/input-groups.less index a8712f25b..2357a52d7 100644 --- a/less/input-groups.less +++ b/less/input-groups.less @@ -79,18 +79,18 @@ text-align: center; background-color: @input-group-addon-bg; border: 1px solid @input-group-addon-border-color; - border-radius: @border-radius-base; + .border-radius(@border-radius-base); // Sizing &.input-sm { padding: @padding-small-vertical @padding-small-horizontal; font-size: @font-size-small; - border-radius: @border-radius-small; + .border-radius(@border-radius-small); } &.input-lg { padding: @padding-large-vertical @padding-large-horizontal; font-size: @font-size-large; - border-radius: @border-radius-large; + .border-radius(@border-radius-large); } // Nuke default margins from checkboxes and radios to vertically center within. |
