Codeinwp / Nivo-Lightbox-jQuery

A simple, flexible, responsive, retina-ready jQuery lightbox plugin.
http://dev7studios.com/nivo-lightbox
MIT License
157 stars 87 forks source link

Close image sizing issue w/ default theme if using bootstrap. #37

Open chasegiunta opened 10 years ago

chasegiunta commented 10 years ago

If using bootstrap, a global box-sizing attribute causes a small issue with the close img button, using the default theme. screen shot 2014-09-03 at 10 55 29 am I fixed this by adding

.nivo-lightbox-theme-default * {
    -webkit-box-sizing: initial !important;
    -moz-box-sizing: initial !important;
    box-sizing: initial !important;
 }

to the default.css. I've submitted a pull request for the change.