Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
fix(styles): remove deprecated css properties
Browse files Browse the repository at this point in the history
closes #450
  • Loading branch information
rschmukler committed Oct 27, 2014
1 parent 8076827 commit c7e3a83
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
7 changes: 4 additions & 3 deletions gulpfile.js
Expand Up @@ -306,8 +306,9 @@ function filterNonCodeFiles() {
}

function autoprefix() {
return autoprefixer([
'Chrome Android', 'iOS', 'last 2 Safari versions',
return autoprefixer({browsers: [
'last 2 ChromeAndroid versions', 'last 2 Android versions',
'last 2 iOS versions', 'last 2 Safari versions',
'last 2 Chrome versions'
]);
]});
}
4 changes: 2 additions & 2 deletions src/components/dialog/_dialog.scss
Expand Up @@ -36,7 +36,7 @@ md-dialog {
flex-direction: column;

.dialog-content {
flex-order: 1;
order: 1;
padding: 24px;
overflow: auto;
-webkit-overflow-scrolling: touch;
Expand All @@ -48,7 +48,7 @@ md-dialog {

.dialog-actions {
display: flex;
flex-order: 2;
order: 2;
box-sizing: border-box;
align-items: center;
justify-content: flex-end;
Expand Down
2 changes: 1 addition & 1 deletion src/components/icon/_icon.scss
Expand Up @@ -9,7 +9,7 @@ md-icon {
}
svg, object {
fill: currentColor;
color-fill: currentColor;
color: currentColor;
}

md-class-icon {
Expand Down
1 change: 0 additions & 1 deletion src/components/textField/_textField.scss
Expand Up @@ -137,7 +137,6 @@ md-input-group,
input, textarea {
@include text-dashed-line( $tff-line-dot-width, $tff-line-dot-size);
pointer-events: none;
tabindex : -1;
}

@include text-hint( small );
Expand Down
2 changes: 1 addition & 1 deletion src/core/style/layout.scss
Expand Up @@ -159,7 +159,7 @@

@mixin layout-order-preset($attr, $n) {
[#{$attr}="#{$n}"] {
flex-order: $n;
order: $n;
}
}

Expand Down

0 comments on commit c7e3a83

Please sign in to comment.