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

Merge branch 'Synchro-hyphenation' into 2.0.4-wip

parents 7de65e0a 1a8561d0
Showing with 10 additions and 0 deletions
+10 -0
...@@ -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;
......
Supports Markdown
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