mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 13:13:22 +08:00
Merge pull request #6209 from aignatov-bio/ai-sci-9149-fix-text-field-in-safari
Fix text field width and table header [SCI-9149]
This commit is contained in:
commit
59b545353a
2 changed files with 2 additions and 2 deletions
|
@ -130,7 +130,7 @@
|
|||
padding: 0 .5em;
|
||||
position: sticky;
|
||||
position: -webkit-sticky;
|
||||
top: calc(var(--content-header-size) + var(--navbar-height));
|
||||
top: var(--content-header-size);
|
||||
z-index: 2;
|
||||
|
||||
&.select-all-checkboxes {
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
@delete="showDeleteModal"
|
||||
></MenuDropdown>
|
||||
</div>
|
||||
<div class="flex rounded ml-8 pl-1 min-h-[2.25rem] mb-4 relative w-full group/text_container content__text-body" :class="{ 'edit': inEditMode, 'component__element--locked': !element.attributes.orderable.urls.update_url }" @keyup.enter="enableEditMode($event)" tabindex="0">
|
||||
<div class="flex rounded ml-8 pl-1 min-h-[2.25rem] mb-4 relative group/text_container content__text-body" :class="{ 'edit': inEditMode, 'component__element--locked': !element.attributes.orderable.urls.update_url }" @keyup.enter="enableEditMode($event)" tabindex="0">
|
||||
<Tinymce
|
||||
v-if="element.attributes.orderable.urls.update_url"
|
||||
:value="element.attributes.orderable.text"
|
||||
|
|
Loading…
Reference in a new issue