Skip to content

Commit 9802e93

Browse files
committed
Add hotfix for posted images max width
1 parent 15cbad4 commit 9802e93

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 1.0.5 - 2016-11-10
44

55
- Fix the Brazilian Portuguese language (renamed from pt-br to pt_br)
6+
- Fix posted images to fit within the page area and not overflow
67
- Minor code and HTML improvements
78
- Added German language pack
89

styles/prosilver/theme/pages_controller.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,10 @@
2121
.pages-content h4 { font-size: 1em }
2222
.pages-content h5 { font-size: .83em }
2323
.pages-content h6 { font-size: .75em }
24+
25+
.pages-content img.postimage {
26+
max-width: 100%;
27+
-webkit-box-sizing: border-box;
28+
-moz-box-sizing: border-box;
29+
box-sizing: border-box;
30+
}

0 commit comments

Comments
 (0)