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 {
|
||||
margin: 0 0 1em 0;
|
||||
word-wrap: break-word;
|
||||
&:last-child { margin-bottom: 0; }
|
||||
}
|
||||
&.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 */
|
||||
$link-blue : rgb(42,156,235);
|
||||
a { color : $link-blue }
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
code {
|
||||
white-space: normal;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
code { white-space: normal; }
|
||||
|
||||
pre {
|
||||
overflow-x: auto;
|
||||
|
|
|
|||
|
|
@ -120,7 +120,6 @@
|
|||
width: auto;
|
||||
p {
|
||||
margin: 0 0 1em 0;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.photo_attachments {
|
||||
padding-bottom: 10px;
|
||||
|
|
|
|||
Loading…
Reference in a new issue