]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
change note in .resizable() mixin for accuracy 13600/head
authorChris Rebert <code@rebertia.com>
Wed, 14 May 2014 22:33:41 +0000 (15:33 -0700)
committerChris Rebert <code@rebertia.com>
Wed, 14 May 2014 22:33:41 +0000 (15:33 -0700)
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.

less/mixins/resize.less

index fabb15d7f0611d3fa1a8810b3a84ca4eb799c1fe..3acd3afdbacbb7f642e04f7ff434c18107faad69 100644 (file)
@@ -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`
 }