From 512f6c010fd880c2b80b25f62046ea35f2a152e3 Mon Sep 17 00:00:00 2001 From: Zander Martineau Date: Fri, 14 Feb 2014 09:59:02 +0000 Subject: [PATCH 1/3] fix classname typo --- scss/_utilities.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 326ac636..b51150b6 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -68,7 +68,7 @@ // Hide visually and from screenreaders, but maintain layout .is-invisible { visibility: hidden; } -.l-floatLleft { float:left; } +.l-floatLeft { float:left; } .l-floatRight { float:right; } .l-clear { clear:both; float:none; } From 3771764e1414bf492584db06657a756cfd297137 Mon Sep 17 00:00:00 2001 From: Zander Martineau Date: Tue, 25 Feb 2014 01:11:15 +0000 Subject: [PATCH 2/3] update npm dependencies --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e997329a..b1087eab 100644 --- a/package.json +++ b/package.json @@ -22,15 +22,15 @@ "dependencies": {}, "devDependencies": { "grunt": "~0.4.2", - "grunt-contrib-sass": "~0.7.1", + "grunt-contrib-sass": "~0.7.2", "grunt-contrib-jshint": "~0.8.0", "grunt-contrib-watch": "~0.5.3", "grunt-contrib-uglify": "~0.3.2", "grunt-csso": "~0.5.3", "grunt-jquery-builder": "~0.1.1", "load-grunt-tasks": "~0.3.0", - "grunt-contrib-connect": "~0.6.0", - "grunt-available-tasks": "~0.4.1", + "grunt-contrib-connect": "~0.7.0", + "grunt-available-tasks": "~0.4.2", "grunt-jscs-checker": "~0.3.2" }, "keywords": [] From c608400eb12f0cb14a5842e34368554f98f3ce1d Mon Sep 17 00:00:00 2001 From: Zander Martineau Date: Wed, 26 Feb 2014 11:33:16 +0000 Subject: [PATCH 3/3] fixes #13 --- scss/_forms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_forms.scss b/scss/_forms.scss index c18a9bb1..3af4d46b 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -112,7 +112,7 @@ select, @include font-size($base-font-size); line-height: $base-leading; color: $input-color; - background-color: #FFF; + background-color: $input-background; border: 1px solid $input-border; @include border-radius(3px); }