chore(sass): update sass to match linter config

references #5797
This commit is contained in:
Brandy Carney
2016-03-10 22:41:56 -05:00
parent de6cd2f68c
commit f7b52eeee1
113 changed files with 1235 additions and 1172 deletions

View File

@@ -20,12 +20,22 @@ $grid-responsive-lg-break: 1023px !default; // smaller than landscape tab
flex-direction: column;
ion-col {
&[width-10], &[width-20], &[width-25], &[width-33], &[width-34], &[width-50], &[width-66], &[width-67], &[width-75], &[width-80], &[width-90] {
&[width-10],
&[width-20],
&[width-25],
&[width-33],
&[width-34],
&[width-50],
&[width-66],
&[width-67],
&[width-75],
&[width-80],
&[width-90] {
flex: 1;
margin-bottom: ($grid-padding-width * 3) / 2;
margin-left: 0;
max-width: 100%;
width: 100%;
max-width: 100%;
}
}
@@ -50,6 +60,7 @@ ion-row {
&[top] {
align-items: flex-start;
}
&[bottom] {
align-items: flex-end;
}
@@ -57,9 +68,11 @@ ion-row {
&[center] {
align-items: center;
}
&[stretch] {
align-items: stretch;
}
&[baseline] {
align-items: baseline;
}
@@ -71,14 +84,17 @@ ion-row + ion-row {
}
ion-col {
flex: 1;
display: block;
flex: 1;
padding: ($grid-padding-width / 2);
width: 100%;
// Column Alignment
&[top] {
align-self: flex-start;
}
&[bottom] {
align-self: flex-end;
}
@@ -86,84 +102,102 @@ ion-col {
&[center] {
align-self: center;
}
&[stretch] {
align-self: stretch;
}
&[baseline] {
align-self: baseline;
}
}
// Column Offsets
/* Column Offsets */
ion-col {
&[offset-10] {
margin-left: 10%;
}
&[offset-20] {
margin-left: 20%;
}
&[offset-25] {
margin-left: 25%;
}
&[offset-33], &[offset-34] {
&[offset-33],
&[offset-34] {
margin-left: 33.3333%;
}
&[offset-50] {
margin-left: 50%;
}
&[offset-66], &[offset-67] {
&[offset-66],
&[offset-67] {
margin-left: 66.6666%;
}
&[offset-75] {
margin-left: 75%;
}
&[offset-80] {
margin-left: 80%;
}
&[offset-90] {
margin-left: 90%;
}
}
// Explicit Column Percent Sizes
// By default each grid column will evenly distribute
// across the grid. However, you can specify individual
// columns to take up a certain size of the available area
/* Explicit Column Percent Sizes */
/* By default each grid column will evenly distribute */
/* across the grid. However, you can specify individual */
/* columns to take up a certain size of the available area */
ion-col {
&[width-10] {
flex: 0 0 10%;
max-width: 10%;
}
&[width-20] {
flex: 0 0 20%;
max-width: 20%;
}
&[width-25] {
flex: 0 0 25%;
max-width: 25%;
}
&[width-33], &[width-34] {
&[width-33],
&[width-34] {
flex: 0 0 33.3333%;
max-width: 33.3333%;
}
&[width-50] {
flex: 0 0 50%;
max-width: 50%;
}
&[width-66], &[width-67] {
&[width-66],
&[width-67] {
flex: 0 0 66.6666%;
max-width: 66.6666%;
}
&[width-75] {
flex: 0 0 75%;
max-width: 75%;
}
&[width-80] {
flex: 0 0 80%;
max-width: 80%;
}
&[width-90] {
flex: 0 0 90%;
max-width: 90%;
@@ -171,11 +205,11 @@ ion-col {
}
/* Responsive Grid Classes */
/* Adding a class of responsive-X to a row */
/* will trigger the width-direction to */
/* change to column and add some margin */
/* to any columns in the row for clearity */
// Responsive Grid Classes
// Adding a class of responsive-X to a row
// will trigger the width-direction to
// change to column and add some margin
// to any columns in the row for clearity
@include responsive-grid-break('[responsive-sm]', $grid-responsive-sm-break);
@include responsive-grid-break('[responsive-md]', $grid-responsive-md-break);