diff options
author | Aaron Parecki <aaron@parecki.com> | 2017-01-15 07:57:40 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2017-01-15 07:57:40 -0800 |
commit | fa06932a9c1bb289cae6cbaa046c6b9c07bf5b1a (patch) | |
tree | 0ab59efc9ad700d092a40df9c65c42948f906a85 /views | |
parent | d87042ab9d05921e17dd2b3c320d199cfb067d65 (diff) |
use XRay to parse tweets
Diffstat (limited to 'views')
-rw-r--r-- | views/new-post.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/views/new-post.php b/views/new-post.php index 6ce8095..de56ddb 100644 --- a/views/new-post.php +++ b/views/new-post.php @@ -11,10 +11,10 @@ <span class="loading hidden glyphicon glyphicon-refresh glyphicon-spin form-control-feedback"></span> </div> <div class="reply-context hidden"> - <div> + <div class="reply-author"> <img src="" width="48" class="author-img"> </div> - <div> + <div class="reply-content"> <img src="" class="post-img hidden"> <div class="author"><span class="name"></span> <span class="url"></span></div> <h4 class="post-name hidden"></h4> @@ -144,6 +144,9 @@ max-height: 140px; overflow-y: hidden; } +.reply-context .reply-content { + flex: 1 0; +} .reply-context img.author-img { border-radius: 4px; width: 48px; |