From 1aedb7862ccf93bb983652bc24c11cc9f01699d3 Mon Sep 17 00:00:00 2001 From: syed Date: Sun, 28 Jul 2013 17:32:08 +0500 Subject: move things around Moved alerts, badges, button groups, buttons, carousel, close to variables.less and customize.html --- less/carousel.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'less/carousel.less') diff --git a/less/carousel.less b/less/carousel.less index 3526089c2..98ce5916b 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -69,9 +69,9 @@ top: 0; left: 0; bottom: 0; - width: 15%; - .opacity(.5); - font-size: 20px; + width: @carousel-control-width; + .opacity(@carousel-control-opacity); + font-size: @carousel-control-font-size; color: @carousel-control-color; text-align: center; text-shadow: @carousel-text-shadow; @@ -133,7 +133,7 @@ bottom: 10px; left: 50%; z-index: 15; - width: 120px; + width: @carousel-indicators-width; margin-left: -60px; padding-left: 0; list-style: none; -- cgit v1.2.3 From bac9e80a460c314209d1ee676a0eb44b9574db89 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 5 Aug 2013 11:59:32 -0700 Subject: Fixes #8872: widen the carousel indicators to prevent wrapping --- less/carousel.less | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'less/carousel.less') diff --git a/less/carousel.less b/less/carousel.less index 3526089c2..7e391e6d5 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -127,14 +127,17 @@ } // Optional indicator pips -// ----------------------------- +// +// Add an unordered list with the follow class and add a list item for each +// slide your carousel holds. + .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; - width: 120px; - margin-left: -60px; + width: 60%; + margin-left: -30%; padding-left: 0; list-style: none; text-align: center; -- cgit v1.2.3 From c321adf2896f67eb35d72c609409bd710a10fdec Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 5 Aug 2013 13:13:54 -0700 Subject: carousel.less: copyedit explanatory comment --- less/carousel.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/carousel.less') diff --git a/less/carousel.less b/less/carousel.less index 7e391e6d5..cf0d1e216 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -128,7 +128,7 @@ // Optional indicator pips // -// Add an unordered list with the follow class and add a list item for each +// Add an unordered list with the following class and add a list item for each // slide your carousel holds. .carousel-indicators { -- cgit v1.2.3 From 3f3dfc54e77036e726154e21d1a34f1f5918b4d7 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 6 Aug 2013 18:05:37 -0700 Subject: update use of mixins and add bg-colors where necessary --- less/carousel.less | 2 -- 1 file changed, 2 deletions(-) (limited to 'less/carousel.less') diff --git a/less/carousel.less b/less/carousel.less index 045cd52f3..fbb479904 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -81,13 +81,11 @@ // Set gradients for backgrounds &.left { #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001)); - background-color: transparent; } &.right { left: auto; right: 0; #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5)); - background-color: transparent; } // Hover/focus state -- cgit v1.2.3 From f69833f9a92615dbad9cbd886f09b7e9e542b538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Gonz=C3=A1lez=20de=20Ag=C3=BCero?= Date: Thu, 8 Aug 2013 12:21:27 +0200 Subject: Removed Glyphicons mention from carousel.less --- less/carousel.less | 1 - 1 file changed, 1 deletion(-) (limited to 'less/carousel.less') diff --git a/less/carousel.less b/less/carousel.less index fbb479904..8d31d7e49 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -97,7 +97,6 @@ } // Toggles - .glyphicon, .icon-prev, .icon-next { position: absolute; -- cgit v1.2.3 From d80d9251efe88f7ff80b84e28b01292a02dc634a Mon Sep 17 00:00:00 2001 From: ggam Date: Mon, 12 Aug 2013 14:20:17 +0200 Subject: Removed remaining Glyphicons mentions in carousel.less --- less/carousel.less | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'less/carousel.less') diff --git a/less/carousel.less b/less/carousel.less index 8d31d7e49..d94108de5 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -110,7 +110,7 @@ margin-left: -10px; font-family: serif; } - // Non-glyphicon toggles + .icon-prev { &:before { content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039) @@ -181,7 +181,6 @@ @media screen and (min-width: @screen-tablet) { // Scale up the controls a smidge - .carousel-control .glyphicon, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; -- cgit v1.2.3