[FIX] css: rendering of inline images

Bootstrap forces the img-responsive images to be a block.
IMHO bootstrap should be killed and burned with fire but them it appears I know
nothing (John Snow) about CSS and making things looks nice so they have probably
their reason to do so.
Anyway, not that I care, let me use inline images for Flupke sake!
This commit is contained in:
Martin Trigaux 2015-10-29 10:02:31 +01:00
parent 3d60822a5d
commit 0313d915c2

View File

@ -53,4 +53,12 @@
}
.shadow-5 {
box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22), 0 19px 76px rgba(0, 0, 0, 0.3);
}
}
// overwrite bootstrap inline forcing
.img-responsive {
display: inline-block;
}
.img-responsive.center-block {
display: block;
}