From c834b4027c88f3d3fe28597f136968c9fdac848f Mon Sep 17 00:00:00 2001 From: Ross Allen Date: Sat, 27 Jul 2013 20:14:49 -0700 Subject: [PATCH] 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. --- carousel/carousel.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2