anki/ts/components/Popover.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

55 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 { slide } from "svelte/transition";
import { pageTheme } from "../sveltelib/theme";
export let scrollable = false;
</script>
<div
class="popover"
class:scrollable
class:dark={$pageTheme.isDark}
transition:slide={{ duration: 200 }}
>
<slot />
</div>
<style lang="scss">
@use "sass/vars";
.popover {
border-radius: 5px;
background-color: var(--canvas-elevated);
min-width: var(--popover-width, 1rem);
max-width: 95vw;
/* Needs this much space for FloatingArrow to be positioned */
padding: var(--popover-padding-block, 6px) var(--popover-padding-inline, 6px);
font-size: 1rem;
color: var(--fg);
/* outer border */
border: 1px solid vars.palette(lightgray, 6);
&.dark {
border-color: vars.palette(darkgray, 9);
}
/* inner border */
box-shadow: inset 0 0 0 1px vars.palette(lightgray, 3);
&.dark {
box-shadow: inset 0 0 0 1px vars.palette(darkgray, 2);
}
&.scrollable {
max-height: 80vh;
overflow: hidden auto;
}
}
</style>