From: Ross Allen Date: Sun, 28 Jul 2013 03:14:49 +0000 (-0700) Subject: Match .carousel-inner specificity to beat styles X-Git-Tag: v3.0.0~81^2~11^2~1^2~7^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c834b4027c88f3d3fe28597f136968c9fdac848f;p=thirdparty%2Fbootstrap.git Match .carousel-inner specificity to beat styles '.carousel ing' was replaced with '.carousel-inner > .item > img' in 3.0 and now loses the specificity war. To make carousel images 500px tall, match specificity to make carousel.css win. --- diff --git a/carousel/carousel.css b/carousel/carousel.css index 49f8483a26..24b96f9c31 100644 --- a/carousel/carousel.css +++ b/carousel/carousel.css @@ -40,7 +40,7 @@ body { .carousel .item { height: 500px; } -.carousel img { +.carousel-inner > .item > img { position: absolute; top: 0; left: 0;