mirror of
https://github.com/ankitects/anki.git
synced 2025-12-14 07:10:59 -05:00
25 lines
552 B
Svelte
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>
|