1
0
Fork 0
mirror of synced 2024-08-23 14:01:34 +12:00
budibase/packages/builder/src/common/Select.svelte

71 lines
1.1 KiB
Svelte
Raw Normal View History

<script>
2020-02-03 22:50:30 +13:00
import getIcon from "./icon"
2020-03-13 03:23:29 +13:00
export let icon
2020-02-03 22:50:30 +13:00
export let value
</script>
2020-02-03 22:50:30 +13:00
<div class="select-container">
2020-03-13 03:23:29 +13:00
{#if icon}
<i class={icon} />
{/if}
<select
class:adjusted={icon}
on:change bind:value
>
2020-02-03 22:50:30 +13:00
<slot />
</select>
<span class="arrow">
{@html getIcon('chevron-down', '24')}
</span>
</div>
<style>
.select-container {
font-size: 0.9rem;
color: var(--secondary50);
font-weight: bold;
position: relative;
max-width: 300px;
2020-03-11 05:06:30 +13:00
min-width: 200px;
}
2020-03-13 03:23:29 +13:00
.adjusted {
padding-left: 2.5em;
}
i {
position: absolute;
left: 8px;
top: 8px;
}
select {
2020-03-24 23:56:48 +13:00
height: 40px;
display: block;
font-family: sans-serif;
2020-03-24 23:56:48 +13:00
font-weight: 400;
color: #000333;
padding: 0 2.6em 0em 1.4em;
width: 100%;
max-width: 100%;
box-sizing: border-box;
margin: 0;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
2020-03-24 23:56:48 +13:00
background: var(--lightslate);
}
.arrow {
position: absolute;
right: 10px;
bottom: 0;
margin: auto;
width: 30px;
height: 30px;
pointer-events: none;
color: var(--primary100);
}
</style>