mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Merge pull request #2560 from awesomerobot/master
removing 100% image width from embedded posts
This commit is contained in:
commit
037376fd72
1 changed files with 5 additions and 8 deletions
|
@ -232,15 +232,12 @@ nav.post-controls {
|
|||
.embedded-posts {
|
||||
h1, h2, h3 {margin: 10px 0;}
|
||||
a.mention {background: darken(scale-color-diff(), 10%);}
|
||||
/* this 100% stuff is normally VERY dangerous because we're overriding
|
||||
painstakingly calculated exact image widths, but in expanded replies, we may
|
||||
be below minimum width, and expanded replies are loaded on demand anyway */
|
||||
|
||||
p img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
max-width: 579px;
|
||||
}
|
||||
.topic-body {
|
||||
width: 84%;
|
||||
width: 86%;
|
||||
padding-left: 1%;
|
||||
padding-right: 1%;
|
||||
}
|
||||
|
@ -263,10 +260,10 @@ nav.post-controls {
|
|||
// top means "in reply to expansion" above a post
|
||||
&.top {
|
||||
margin-left: 56px;
|
||||
width: 690px;
|
||||
width: 701px;
|
||||
|
||||
}
|
||||
&.top.topic-body {padding-left: 0;}
|
||||
&.top.topic-body {padding-left: 0; padding-right: 0;}
|
||||
.post-date {color: scale-color($primary, $lightness: 50%);}
|
||||
.fa-arrow-up {margin-left: 5px;}
|
||||
.row {border-top: 1px solid darken(scale-color-diff(), 10%); padding-top: 7px;}
|
||||
|
|
Loading…
Reference in a new issue