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/_carousel.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scss/_carousel.scss') diff --git a/scss/_carousel.scss b/scss/_carousel.scss index c5a7fdfcb..c7d182b5a 100644 --- a/scss/_carousel.scss +++ b/scss/_carousel.scss @@ -141,12 +141,12 @@ } .icon-prev { - &:before { + &::before { content: "\2039";// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039) } } .icon-next { - &:before { + &::before { content: "\203a";// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A) } } -- 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/_carousel.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scss/_carousel.scss') diff --git a/scss/_carousel.scss b/scss/_carousel.scss index c7d182b5a..b02a2cd21 100644 --- a/scss/_carousel.scss +++ b/scss/_carousel.scss @@ -16,7 +16,7 @@ // Account for jankitude on images > img, > a > img { - @extend .img-responsive; + @extend .img-fluid; line-height: 1; } -- cgit v1.2.3