From b48e741efffe58ae6a2b8f2784a54cd5bb48b0b6 Mon Sep 17 00:00:00 2001 From: William Toohey Date: Tue, 26 Jan 2016 01:05:47 +1000 Subject: [PATCH] Add CSS sourcemaps and fix settings border --- gulpfile.js | 2 ++ src/css/style.css | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 581bffc..415f734 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -22,9 +22,11 @@ gulp.task('css', function(){ "hues-r.css", // retro "hues-w.css" // weed ])) + .pipe(sourcemaps.init()) .pipe(autoprefixer('last 2 version', 'ios 6', 'android 4')) .pipe(minifyCSS()) .pipe(concat('hues-min.css')) + .pipe(sourcemaps.write(".")) .pipe(gulp.dest('css')); }); diff --git a/src/css/style.css b/src/css/style.css index 18f5b29..85f52aa 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -205,7 +205,7 @@ input.tab-input[type="radio"]:checked + label { margin-top: -235px; background: rgba(200,200,200, 0.7); - border-color: "black"; + border-color: black; border-width: 2px; border-style: solid; }