mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Reapply "Fix/Retention help button bounds (#4253)" (#4258)
This reverts commit fb2e2bd37a
.
* move div up slots instead of using condition
* Avoid tabbing
---------
Co-authored-by: Abdo <abdo@abdnh.net>
Co-authored-by: Damien Elmes <dae@users.noreply.github.com>
75 lines
1.7 KiB
Svelte
75 lines
1.7 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 { pageTheme } from "$lib/sveltelib/theme";
|
|
|
|
const rtl: boolean = window.getComputedStyle(document.body).direction == "rtl";
|
|
|
|
export let id: string | undefined = undefined;
|
|
let className: string = "";
|
|
export { className as class };
|
|
|
|
export let title: string;
|
|
</script>
|
|
|
|
<div
|
|
{id}
|
|
class="container {className}"
|
|
class:light={!$pageTheme.isDark}
|
|
class:dark={$pageTheme.isDark}
|
|
class:rtl
|
|
style:--gutter-block="2px"
|
|
style:--container-margin="0"
|
|
>
|
|
<div class="position-relative">
|
|
<h1>
|
|
{title}
|
|
</h1>
|
|
<div class="help-badge position-absolute" class:rtl>
|
|
<slot name="tooltip" />
|
|
</div>
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
@use "../sass/elevation" as *;
|
|
.container {
|
|
width: 100%;
|
|
background: var(--canvas-elevated);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--border-radius-medium, 10px);
|
|
|
|
&.light {
|
|
@include elevation(3);
|
|
}
|
|
&.dark {
|
|
@include elevation(4);
|
|
}
|
|
|
|
padding: 1rem 1.75rem 0.75rem 1.25rem;
|
|
&.rtl {
|
|
padding: 1rem 1.25rem 0.75rem 1.75rem;
|
|
}
|
|
page-break-inside: avoid;
|
|
}
|
|
h1 {
|
|
border-bottom: 1px solid var(--border);
|
|
padding-bottom: 0.25em;
|
|
}
|
|
.help-badge {
|
|
right: 0;
|
|
top: 0;
|
|
color: #555;
|
|
&.rtl {
|
|
right: unset;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
:global(.night-mode) .help-badge {
|
|
color: var(--fg);
|
|
}
|
|
</style>
|