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
// ---- | |
// Sass (v3.4.12) | |
// ---- | |
@function _important() { | |
$apply-importants: true !default; | |
@return if($apply-importants, !important, null); | |
} | |
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
unsafe-perm = true |
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
$elem-prefix: "" !default; | |
$part-prefix: "__" !default; | |
$mod-prefix: "--" !default; | |
@function get-element($elem) { | |
@return "." + $elem-prefix + $elem; | |
} | |
@function get-part($part) { | |
@return $part-prefix + $part; |
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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$default-list: ( | |
key1 : value1, | |
key2 : value2 | |
) !default; |
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
// ---- | |
// Sass (v3.4.0.rc.1) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$pulse-bg-colors: (); | |
@mixin pulse-bg($color) { | |
// Name the current animation for later use. | |
$animation-id: 'pulse-bg_' + str-slice(inspect($color), 2); |
NewerOlder