diff options
| author | Mark Otto <[email protected]> | 2013-08-12 10:01:13 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-12 10:01:13 -0700 |
| commit | 55cfa8d38f71623aaa5e2aae97b483af60650910 (patch) | |
| tree | 81ba1e9333daaae3314c3eda89b64a487f4b0a38 /less | |
| parent | 175a112548120500022882d6d2e9bede720f568b (diff) | |
| download | bootstrap-55cfa8d38f71623aaa5e2aae97b483af60650910.tar.xz bootstrap-55cfa8d38f71623aaa5e2aae97b483af60650910.zip | |
Drop background-clip and background-size mixins since they have no prefixes anyway
Diffstat (limited to 'less')
| -rw-r--r-- | less/dropdowns.less | 2 | ||||
| -rw-r--r-- | less/mixins.less | 10 | ||||
| -rw-r--r-- | less/modals.less | 2 | ||||
| -rw-r--r-- | less/popovers.less | 2 | ||||
| -rw-r--r-- | less/progress-bars.less | 2 |
5 files changed, 3 insertions, 15 deletions
diff --git a/less/dropdowns.less b/less/dropdowns.less index d40a82a46..af14bf9e9 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -38,7 +38,7 @@ border: 1px solid @dropdown-border; border-radius: @border-radius-base; .box-shadow(0 6px 12px rgba(0,0,0,.175)); - .background-clip(padding-box); + background-clip: padding-box; // Aligns the dropdown menu to right &.pull-right { diff --git a/less/mixins.less b/less/mixins.less index e58e602d3..ee7e5570e 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -163,16 +163,6 @@ backface-visibility: @visibility; } -// Background clipping -.background-clip(@clip) { - background-clip: @clip; -} - -// Background sizing -.background-size(@size) { - background-size: @size; -} - // Box sizing .box-sizing(@boxmodel) { -webkit-box-sizing: @boxmodel; diff --git a/less/modals.less b/less/modals.less index 2e574535e..b43ecfd97 100644 --- a/less/modals.less +++ b/less/modals.less @@ -49,7 +49,7 @@ border: 1px solid @modal-content-border-color; border-radius: @border-radius-large; .box-shadow(0 3px 9px rgba(0,0,0,.5)); - .background-clip(padding-box); + background-clip: padding-box; // Remove focus outline from opened modal outline: none; } diff --git a/less/popovers.less b/less/popovers.less index 3e26ac3d6..345bb1a31 100644 --- a/less/popovers.less +++ b/less/popovers.less @@ -13,8 +13,6 @@ padding: 1px; text-align: left; // Reset given new insertion method background-color: @popover-bg; - -webkit-background-clip: padding-box; - -moz-background-clip: padding; background-clip: padding-box; border: 1px solid @popover-fallback-border-color; border: 1px solid @popover-border-color; diff --git a/less/progress-bars.less b/less/progress-bars.less index ab9832315..d4c498c51 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -61,7 +61,7 @@ // Striped bars .progress-striped .progress-bar { #gradient > .striped(@progress-bar-bg); - .background-size(40px 40px); + background-size: 40px 40px; } // Call animation for the active one |
