Fix text wrapping on long urls in ios theme
// FREEBIE
This commit is contained in:
parent
c8f0fe3fbb
commit
2fec5ee867
2 changed files with 4 additions and 1 deletions
|
@ -100,6 +100,8 @@ $ios-border-color: rgba(0,0,0,0.1);
|
|||
display: inline-block;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
word-break: break-word;
|
||||
|
||||
&:before, &:after {
|
||||
content: '';
|
||||
display: block;
|
||||
|
|
|
@ -1423,7 +1423,8 @@ li.entry .error-icon-container {
|
|||
.ios .bubble .content .body {
|
||||
display: inline-block;
|
||||
padding: 10px;
|
||||
position: relative; }
|
||||
position: relative;
|
||||
word-break: break-word; }
|
||||
.ios .bubble .content .body:before, .ios .bubble .content .body:after {
|
||||
content: '';
|
||||
display: block;
|
||||
|
|
Loading…
Reference in a new issue