Skip to content

Commit

Permalink
change author box style
Browse files Browse the repository at this point in the history
  • Loading branch information
summerblue committed Aug 8, 2016
1 parent 89d8a94 commit b1d49ee
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/build/assets/css/styles.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/build/rev-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"assets/css/styles.css": "assets/css/styles-74fae477a8.css",
"assets/css/styles.css": "assets/css/styles-b3e651f497.css",
"assets/js/scripts.js": "assets/js/scripts-707398ded8.js"
}
4 changes: 2 additions & 2 deletions resources/assets/sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,7 @@ span.timeago {

.topic-author-box{
.list-inline {
margin-bottom: 0px;
margin-bottom: 10px;

li {
padding-left: 5px;
Expand All @@ -1366,7 +1366,7 @@ span.timeago {
}
}
.media-heading {
margin-bottom: 2px;
margin-bottom: 8px;
}
a {
color: inherit;
Expand Down
5 changes: 3 additions & 2 deletions resources/views/topics/partials/topic_author_box.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@endif

<a href="{{ route('users.show', $topic->user->id) }}">
<img src="{{ $topic->user->present()->gravatar }}" style="width:75px; height:75px;" class="img-thumbnail avatar" />
<img src="{{ $topic->user->present()->gravatar }}" style="width:80px; height:80px;margin:5px;" class="img-thumbnail avatar" />
</a>

<div class="media-body padding-top-sm">
Expand All @@ -21,6 +21,8 @@
</div>
@endif

<hr>

<ul class="list-inline">

@if ($topic->user->real_name)
Expand Down Expand Up @@ -78,6 +80,5 @@

</ul>

<br>
<div class="clearfix"></div>
</div>

0 comments on commit b1d49ee

Please sign in to comment.