fix overflow blockquote stream
change word-break to wrap-wrap modified: app/assets/stylesheets/stream_element.scss remove useless word-wrap global prevent for overflow global overflow fix Remove useless word-wrap modified: app/assets/stylesheets/conversations.scss modified: app/assets/stylesheets/new_styles/_base.scss modified: app/assets/stylesheets/new_styles/_code.scss modified: app/assets/stylesheets/single-post-view.scss modified: app/assets/stylesheets/stream_element.scss indent
This commit is contained in:
parent
dd9c8d5632
commit
6cf509454c
4 changed files with 9 additions and 6 deletions
|
|
@ -14,7 +14,6 @@
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0 0 1em 0;
|
margin: 0 0 1em 0;
|
||||||
word-wrap: break-word;
|
|
||||||
&:last-child { margin-bottom: 0; }
|
&:last-child { margin-bottom: 0; }
|
||||||
}
|
}
|
||||||
&.new_message { border-bottom: none; }
|
&.new_message { border-bottom: none; }
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,14 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Overflow */
|
||||||
|
h1, h2, h3, h4, h5, h6,
|
||||||
|
p,
|
||||||
|
blockquote,
|
||||||
|
code,
|
||||||
|
pre { word-wrap: break-word; }
|
||||||
|
a.tag { word-break: break-all; }
|
||||||
|
|
||||||
/* new link color */
|
/* new link color */
|
||||||
$link-blue : rgb(42,156,235);
|
$link-blue : rgb(42,156,235);
|
||||||
a { color : $link-blue }
|
a { color : $link-blue }
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,4 @@
|
||||||
code {
|
code { white-space: normal; }
|
||||||
white-space: normal;
|
|
||||||
word-wrap: break-word;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
|
|
|
||||||
|
|
@ -120,7 +120,6 @@
|
||||||
width: auto;
|
width: auto;
|
||||||
p {
|
p {
|
||||||
margin: 0 0 1em 0;
|
margin: 0 0 1em 0;
|
||||||
word-wrap: break-word;
|
|
||||||
}
|
}
|
||||||
.photo_attachments {
|
.photo_attachments {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue