diff options
| author | Jason Nutter <[email protected]> | 2013-08-21 15:51:24 -0700 |
|---|---|---|
| committer | Jason Nutter <[email protected]> | 2013-08-21 15:51:24 -0700 |
| commit | a40568a1e01b864c8ef813a672abd790bf902a83 (patch) | |
| tree | f8f9676fe88fdc2a9dda5520670a447da4acfe29 /dist/css/bootstrap.css | |
| parent | 1bcf9f126d2ab72b67190e9284bb7e7ce7a94719 (diff) | |
| download | bootstrap-a40568a1e01b864c8ef813a672abd790bf902a83.tar.xz bootstrap-a40568a1e01b864c8ef813a672abd790bf902a83.zip | |
Fixing carousel control positioning
The left control should be positioned from the left, while the right
control should be positioning from the right. Positioning both from the
left results in the right carousel control being incorrectly positioned
(most noticeable with a larger than normal font size).
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 3d7e7e007..04c58c730 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -6106,12 +6106,21 @@ body.modal-open, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; - left: 50%; z-index: 5; display: inline-block; } .carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; +} + +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; +} + +.carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; |
