CSS: Set width of images in descriptions to 100%
at the bottom of the geenrator pages
This commit is contained in:
parent
aad270e67e
commit
a88afc964d
|
@ -265,6 +265,7 @@ class BServer:
|
||||||
-->
|
-->
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<hr />
|
<hr />
|
||||||
|
<div class="description">
|
||||||
""")
|
""")
|
||||||
no_img_msg = _('There is no image yet. Please donate an image of your project on <a href="https://github.com/florianfesti/boxes/issues/140">GitHub</a>!')
|
no_img_msg = _('There is no image yet. Please donate an image of your project on <a href="https://github.com/florianfesti/boxes/issues/140">GitHub</a>!')
|
||||||
|
|
||||||
|
@ -278,6 +279,7 @@ class BServer:
|
||||||
|
|
||||||
result.append("""
|
result.append("""
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
""" + self.footer(lang) + """</body>
|
""" + self.footer(lang) + """</body>
|
||||||
</html>
|
</html>
|
||||||
""" )
|
""" )
|
||||||
|
|
|
@ -117,6 +117,10 @@ video {
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.description img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
-webkit-box-shadow: none;
|
-webkit-box-shadow: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
Loading…
Reference in New Issue