From: Kevin Kirsche Date: Wed, 12 Aug 2015 12:09:18 +0000 (-0400) Subject: Use @carousel-control-font-size for in min-width sm X-Git-Tag: v3.3.6~12^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f09bbc4eca113ae1e06171c721834ddfce7a6e4;p=thirdparty%2Fbootstrap.git Use @carousel-control-font-size for in min-width sm Fix #16973 As 30px was hard coded for the following attribute values: `width`, `height`, and `font-size`, I have used the same pixel formula for each of these three as the `@carousel-control-width` is a percent value not a pixel value in variables.less --- diff --git a/less/carousel.less b/less/carousel.less index 87ed6961d4..db995d8d33 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -240,10 +240,10 @@ .glyphicon-chevron-right, .icon-prev, .icon-next { - width: 30px; - height: 30px; + width: (@carousel-control-font-size * 1.5); + height: (@carousel-control-font-size * 1.5); margin-top: -15px; - font-size: 30px; + font-size: (@carousel-control-font-size * 1.5); } .glyphicon-chevron-left, .icon-prev {