From: Mark Otto Date: Tue, 2 Jul 2013 01:16:59 +0000 (-0700) Subject: fixes #7367: slightly larger carousel indicators X-Git-Tag: v3.0.0-rc1~198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9df1db50221fe033a0b7bc216fa2de5b6eea17a;p=thirdparty%2Fbootstrap.git fixes #7367: slightly larger carousel indicators --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 1ec4304d6a..f09e4789cb 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4414,24 +4414,26 @@ a.list-group-item.active > .badge, z-index: 15; width: 100px; padding-left: 0; - margin: 0 0 0 -50px; + margin-left: -50px; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; - width: 8px; - height: 8px; - margin-right: 0; - margin-left: 0; + width: 10px; + height: 10px; + margin: 1px; text-indent: -999px; cursor: pointer; border: 1px solid #fff; - border-radius: 5px; + border-radius: 10px; } .carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; background-color: #fff; } diff --git a/less/carousel.less b/less/carousel.less index d0f636cf8a..8834c6f7b8 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -120,23 +120,25 @@ left: 50%; z-index: 15; width: 100px; - margin: 0 0 0 -50px; + margin-left: -50px; padding-left: 0; list-style: none; text-align: center; li { display: inline-block; - width: 8px; - height: 8px; - margin-left: 0; - margin-right: 0; + width: 10px; + height: 10px; + margin: 1px; text-indent: -999px; border: 1px solid #fff; - border-radius: 5px; + border-radius: 10px; cursor: pointer; } .active { + margin: 0; + width: 12px; + height: 12px; background-color: #fff; } }