ab6a68ec49
* Refactor out Placeholder from CardInfo.svelte * Add breakpoint parameter for Container - Use `Container` component inside `TitledContainer` * Build Item into Row - Use Row in DeckOptionsPage instead of just Item * Reengineer Container/Row/Col CSS * Inline Badges next to Labels when Lable spans multiple rows * Adjust margins for mobile * Implement Col component breakpoints * Move card-info to use new Container and Row components * Join StickyHeader and StickyFooter to StickyContainer * Remove default middle vertical-alignment for Badges again * Satisfy tests * Restore inline gutters in change-notetype Mapper * Add some comment to Col and Container * Fix breaking behavior in DeckOptionsPage when multi-column * Add back toolbar left padding to counter-act buttongroup right margins * Make Label in SwitchRow take more of available space
44 lines
1016 B
Svelte
44 lines
1016 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 { getContext } from "svelte";
|
|
import { nightModeKey } from "../components/context-keys";
|
|
|
|
export let choices: string[];
|
|
export let value: number = 0;
|
|
|
|
const nightMode = getContext<boolean>(nightModeKey);
|
|
</script>
|
|
|
|
<select
|
|
bind:value
|
|
class:nightMode
|
|
class:visible-down-arrow={nightMode}
|
|
class="enum-selector form-select"
|
|
>
|
|
{#each choices as choice, idx}
|
|
<option value={idx}>{choice}</option>
|
|
{/each}
|
|
</select>
|
|
|
|
<style lang="scss">
|
|
@use "sass/night-mode" as nightmode;
|
|
@use "sass/button-mixins" as button;
|
|
|
|
.nightMode {
|
|
@include nightmode.input;
|
|
}
|
|
|
|
.enum-selector {
|
|
/* overwrite Bootstrap */
|
|
padding: 0.2rem 0.75rem;
|
|
}
|
|
|
|
.visible-down-arrow {
|
|
/* override the default down arrow */
|
|
background-image: button.down-arrow(white);
|
|
}
|
|
</style>
|