pulsar/static/image-view.less
Nathan Sobo 9d987ac911 Set box-sizing: content-box on image-view img tags
Bootstrap sets box-sizing: border-box everywhere. It's often a good
idea, but in this case it screws up the specs for the image view.
2013-04-15 20:45:55 -06:00

16 lines
261 B
Plaintext

.image-view {
height:100%;
width: 100%;
margin: 0;
padding: 0;
overflow: auto;
img {
box-sizing: content-box;
padding: 25px;
border: 2px solid;
background-image: url(images/transparent-background.gif);
position: relative;
}
}