-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhancements - support dot less rtl plugin like property names
- Loading branch information
Showing
11 changed files
with
207 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,6 @@ node_modules | |
|
||
# Users Environment Variables | ||
.lock-wscript | ||
|
||
#Webstorm | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.reverse { | ||
float: right; | ||
float: left; | ||
float: left; | ||
margin-right: 5px; | ||
margin-left: 5px; | ||
margin-left: 5px; | ||
font-size: 12px; | ||
/* unchanged*/ | ||
right: 3px; | ||
left: 3px; | ||
left: 3px; | ||
} | ||
.shorthands { | ||
margin: 5px; | ||
margin: 6px 7px; | ||
margin: 1px 7px 3px; | ||
margin: 1px 4px 3px 2px; | ||
margin: 5px; | ||
margin: 6px 7px; | ||
margin: 1px 7px 3px; | ||
margin: 1px 2px 3px 4px; | ||
margin: 5px; | ||
margin: 6px 7px; | ||
margin: 1px 7px 3px; | ||
margin: 1px 2px 3px 4px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.reverse { | ||
-ltr-reverse-float: left; | ||
-ltr-float: left; | ||
-rtl-reverse-float: left; | ||
-rtl-float: left; | ||
|
||
-ltr-reverse-margin-left: 5px; | ||
-ltr-margin-left: 5px; | ||
-rtl-reverse-margin-left: 5px; | ||
-rtl-margin-left: 5px; | ||
|
||
font-size: 12px; /* unchanged*/ | ||
|
||
-ltr-reverse-left: 3px; | ||
-ltr-left: 3px; | ||
-rtl-reverse-left: 3px; | ||
-rtl-left: 3px; | ||
} | ||
.shorthands { | ||
@top: 1px; | ||
@right: 2px; | ||
@bottom: 3px; | ||
@left: 4px; | ||
@all: 5px; | ||
@vertical: 6px; | ||
@horizontal: 7px; | ||
|
||
-ltr-reverse-margin: @all; | ||
-ltr-reverse-margin: @vertical @horizontal; | ||
-ltr-reverse-margin: @top @horizontal @bottom; | ||
-ltr-reverse-margin: @top @right @bottom @left; | ||
|
||
-ltr-margin: @all; | ||
-ltr-margin: @vertical @horizontal; | ||
-ltr-margin: @top @horizontal @bottom; | ||
-ltr-margin: @top @right @bottom @left; | ||
|
||
-rtl-reverse-margin: @all; | ||
-rtl-reverse-margin: @vertical @horizontal; | ||
-rtl-reverse-margin: @top @horizontal @bottom; | ||
-rtl-reverse-margin: @top @right @bottom @left; | ||
|
||
-rtl-margin: @all; | ||
-rtl-margin: @vertical @horizontal; | ||
-rtl-margin: @top @horizontal @bottom; | ||
-rtl-margin: @top @right @bottom @left; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters