diff options
| author | Mark Otto <[email protected]> | 2014-09-21 16:04:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-09-21 16:04:37 -0700 |
| commit | d1660ad0788fa4e9b0d072323c1d70f9c6f5dbf2 (patch) | |
| tree | 1cbc830c380b8cda342eccd37dfa1732600d5d19 /less/_variables.less | |
| parent | 2cc9e773c57e389e8fcb797148fb850433144c3e (diff) | |
| download | bootstrap-d1660ad0788fa4e9b0d072323c1d70f9c6f5dbf2.tar.xz bootstrap-d1660ad0788fa4e9b0d072323c1d70f9c6f5dbf2.zip | |
Swap -small and -large variables for -sm and -lg
Diffstat (limited to 'less/_variables.less')
| -rw-r--r-- | less/_variables.less | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/less/_variables.less b/less/_variables.less index 02e5818ea..b2abec319 100644 --- a/less/_variables.less +++ b/less/_variables.less @@ -62,8 +62,8 @@ @font-size-root: 16px; //** Sets the `<body>` and more to the root pixel value. @font-size-base: 1rem; -@font-size-large: 1.25rem; -@font-size-small: .85rem; +@font-size-lg: 1.25rem; +@font-size-sm: .85rem; @font-size-xs: .75rem; @font-size-h1: 3rem; @@ -92,21 +92,21 @@ @padding-base-vertical: .5rem; @padding-base-horizontal: .75rem; -@padding-large-vertical: .75rem; -@padding-large-horizontal: 1.5rem; +@padding-lg-vertical: .75rem; +@padding-lg-horizontal: 1.5rem; -@padding-small-vertical: .3rem; -@padding-small-horizontal: .75rem; +@padding-sm-vertical: .3rem; +@padding-smhorizontal: .75rem; @padding-xs-vertical: .2rem; @padding-xs-horizontal: .5rem; -@line-height-large: 1.33; -@line-height-small: 1.5; +@line-height-lg: 1.33; +@line-height-sm: 1.5; @border-radius-base: .25rem; -@border-radius-large: .3rem; -@border-radius-small: .2rem; +@border-radius-lg: .3rem; +@border-radius-sm: .2rem; //** Global color for active items (e.g., navs or dropdowns). @component-active-color: #fff; @@ -191,9 +191,9 @@ //** Default `.form-control` border radius @input-border-radius: @border-radius-base; //** Large `.form-control` border radius -@input-border-radius-large: @border-radius-large; +@input-border-radius-lg: @border-radius-lg; //** Small `.form-control` border radius -@input-border-radius-small: @border-radius-small; +@input-border-radius-sm: @border-radius-sm; //** Border color for inputs on focus @input-border-focus: #66afe9; @@ -205,9 +205,9 @@ //** Default `.form-control` height @input-height-base: ((@font-size-base * @line-height-base) + (@padding-base-vertical * 2) + (@border-width * 2)); //** Large `.form-control` height -@input-height-large: ((@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + (@border-width * 2)); +@input-height-lg: ((@font-size-lg * @line-height-lg) + (@padding-lg-vertical * 2) + (@border-width * 2)); //** Small `.form-control` height -@input-height-small: ((@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + (@border-width * 2)); +@input-height-sm: ((@font-size-sm * @line-height-sm) + (@padding-sm-vertical * 2) + (@border-width * 2)); @legend-color: @gray-dark; @legend-border-color: #e5e5e5; |
