diff options
| author | Mark Otto <[email protected]> | 2015-05-13 20:48:07 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-05-13 20:48:07 -0700 |
| commit | f2adfeb62def2c968cc370c9dfa0ef4e5fc1f5cd (patch) | |
| tree | 90cde04eaf03ec0774b00f53bcf18ef0bf2f4982 | |
| parent | fdebec39571cce8d600d169f98649f687a937d19 (diff) | |
| parent | d255ba371914b638ecb040374f11673fe7c3d1db (diff) | |
| download | bootstrap-f2adfeb62def2c968cc370c9dfa0ef4e5fc1f5cd.tar.xz bootstrap-f2adfeb62def2c968cc370c9dfa0ef4e5fc1f5cd.zip | |
Merge pull request #16405 from rlindner81/Fix16371
Fixes Issue #16371 Carousel control is vertically off center
| -rw-r--r-- | less/carousel.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/carousel.less b/less/carousel.less index 6458297c6..87ed6961d 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -130,6 +130,7 @@ .glyphicon-chevron-right { position: absolute; top: 50%; + margin-top: -10px; z-index: 5; display: inline-block; } @@ -147,7 +148,6 @@ .icon-next { width: 20px; height: 20px; - margin-top: -10px; line-height: 1; font-family: serif; } |
