mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-10 23:25:31 +08:00
Fix shared task issues [SCI-9226]
This commit is contained in:
parent
5ad6b27f9c
commit
c82a1b1108
5 changed files with 8 additions and 4 deletions
|
@ -67,6 +67,8 @@ label {
|
|||
* Global fix for handsontable
|
||||
*/
|
||||
.hot-table-container {
|
||||
display: flex;
|
||||
overflow: auto;
|
||||
.ht_master .wtHolder {
|
||||
height: auto !important;
|
||||
width: auto !important;
|
||||
|
|
|
@ -29,6 +29,8 @@ div.print-report {
|
|||
}
|
||||
|
||||
.hot-table-container {
|
||||
display: flex;
|
||||
overflow: auto;
|
||||
.ht_master .wtHolder {
|
||||
overflow: hidden !important;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
</span>
|
||||
</div>
|
||||
|
||||
<div class="my-5 flex-1 bg-sn-white">
|
||||
<div class="my-5 max-w-4xl flex-1 bg-sn-white">
|
||||
<div class="content-pane flexible">
|
||||
<%= render partial: 'shareable_links/my_modules/header_actions' %>
|
||||
<div class="px-4">
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
<div class="comment-container">
|
||||
<div class="avatar-placehodler">
|
||||
<span class='global-avatar-container'>
|
||||
<%= image_tag avatar_path(comment.user, :icon_small), class: 'avatar' %>
|
||||
<%= image_tag user_avatar_absolute_url(comment.user, :icon_small, true), class: 'user-avatar' %>
|
||||
</span>
|
||||
</div>
|
||||
<div class="content-placeholder">
|
||||
<div class="comment-name"><%= comment.user.full_name %></div>
|
||||
<div class="comment-right !w-fit">
|
||||
<div class="comment-datetime !w-fit"><%= comment.created_at.iso8601 %></div>
|
||||
<div class="comment-datetime !w-fit"><%= l(comment.created_at, format: :full) %></div>
|
||||
</div>
|
||||
<div class="comment-message">
|
||||
<div class="view-mode"><%= smart_annotation_text(comment.message) %></div>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<% if element.name.present? %>
|
||||
<div class="step-element-name">
|
||||
<%= render partial: "shareable_links/my_modules/inline_view", locals: { text: element.name, smart_annotation_enabled: false } %>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
<div class="step-table view locked" tabindex="0">
|
||||
|
|
Loading…
Add table
Reference in a new issue