moved vendor mixin

This commit is contained in:
Stephan Hagedorn 2020-02-01 13:52:04 +01:00
parent f081d93545
commit f30d5d3567
3 changed files with 3 additions and 28 deletions

View file

@ -26,11 +26,6 @@
// Modules and variables
// -----------------------------------------------------------------------------
@import "modules/vendor";
// @import modules/all deprecated because of the new vendor mixin
// Basic styles - this is the core of definitions
// Individual styles can be added her
// -----------------------------------------------------------------------------
@ -45,6 +40,8 @@
@import "elements/tables";
@import "elements/interactive";
// Individual Modules and variables
// in dependency to other styles
// -----------------------------------------------------------------------------

View file

@ -3,3 +3,4 @@
@import "flow";
@import "color";
@import "user_agent";
@import "vendor";

View file

@ -1,23 +0,0 @@
/**
* @description
* Generates cross-browser-compatible output for a given element with its value.
*
* @author sthag
*
* @param values
* @returns
* -webkit-<name>: <values>
* ...-<name>: <values>
*
* @example
* .selector
* @include vendor-prefix(hyphens, auto)
*/
@mixin vendor-prefix($name, $argument) {
-webkit-#{$name}: #{$argument};
-ms-#{$name}: #{$argument};
-moz-#{$name}: #{$argument};
-o-#{$name}: #{$argument};
#{$name}: #{$argument};
}