Anki/ts/editor/FieldDescription.svelte
2022-08-01 02:07:16 +02:00

25 lines
552 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<div class="field-description">
<slot />
</div>
<style>
.field-description {
position: absolute;
top: 0;
left: 0;
opacity: 0.4;
cursor: text;
/* same as in ContentEditable */
padding: 6px;
/* stay a on single line */
max-width: 95%;
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
</style>