980594252d
Confirmed correct layout in RTL mode. I experimented with adding a tooltip as well, as suggested in https://forums.ankiweb.net/t/anki-23-12-beta/37771/82, but it's confusing as we already change the mouse cursor/underline when the user hovers over a label. Given the help text universally starts with "affects the entire collection", I think that's good enough.
53 lines
1.3 KiB
Svelte
53 lines
1.3 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import ConfigInput from "../components/ConfigInput.svelte";
|
|
import RevertButton from "../components/RevertButton.svelte";
|
|
import GlobalLabel from "./GlobalLabel.svelte";
|
|
|
|
export let value: string;
|
|
export let title: string;
|
|
</script>
|
|
|
|
<div class="m-2">
|
|
<ConfigInput>
|
|
<RevertButton slot="revert" bind:value defaultValue="" />
|
|
<details>
|
|
<summary><GlobalLabel {title} /></summary>
|
|
<div class="text">
|
|
<textarea
|
|
class="card-state-customizer form-control"
|
|
bind:value
|
|
spellcheck="false"
|
|
autocapitalize="none"
|
|
/>
|
|
</div>
|
|
</details>
|
|
</ConfigInput>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.text {
|
|
width: 100%;
|
|
min-height: 2em;
|
|
}
|
|
|
|
.card-state-customizer {
|
|
background-color: var(--canvas-code);
|
|
border: 1px solid var(--border-subtle);
|
|
width: 100%;
|
|
height: 10em;
|
|
font-family: monospace;
|
|
}
|
|
|
|
@supports (-webkit-touch-callout: none) {
|
|
// mobile compat
|
|
.card-state-customizer {
|
|
font-size: 16px;
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
</style>
|