mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-01 04:32:16 +08:00
Fix css for results
This commit is contained in:
parent
0e865f8e45
commit
8c57ed3109
3 changed files with 4 additions and 5 deletions
|
@ -10,12 +10,11 @@
|
|||
.add-result-toolbar {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.add-result-text {
|
||||
display: inline-block;
|
||||
line-height: 36px;
|
||||
margin-bottom: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -750,7 +750,7 @@ ul.double-line > li {
|
|||
|
||||
.panel-options {
|
||||
position: relative;
|
||||
bottom: 6px;
|
||||
bottom: 8px;
|
||||
}
|
||||
|
||||
.panel-footer {
|
||||
|
|
|
@ -14,13 +14,13 @@
|
|||
<div class="panel-heading">
|
||||
<div class="panel-options pull-right">
|
||||
<% if result.editable? && can_manage_module?(result.my_module) %>
|
||||
<a class="btn btn-link edit-result-button <%= edit_result_button_class(result) %>" id="<%= result.id %>_edit" href="<%= edit_result_link(result) %>" data-remote="true" title="<%= t'my_modules.results.options.edit_title' %>">
|
||||
<a class="btn btn-light icon-btn edit-result-button <%= edit_result_button_class(result) %>" id="<%= result.id %>_edit" href="<%= edit_result_link(result) %>" data-remote="true" title="<%= t'my_modules.results.options.edit_title' %>">
|
||||
<span class="fas fa-pencil-alt"></span>
|
||||
</a>
|
||||
<% end %>
|
||||
<% if can_manage_result?(result) %>
|
||||
<a href="#"
|
||||
class="btn btn-link form-submit-link"
|
||||
class="btn btn-light icon-btn form-submit-link"
|
||||
data-form-id="result-archive-form-<%= result.id %>"
|
||||
data-confirm-text="<%= t('my_modules.results.archive_confirm') %>"
|
||||
title="<%= t'my_modules.results.options.archive_title' %>"
|
||||
|
|
Loading…
Reference in a new issue