From b2dccb15d79085af2a507b6b9f2c35c0e5770ffa Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 23 Aug 2015 01:00:22 -0700 Subject: fix majority of scss linter errors --- scss/_type.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scss/_type.scss') diff --git a/scss/_type.scss b/scss/_type.scss index 2f5cdb4f9..3d349e644 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -176,8 +176,8 @@ mark, > img { @extend .img-responsive; - line-height: 1; margin-bottom: ($spacer-y / 2); + line-height: 1; } } -- cgit v1.2.3 From d51f0a4f816534e8c39ff58d8d4c562d2dd568fb Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Wed, 19 Aug 2015 16:31:31 -0400 Subject: Use double colons for psuedo elements Fix #17052 --- scss/_type.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scss/_type.scss') diff --git a/scss/_type.scss b/scss/_type.scss index 3d349e644..2d2de68ec 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -143,7 +143,7 @@ mark, line-height: $line-height; color: $blockquote-small-color; - &:before { + &::before { content: "\2014 \00A0"; // em dash, nbsp } } @@ -159,8 +159,8 @@ mark, // Account for citation footer { - &:before { content: ""; } - &:after { + &::before { content: ""; } + &::after { content: "\00A0 \2014"; // nbsp, em dash } } -- cgit v1.2.3 From 54fba7cbe598b92e76d98ac68c2b097a822a13f0 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Thu, 20 Aug 2015 17:38:40 -0400 Subject: Rename .img-responsive class to .img-fluid Fix #17166 --- scss/_type.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scss/_type.scss') diff --git a/scss/_type.scss b/scss/_type.scss index 2d2de68ec..597886db3 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -175,7 +175,7 @@ mark, display: inline-block; > img { - @extend .img-responsive; + @extend .img-fluid; margin-bottom: ($spacer-y / 2); line-height: 1; } -- cgit v1.2.3