Skip to content

Commit

Permalink
autoprefixer config
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmarineau committed Aug 7, 2014
1 parent 1ec0fb3 commit d9aac1f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulp/tasks/styles.js
Expand Up @@ -17,7 +17,7 @@ module.exports = gulp.task('styles', function () {
.pipe(sass({
loadPath: ['bower_components']
}).on('error', handleError))
.pipe(autoprefixer('last 1 version'))
.pipe(autoprefixer('last 1 version', '> 1%', 'ie 8', 'ie 7'))
.pipe(gulpif(release, csso()))
.pipe(gulpif(release, rename(config.filenames.release.styles), rename(config.filenames.build.styles)))
.pipe(gulpif(release, gulp.dest(config.paths.dest.release.styles), gulp.dest(config.paths.dest.build.styles)));
Expand Down
1 change: 1 addition & 0 deletions src/modules/app/home/homeController.js
Expand Up @@ -16,6 +16,7 @@ module.exports = /*@ngInject*/ function ($scope, shorthandCss) {

$scope.clearInput = function() {
$scope.inputEditor.setValue('');
$scope.outputEditor.setValue('');
};

};
12 changes: 11 additions & 1 deletion src/styles/app.scss
Expand Up @@ -105,16 +105,26 @@ header {
nav {
margin-left: auto;
margin-top: 3px;

#about-button {
cursor: pointer;
width: 12px;
transition: opacity 0.2s ease-in-out;

&:hover {
opacity: 0.8;
}
}

#github-button {
cursor: pointer;
width: 19px;
margin-right: 15px;
transition: opacity 0.2s ease-in-out;

&:hover {
opacity: 0.8;
}
}
}
}
Expand Down

0 comments on commit d9aac1f

Please sign in to comment.