52438fe4c9
* Move focus into input field, when input is shown * Change trapFocusOut to move focus into available inputs - This means that e.g. closing the HTML editor with focus in it will focus the visual editor in turn * Prevent Control+A unselecting tag editor when no tags exist
43 lines
962 B
Svelte
43 lines
962 B
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 { createEventDispatcher } from "svelte";
|
|
|
|
import Badge from "../components/Badge.svelte";
|
|
import * as tr from "../lib/ftl";
|
|
import { richTextOff, richTextOn } from "./icons";
|
|
|
|
export let off: boolean;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
function toggle() {
|
|
dispatch("toggle");
|
|
}
|
|
|
|
$: icon = off ? richTextOff : richTextOn;
|
|
</script>
|
|
|
|
<span class="rich-text-badge" class:highlighted={off} on:click|stopPropagation={toggle}>
|
|
<Badge
|
|
tooltip={tr.editingToggleVisualEditor()}
|
|
iconSize={80}
|
|
--icon-align="text-top">{@html icon}</Badge
|
|
>
|
|
</span>
|
|
|
|
<style lang="scss">
|
|
span {
|
|
opacity: 0.4;
|
|
|
|
&.highlighted {
|
|
opacity: 1;
|
|
}
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
</style>
|