anki/ts/components/StickyContainer.svelte
Matthias Metelka 23e6b2123e
Redesign deck options inputs (#2082)
* Create _input-mixins.scss

* Use button-mixins on more elements

* Replace <select> tag with custom Select component

* Fix RevertButton causing cursor: pointer when hidden

* Increase SaveButton chevron width

* Hide floating component box-shadow when inactive

* Rework SpinBox and move it into components

* Run eslint and prettier

* Remove leftover options prop

* Pass disabled array to EnumSelector again

* Update MapperRow.svelte

* Darken QHeaderView border color

Slipping this in without an extra PR.

* Adjust disabled color, border and cursor

* Remove redundant icon definition from stylesheets

* Fix deck options initial config

* Fix z-index issues in change notetype screen

It might be best to handle z-index locally in each user component instead of hard-coded component values.

* Give web SpinBox a horizontal design

* Give QRadioButton the same treatment as QCheckBox in #2079

* Fix unused CSS selector warning with base button-mixin

* Remove redundant import

* Fix deck options save button

* Delete input-mixins and remove unused down-arrow

* Run eslint on change-notetype

* Run eslint on components
2022-09-27 12:16:45 +10:00

38 lines
1018 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 Container from "./Container.svelte";
import type { Breakpoint } from "./types";
export let id: string | undefined = undefined;
let className: string = "";
export { className as class };
export let height: number = 0;
export let breakpoint: Breakpoint | "fluid" = "fluid";
</script>
<div {id} bind:offsetHeight={height} class="sticky-container {className}">
<Container {breakpoint}>
<slot />
</Container>
</div>
<style lang="scss">
.sticky-container {
position: sticky;
top: var(--sticky-top, 0);
bottom: 0;
left: 0;
right: 0;
z-index: var(--z-index, 50);
background: var(--sticky-bg, var(--canvas));
border-style: solid;
border-color: var(--sticky-border, var(--border));
border-width: var(--sticky-borders, 0);
}
</style>