File tree 3 files changed +17
-11
lines changed
3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,9 @@ body#comment_form_error {
235
235
// Page: 'admin_post_index'
236
236
// --------------------------------------------------
237
237
body #admin_post_index {
238
- tbody td {
238
+ .item-actions {
239
+ white-space : nowrap ;
240
+
239
241
a .btn + a .btn {
240
242
margin-left : 4px ;
241
243
}
Original file line number Diff line number Diff line change 21
21
<td >{{ post .authorEmail }}</td >
22
22
<td >{% if post .publishedAt %}{{ post .publishedAt | date (' Y-m-d H:i' ) }}{% endif %}</td >
23
23
<td >
24
- <a href =" {{ path(' admin_post_show' , { id : post .id }) }}" class =" btn btn-sm btn-default" >
25
- {{ ' action.show' | trans }}
26
- </a >
27
-
28
- {% if post.isAuthor (app .user ) %}
29
- <a href =" {{ path(' admin_post_edit' , { id : post .id }) }}" class =" btn btn-sm btn-primary" >
30
- <i class =" fa fa-edit" ></i > {{ ' action.edit' | trans }}
24
+ <div class =" item-actions" >
25
+ <a href =" {{ path(' admin_post_show' , { id : post .id }) }}" class =" btn btn-sm btn-default" >
26
+ {{ ' action.show' | trans }}
31
27
</a >
32
- {% endif %}
28
+
29
+ {% if post.isAuthor (app .user ) %}
30
+ <a href =" {{ path(' admin_post_edit' , { id : post .id }) }}" class =" btn btn-sm btn-primary" >
31
+ <i class =" fa fa-edit" ></i > {{ ' action.edit' | trans }}
32
+ </a >
33
+ {% endif %}
34
+ </div >
33
35
</td >
34
36
</tr >
35
37
{% endfor %}
Original file line number Diff line number Diff line change @@ -7093,5 +7093,7 @@ body#blog_post_show .post-comment {
7093
7093
body # comment_form_error h1 .text-danger {
7094
7094
margin-bottom : 1em ; }
7095
7095
7096
- body # admin_post_index tbody td a .btn + a .btn {
7097
- margin-left : 4px ; }
7096
+ body # admin_post_index .item-actions {
7097
+ white-space : nowrap; }
7098
+ body # admin_post_index .item-actions a .btn + a .btn {
7099
+ margin-left : 4px ; }
You can’t perform that action at this time.
0 commit comments