From 6f9d980139a38c7bd09dfc9d339f7ac809b5a3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Thu, 3 Oct 2013 23:15:49 +0200 Subject: [PATCH 1/3] Change border to border-radius Border isn't set, but border-radius is. --- less/code.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/code.less b/less/code.less index 88bcde5526..e12835401d 100644 --- a/less/code.less +++ b/less/code.less @@ -42,7 +42,7 @@ pre { color: inherit; white-space: pre-wrap; background-color: transparent; - border: 0; + border-radius: 0; } } From 8098f4e5ba36814030304867092aa268aaf370f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Sat, 12 Oct 2013 23:28:50 +0200 Subject: [PATCH 2/3] Add more functionality to .small --- less/type.less | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/less/type.less b/less/type.less index 55e5e1d777..e5544ab3e4 100644 --- a/less/type.less +++ b/less/type.less @@ -82,7 +82,8 @@ h1, h2, h3, h4, h5, h6, line-height: @headings-line-height; color: @headings-color; - small { + small, + .small { font-weight: normal; line-height: 1; color: @headings-small-color; @@ -95,7 +96,8 @@ h3 { margin-top: @line-height-computed; margin-bottom: (@line-height-computed / 2); - small { + small, + .small { font-size: 65%; } } @@ -105,7 +107,8 @@ h6 { margin-top: (@line-height-computed / 2); margin-bottom: (@line-height-computed / 2); - small { + small, + .small { font-size: 75%; } } @@ -240,10 +243,12 @@ blockquote { border-right: 5px solid @blockquote-border-color; border-left: 0; p, - small { + small, + .small { text-align: right; } - small { + small, + .small { &:before { content: ''; } From c75f8a5bf64acc5ffb45c8bb6221e412b0b08bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Sun, 13 Oct 2013 12:53:48 +0200 Subject: [PATCH 3/3] Sort dependencies A-Z --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c60f2decf6..a4b5fdefba 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,8 @@ } ] , "devDependencies": { - "btoa": "~1.1.1" + "browserstack-runner": "~0.0.12" + , "btoa": "~1.1.1" , "grunt": "~0.4.1" , "grunt-contrib-clean": "~0.5.0" , "grunt-contrib-concat": "~0.3.0" @@ -33,6 +34,5 @@ , "grunt-html-validation": "~0.1.5" , "grunt-jekyll": "~0.4.0" , "grunt-recess": "~0.4.0" - , "browserstack-runner": "~0.0.12" } }