Remove trailing whitespace from Sass files

This commit is contained in:
David Baumgold
2015-09-14 14:50:38 -04:00
parent 5881adda89
commit 1c21a0d250
36 changed files with 168 additions and 168 deletions

View File

@@ -1,7 +1,7 @@
// common - utilities - mixins and extends
// ====================
// Table of Contents
// Table of Contents
// * +Font Sizing - Mixin
// * +Line Height - Mixin
// * +Sizing - Mixin
@@ -26,34 +26,34 @@
// * +Icon - Font-Awesome - Extend
// +Font Sizing - Mixin
// ====================
// ====================
@mixin font-size($sizeValue: 16){
font-size: $sizeValue + px;
font-size: ($sizeValue/10) + rem;
}
// +Line Height - Mixin
// ====================
// ====================
@mixin line-height($fontSize: auto){
line-height: ($fontSize*1.48) + px;
line-height: (($fontSize/10)*1.48) + rem;
}
// +Sizing - Mixin
// ====================
// ====================
@mixin size($width: $baseline, $height: $baseline) {
height: $height;
width: $width;
}
// +Square - Mixin
// ====================
// ====================
@mixin square($size: $baseline) {
@include size($size);
}
// +Placeholder Styling - Mixin
// ====================
// ====================
@mixin placeholder($color) {
:-moz-placeholder {
color: $color;
@@ -67,7 +67,7 @@
}
// +Flex Support - Mixin
// ====================
// ====================
@mixin ui-flexbox() {
display: -webkit-box;
display: -moz-box;
@@ -77,7 +77,7 @@
}
// +Flex PolyFill - Extends
// ====================
// ====================
// justify-content right for display:flex alignment in older browsers
%ui-justify-right-flex {
@@ -107,7 +107,7 @@
// +UI - Wrapper - Extends
// ====================
// ====================
// used for page/view-level wrappers (for centering/grids)
%ui-wrapper {
@include clearfix();
@@ -128,7 +128,7 @@
}
// +UI - Window - Extends
// ====================
// ====================
%ui-window {
@include clearfix();
border-radius: ($baseline/10);
@@ -144,13 +144,13 @@
}
// +UI - Visual Link - Extends
// ====================
// ====================
%ui-fake-link {
cursor: pointer;
}
// +UI - Functional Disable - Extends
// ====================
// ====================
%ui-disabled {
pointer-events: none;
outline: none;
@@ -158,7 +158,7 @@
}
// +UI - Depth Levels - Extends
// ====================
// ====================
%ui-depth0 { z-index: 0; }
%ui-depth1 { z-index: 10; }
%ui-depth2 { z-index: 100; }
@@ -168,7 +168,7 @@
// +UI - Clear Children - Extends
// ====================
// ====================
// extends - UI - utility - first child clearing
%wipe-first-child {
@@ -190,7 +190,7 @@
}
// +UI - Buttons - Extends
// ====================
// ====================
%ui-btn {
@include box-sizing(border-box);
@include transition(color $tmg-f2 ease-in-out 0s, border-color $tmg-f2 ease-in-out 0s, background $tmg-f2 ease-in-out 0s, box-shadow $tmg-f2 ease-in-out 0s);
@@ -329,7 +329,7 @@
}
// +UI - Well Archetype - Extends
// ====================
// ====================
%ui-well {
box-shadow: inset 0 1px 2px 1px $shadow;
padding: ($baseline*0.75) $baseline;
@@ -378,7 +378,7 @@
}
// +Content - No List - Extends
// ====================
// ====================
// removes list styling/spacing when using uls, ols for navigation and less content-centric cases
%cont-no-list {
list-style: none;
@@ -393,7 +393,7 @@
}
// +Content - Hidden Image Text - Extend
// ====================
// ====================
// image-replacement hidden text
%cont-text-hide {
text-indent: 100%;
@@ -402,7 +402,7 @@
}
// +Content - Screenreader Text - Extend
// ====================
// ====================
%cont-text-sr {
border: 0;
clip: rect(0 0 0 0);
@@ -415,13 +415,13 @@
}
// +Content - Text Wrap - Extend
// ====================
// ====================
%cont-text-wrap {
word-wrap: break-word;
}
// +Content - Text Truncate - Extend
// ====================
// ====================
%cont-truncated {
@include box-sizing(border-box);
overflow: hidden;
@@ -430,7 +430,7 @@
}
// * +Icon - Font-Awesome - Extend
// ====================
// ====================
%use-font-awesome {
display: inline-block;
font-family: FontAwesome;