Commit 95683ddf authored by Chris Rebert's avatar Chris Rebert

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 648c4689.
parent 5c11632b
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
.resizable(@direction) { .resizable(@direction) {
resize: @direction; // Options: horizontal, vertical, both resize: @direction; // Options: horizontal, vertical, both
overflow: auto; // Safari fix overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment