Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #868 from OfficeDev/miwhea/sass-cleanup
Browse files Browse the repository at this point in the history
Restructure, tidy, and bug fix SCSS
  • Loading branch information
Mike Wheaton committed Dec 15, 2016
2 parents aa51ee3 + 3c9b5b1 commit 68ccf45
Show file tree
Hide file tree
Showing 50 changed files with 1,876 additions and 2,624 deletions.
12 changes: 6 additions & 6 deletions src/documentation/sass/docs.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Main Sass file for the docs site

// Import all of Fabric's variables, mixins, and utility classes
@import '../../sass/_Fabric.Common.scss';
// Import all of Fabric's variables and mixins
@import '../../sass/_References.scss';

// New font stack for presenting code
$ms-font-family-code: "Consolas", "Monaco", "Ubuntu Mono", Courier, monospace;
Expand Down Expand Up @@ -69,7 +69,7 @@ $high-contrast-green: #3ff23f;

// slideRightIn80
@mixin ms-u-slideRightIn80 {
@include animationMix((fadeIn, slideRightIn80), $ms-duration3, $ms-ease1);
@include ms-animation((fadeIn, slideRightIn80), $ms-duration3, $ms-ease1);
}
.ms-u-slideRightIn80 {
@include ms-u-slideRightIn80;
Expand All @@ -85,7 +85,7 @@ $high-contrast-green: #3ff23f;

// slideLeftIn80
@mixin ms-u-slideLeftIn80 {
@include animationMix((fadeIn, slideLeftIn80), $ms-duration3, $ms-ease1);
@include ms-animation((fadeIn, slideLeftIn80), $ms-duration3, $ms-ease1);
}
.ms-u-slideLeftIn80 {
@include ms-u-slideLeftIn80;
Expand All @@ -102,7 +102,7 @@ $high-contrast-green: #3ff23f;

// slideLeftIn80
@mixin ms-u-slideLeftOut80 {
@include animationMix((fadeOut, slideLeftOut80), $ms-duration3, $ms-ease1);
@include ms-animation((fadeOut, slideLeftOut80), $ms-duration3, $ms-ease1);
}
.ms-u-slideLeftOut80 {
@include ms-u-slideLeftOut80;
Expand All @@ -119,7 +119,7 @@ $high-contrast-green: #3ff23f;

// slideLeftIn80
@mixin ms-u-slideRightOut80 {
@include animationMix((fadeOut, slideRightOut80), $ms-duration3, $ms-ease1);
@include ms-animation((fadeOut, slideRightOut80), $ms-duration3, $ms-ease1);
}
.ms-u-slideRightOut80 {
@include ms-u-slideRightOut80;
Expand Down

0 comments on commit 68ccf45

Please sign in to comment.