Commit 23401e81 authored by Mark Otto's avatar Mark Otto

Merge branch 'Synchro-hyphenation' into 2.0.4-wip

parents 7de65e0a 1a8561d0
...@@ -312,6 +312,16 @@ ...@@ -312,6 +312,16 @@
column-gap: @columnGap; column-gap: @columnGap;
} }
// Optional hyphenation
.hyphens(@mode: auto) {
-webkit-hyphens: @mode;
-moz-hyphens: @mode;
-ms-hyphens: @mode;
-o-hyphens: @mode;
hyphens: @mode;
word-wrap: break-word;
}
// Opacity // Opacity
.opacity(@opacity) { .opacity(@opacity) {
opacity: @opacity / 100; opacity: @opacity / 100;
......
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