ashleydw / lightbox

A lightbox gallery plugin for Bootstrap
http://ashleydw.github.io/lightbox
MIT License
1.85k stars 1.31k forks source link

CSS suggestion for easier white frame styling #317

Open Thornos opened 5 years ago

Thornos commented 5 years ago

This is a little thought of improvement for this neat addon:

.modal-content{
  border-radius: 0;
  background-color: transparent;
  border: none;}

.ekko-lightbox-container img{
  border:4px solid white;}

Compared to other addons I found it rather difficult to adjust something as simple as the white frame around the image. I dont see the need to create the border with a strange background color construct when it would be much easier to do it via border on the img itself. Maybe this is imported css from bootstrap itself, but this change would certainly make things easier. If border has too little options, padding would do it too of course.