aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-05-14 15:33:41 -0700
committerChris Rebert <[email protected]>2014-05-14 15:33:41 -0700
commit95683ddfca4134b119a19143320b17d43cee64cd (patch)
tree430f5e1cea5c887c7fb091d076b71dd0322e021c
parent5c11632bafd573462951e91ebda0fd020c63954e (diff)
downloadbootstrap-95683ddfca4134b119a19143320b17d43cee64cd.tar.xz
bootstrap-95683ddfca4134b119a19143320b17d43cee64cd.zip
change note in .resizable() mixin for accuracy
Not a Safari bug. It's standards-compliant. Quoting from http://www.w3.org/TR/css3-ui/#resize : > ### 8.1. `resize` property > > * Applies to: elements with `overflow` other than `visible` > > The `resize` property applies to elements whose computed `overflow` value is something other than `visible`. Original comment was added in commit 648c4689273647c321dd6e3979d910282e9a9339.
-rw-r--r--less/mixins/resize.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins/resize.less b/less/mixins/resize.less
index fabb15d7f..3acd3afdb 100644
--- a/less/mixins/resize.less
+++ b/less/mixins/resize.less
@@ -2,5 +2,5 @@
.resizable(@direction) {
resize: @direction; // Options: horizontal, vertical, both
- overflow: auto; // Safari fix
+ overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
}