style(sass): remove all PropertySortOrder errors from linter

references #5797
This commit is contained in:
Brandy Carney
2016-03-14 15:56:19 -04:00
parent 131c8c366a
commit d3d689ae11
77 changed files with 536 additions and 8 deletions

View File

@ -33,8 +33,10 @@ ion-checkbox {
.checkbox-icon {
position: relative;
width: $checkbox-ios-icon-size;
height: $checkbox-ios-icon-size;
border-width: $checkbox-ios-icon-border-width;
border-style: $checkbox-ios-icon-border-style;
border-radius: $checkbox-ios-icon-border-radius;
@ -59,8 +61,10 @@ ion-checkbox {
position: absolute;
top: 4px;
left: 7px;
width: 4px;
height: 9px;
border-width: $checkbox-ios-icon-checkmark-width;
border-top-width: 0;
border-left-width: 0;
@ -76,6 +80,7 @@ ion-checkbox {
.checkbox-disabled,
.item-checkbox-disabled ion-label {
opacity: $checkbox-ios-disabled-opacity;
pointer-events: none;
}
@ -86,6 +91,7 @@ ion-checkbox {
.item ion-checkbox {
position: static;
display: block;
margin: $checkbox-ios-media-margin;
}

View File

@ -40,8 +40,10 @@ ion-checkbox {
.checkbox-icon {
position: relative;
width: $checkbox-md-icon-size;
height: $checkbox-md-icon-size;
border-width: $checkbox-md-icon-border-width;
border-style: $checkbox-md-icon-border-style;
border-radius: $checkbox-md-icon-border-radius;
@ -70,8 +72,10 @@ ion-checkbox {
position: absolute;
top: 0;
left: 4px;
width: 5px;
height: 10px;
border-width: $checkbox-md-icon-checkmark-width;
border-top-width: 0;
border-left-width: 0;
@ -87,6 +91,7 @@ ion-checkbox {
.checkbox-disabled,
.item-checkbox-disabled ion-label {
opacity: $checkbox-md-disabled-opacity;
pointer-events: none;
}
@ -97,6 +102,7 @@ ion-checkbox {
.item ion-checkbox {
position: static;
display: block;
margin: $checkbox-md-media-margin;
}

View File

@ -37,8 +37,10 @@ ion-checkbox {
.checkbox-icon {
position: relative;
width: $checkbox-wp-icon-size;
height: $checkbox-wp-icon-size;
border-width: $checkbox-wp-icon-border-width;
border-style: $checkbox-wp-icon-border-style;
border-radius: $checkbox-wp-icon-border-radius;
@ -63,8 +65,10 @@ ion-checkbox {
position: absolute;
top: -2px;
left: 3px;
width: 6px;
height: 12px;
border-width: $checkbox-wp-icon-checkmark-width;
border-top-width: 0;
border-left-width: 0;
@ -80,6 +84,7 @@ ion-checkbox {
.checkbox-disabled,
.item-checkbox-disabled ion-label {
opacity: $checkbox-wp-disabled-opacity;
pointer-events: none;
}
@ -90,6 +95,7 @@ ion-checkbox {
.item ion-checkbox {
position: static;
display: block;
margin: $checkbox-wp-media-margin;
}