-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
373 additions
and
106 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
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,23 @@ | ||
|
||
/*################################*\ | ||
xmeter | __tool.fallback.filter.less | ||
\*################################*/ | ||
|
||
|
||
// Applies one or more graphical filter effects on an element. | ||
// | ||
// ^url | ||
// : https://developer.mozilla.org/en-US/docs/Web/CSS/filter | ||
// ^params | ||
// : @arg - a list of space-separated filter functions | ||
// ^author | ||
// : Chris Harvey | ||
// ^updated | ||
// : 2016-04-05 | ||
.filter(@arg) { | ||
-webkit-filter: @arg; | ||
-moz-filter: @arg; | ||
-ms-filter: @arg; | ||
-o-filter: @arg; | ||
filter: @arg; | ||
} |
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,30 @@ | ||
|
||
/*################################*\ | ||
xmeter | __tool.fallback.linear-gradient.less | ||
\*################################*/ | ||
|
||
|
||
// Applies a single linear gradient background on an element. | ||
// This is an unusual property in that a single css value list is comprised | ||
// of comma-separated values (unlike normal css value lists which are space-separated). | ||
// Thus when you call the mixin, you must append a dummy semicolon at the end of your argument. | ||
// If you do not, Less will interpret the commas as argument separators. | ||
// | ||
// See [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient) for more info. | ||
// See [WPD](http://docs.webplatform.org/wiki/css/functions/linear-gradient) for more info. | ||
// | ||
// ^params | ||
// : @arg - a list of comma-separated components (each as a component of one gradient value). | ||
// Must be terminated with a semicolon (;). | ||
// ^author | ||
// : Chris Harvey | ||
// ^updated | ||
// : 2014-07-08 | ||
.linear-gradient(@arg) { | ||
background-image: -webkit-linear-gradient(@arg); | ||
background-image: -moz-linear-gradient(@arg); | ||
background-image: -ms-linear-gradient(@arg); | ||
background-image: -o-linear-gradient(@arg); | ||
background-image: linear-gradient(@arg); | ||
background-image: -webkit-gradient(@arg); // "Old Webkit" | ||
} |
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,23 @@ | ||
|
||
/*################################*\ | ||
xmeter | __tool.fallback.transform.less | ||
\*################################*/ | ||
|
||
|
||
// Applies one or more transformations to an element. | ||
// | ||
// ^url | ||
// : https://developer.mozilla.org/en-US/docs/Web/CSS/transform | ||
// ^params | ||
// : @arg - a list of space-separated transformation functions | ||
// ^author | ||
// : Chris Harvey | ||
// ^updated | ||
// : 2016-05-04 | ||
.transform(@arg) { | ||
-webkit-transform: @arg; | ||
-moz-transform: @arg; | ||
-ms-transform: @arg; | ||
-o-transform: @arg; | ||
transform: @arg; | ||
} |
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
Oops, something went wrong.