Last active
April 24, 2016 11:35
-
-
Save frugan-dev/5a8d9ca2107427600623b38c12be290c to your computer and use it in GitHub Desktop.
Bootstrap various fixes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.alert { | |
.fancybox-inner & { | |
margin-bottom: 0; | |
} | |
.media { | |
margin-top: 0; | |
//FIXED width:10000px | |
.media-body { | |
width: auto; | |
} | |
p:last-child { | |
padding-bottom: 0 !important; | |
} | |
} | |
} | |
.media { | |
.media-left, | |
.media-right { | |
.thumbnail { | |
> img { | |
max-width: none; | |
} | |
} | |
} | |
} | |
//http://stackoverflow.com/a/33791838 | |
//http://ss64.com/css/max-width.html | |
.thumbnail img, | |
.img-thumbnail { | |
width: 100%; | |
max-width: -moz-max-content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment