933ee647bc
* Remove background and border from scrollArea * Fix 1px of background text showing above template header on scroll I couldn't figure out the reason for this "clipping" issue. What I tried: - check HTML structure for any elements that might add extra padding/margin - remove the 1px border of the header * Adjust spacing to be more in line with rest of UI
53 lines
1.6 KiB
Svelte
53 lines
1.6 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 * as tr from "../lib/ftl";
|
|
import marked from "marked";
|
|
import { ChangeNotetypeState, MapContext } from "./lib";
|
|
import Container from "../components/Container.svelte";
|
|
import Row from "../components/Row.svelte";
|
|
import Col from "../components/Col.svelte";
|
|
import NotetypeSelector from "./NotetypeSelector.svelte";
|
|
import StickyNav from "./StickyNav.svelte";
|
|
import Mapper from "./Mapper.svelte";
|
|
|
|
export let state: ChangeNotetypeState;
|
|
$: info = state.info;
|
|
let offset: number;
|
|
</script>
|
|
|
|
<div bind:offsetHeight={offset}>
|
|
<NotetypeSelector {state} />
|
|
</div>
|
|
|
|
<div id="scrollArea" style="--offset: {offset}px; --gutter-inline: 0.25rem;">
|
|
<Row class="gx-0" --cols={2}>
|
|
<Col --col-size={1} breakpoint="md">
|
|
<Container>
|
|
<StickyNav {state} ctx={MapContext.Field} />
|
|
<Mapper {state} ctx={MapContext.Field} />
|
|
</Container>
|
|
</Col>
|
|
<Col --col-size={1} breakpoint="md">
|
|
<Container>
|
|
<StickyNav {state} ctx={MapContext.Template} />
|
|
{#if $info.templates}
|
|
<Mapper {state} ctx={MapContext.Template} />
|
|
{:else}
|
|
<div>{@html marked(tr.changeNotetypeToFromCloze())}</div>
|
|
{/if}
|
|
</Container>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
|
|
<style>
|
|
#scrollArea {
|
|
padding: 0;
|
|
overflow: hidden auto;
|
|
height: calc(100% - var(--offset));
|
|
}
|
|
</style>
|