This file contains hidden or 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.3.14) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /* | |
| LINE 44 - CHECKING & SETTING MAPS FAILS IN 3.4.x | |
| */ | |
| $mixin-denominator-numbers: (1 2 3 4 5 6 7 8 9 10 11 12) !default; |
This file contains hidden or 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
| // ---- | |
| // libsass (v3.2.4) | |
| // ---- | |
| $_map: ( | |
| 0: 0 | |
| ); | |
| @for $i from 1 through 5 { | |
| $_map: map-merge($_map, ($i: $i)); |
This file contains hidden or 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.3.14) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /* | |
| LINE 20 - CHECKING & SETTING MAPS FAILS IN 3.4.x | |
| */ | |
| $mixin-denominator-numbers: (1 2 3 4 5 6 7 8 9 10 11 12) !default; |
This file contains hidden or 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.3.14) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /* | |
| LINE 20 - CHECKING & SETTING MAPS FAILS IN 3.4.x | |
| */ | |
| $mixin-denominator-numbers: (1 2 3 4 5 6 7 8 9 10 11 12) !default; |
This file contains hidden or 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.3.14) | |
| // Compass (v1.0.1) | |
| // ---- | |
| /* | |
| LINE 20 - CHECKING & SETTING MAPS FAILS IN 3.4.x | |
| */ | |
| $mixin-denominator-numbers: (1 2 3) !default; |
This file contains hidden or 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.3.14) | |
| // Compass (v1.0.1) | |
| // ---- | |
| $mixin-denominator-numbers: (1 2 3) !default; | |
| $_percentage-class-instances: () !default; | |
| @mixin generate-percentage-classes() { | |
| @each $denominator in $mixin-denominator-numbers { |
This file contains hidden or 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
| $ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190); | |
| $transition: 0.2s #{$ease-in-cubic}; | |
| .foo { | |
| transition: background-color #{$transition}, box-shadow #{$transition}; | |
| } |
This file contains hidden or 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
| { | |
| "documentation": "https://github.com/adobe/brackets/wiki/User-Key-Bindings", | |
| "overrides": { | |
| "Ctrl-Alt-A": "cmd.findAllAndSelect", | |
| "Ctrl-Alt-L": "navigate.showInFileTree", | |
| "Ctrl-Alt-E": "navigate.showInOS", | |
| "Ctrl-F5": "debug.refreshWindow", | |
| "Ctrl-Shift-N": "debug.newBracketsWindow" | |
| } | |
| } |
This file contains hidden or 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
| "snippets": { | |
| "mq2": "@include mq-2x() {\n\t|\n}", | |
| "mq": "@include mq-min-width(\\$screen-${1:tablet}) {\n\t|\n}", | |
| "mqm": "@include mq-max-width(\\$screen-${1:tablet}) {\n\t|\n}", | |
| "mqr": "@include mq-min-max-width(\\$screen-${1:tablet}, \\$screen-${2:desktop}) {\n\t|\n}", | |
| } |
This file contains hidden or 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
| { | |
| "remove-empty-rulesets": true, | |
| "always-semicolon": true, | |
| "color-case": "lower", | |
| "block-indent": " ", | |
| "color-shorthand": true, | |
| "element-case": "lower", | |
| "eof-newline": true, | |
| "leading-zero": false, | |
| "quotes": "single", |