diff options
| author | Jacob Thornton <[email protected]> | 2012-04-16 15:09:05 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-04-16 15:09:05 -0700 |
| commit | 498b7d984a8182442e2f543eedff6542c628cd55 (patch) | |
| tree | f2ca704242b69fee4469f6f1ea7f941e63a5bb3a /less | |
| parent | cad8f2b43acac39958c5f3fb04e9d922900e7b89 (diff) | |
| download | bootstrap-498b7d984a8182442e2f543eedff6542c628cd55.tar.xz bootstrap-498b7d984a8182442e2f543eedff6542c628cd55.zip | |
a few property reordering things
Diffstat (limited to 'less')
| -rw-r--r-- | less/mixins.less | 9 | ||||
| -rw-r--r-- | less/reset.less | 4 |
2 files changed, 6 insertions, 7 deletions
diff --git a/less/mixins.less b/less/mixins.less index 73e6ade56..da461a23a 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -102,11 +102,11 @@ // ------------------------- // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 .hide-text { - border: 0; font: 0/0 a; - text-shadow: none; color: transparent; + text-shadow: none; background-color: transparent; + border: 0; } @@ -152,9 +152,8 @@ .input-block-level { display: block; width: 100%; - min-height: 28px; /* Make inputs at least the height of their button counterpart */ - /* Makes inputs behave like true block-level elements */ - .box-sizing(border-box); + min-height: 28px; // Make inputs at least the height of their button counterpart + .box-sizing(border-box); // Makes inputs behave like true block-level elements } diff --git a/less/reset.less b/less/reset.less index d11533f03..d9ce2b110 100644 --- a/less/reset.less +++ b/less/reset.less @@ -76,9 +76,9 @@ sub { img { max-width: 100%; // Make images inherently responsive + vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; - vertical-align: middle; } // Forms @@ -111,10 +111,10 @@ input[type="submit"] { -webkit-appearance: button; // Style clickable inputs in iOS } input[type="search"] { // Appearance in Safari/Chrome - -webkit-appearance: textfield; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; + -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { |
