2018-06-14 00:22:50 +02:00
|
|
|
<template>
|
2018-11-04 06:23:28 +01:00
|
|
|
<component class="dmtdnykelhudezerjlfpbhgovrgnqqgr"
|
|
|
|
:is="link ? 'a' : 'button'"
|
|
|
|
:class="[styl, { inline, primary }]"
|
|
|
|
:type="type"
|
|
|
|
@click="$emit('click')"
|
|
|
|
>
|
2018-09-28 13:39:32 +02:00
|
|
|
<slot></slot>
|
2018-10-02 19:57:31 +02:00
|
|
|
</component>
|
2018-06-14 00:22:50 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
2018-11-05 02:29:57 +01:00
|
|
|
inject: {
|
|
|
|
horizonGrouped: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
2018-06-14 00:22:50 +02:00
|
|
|
props: {
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
2018-09-28 13:39:32 +02:00
|
|
|
},
|
|
|
|
primary: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
inline: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2018-11-04 06:23:28 +01:00
|
|
|
default(): boolean {
|
|
|
|
return this.horizonGrouped;
|
|
|
|
}
|
2018-10-02 19:57:31 +02:00
|
|
|
},
|
|
|
|
link: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
2018-06-14 00:22:50 +02:00
|
|
|
}
|
2018-06-14 11:57:54 +02:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
styl: 'fill'
|
|
|
|
};
|
2018-06-14 00:22:50 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 13:39:32 +02:00
|
|
|
.dmtdnykelhudezerjlfpbhgovrgnqqgr
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
margin 0
|
2018-11-08 07:16:39 +01:00
|
|
|
padding 8px 10px
|
2018-10-02 19:57:31 +02:00
|
|
|
text-align center
|
2018-09-28 13:39:32 +02:00
|
|
|
font-weight normal
|
|
|
|
font-size 16px
|
2018-11-14 08:30:58 +01:00
|
|
|
line-height 24px
|
2018-09-28 13:39:32 +02:00
|
|
|
border none
|
|
|
|
border-radius 6px
|
|
|
|
outline none
|
|
|
|
box-shadow none
|
2018-10-02 19:57:31 +02:00
|
|
|
text-decoration none
|
|
|
|
user-select none
|
|
|
|
|
|
|
|
*
|
|
|
|
pointer-events none
|
2018-09-28 13:39:32 +02:00
|
|
|
|
2018-09-28 17:20:49 +02:00
|
|
|
&:focus
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
pointer-events none
|
|
|
|
position absolute
|
|
|
|
top -5px
|
|
|
|
right -5px
|
|
|
|
bottom -5px
|
|
|
|
left -5px
|
|
|
|
border 2px solid var(--primaryAlpha03)
|
|
|
|
border-radius 10px
|
|
|
|
|
2018-09-28 17:01:11 +02:00
|
|
|
&:not(.inline) + .dmtdnykelhudezerjlfpbhgovrgnqqgr
|
|
|
|
margin-top 16px
|
|
|
|
|
2018-09-28 13:39:32 +02:00
|
|
|
&.inline
|
|
|
|
display inline-block
|
|
|
|
width auto
|
2018-11-14 08:30:58 +01:00
|
|
|
min-width 100px
|
2018-09-28 13:39:32 +02:00
|
|
|
|
|
|
|
&.primary
|
2018-06-14 00:22:50 +02:00
|
|
|
font-weight bold
|
|
|
|
|
2018-09-28 13:39:32 +02:00
|
|
|
&.fill
|
|
|
|
color var(--text)
|
|
|
|
background var(--buttonBg)
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background var(--buttonHoverBg)
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background var(--buttonActiveBg)
|
|
|
|
|
|
|
|
&.primary
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryForeground)
|
|
|
|
background var(--primary)
|
2018-06-14 11:57:54 +02:00
|
|
|
|
|
|
|
&:hover
|
2018-09-26 13:19:35 +02:00
|
|
|
background var(--primaryLighten5)
|
2018-06-14 11:57:54 +02:00
|
|
|
|
|
|
|
&:active
|
2018-09-26 13:19:35 +02:00
|
|
|
background var(--primaryDarken5)
|
2018-06-14 11:57:54 +02:00
|
|
|
|
2018-09-28 13:39:32 +02:00
|
|
|
&:not(.fill)
|
|
|
|
color var(--primary)
|
|
|
|
background none
|
2018-06-14 11:57:54 +02:00
|
|
|
|
2018-09-28 13:39:32 +02:00
|
|
|
&:hover
|
|
|
|
color var(--primaryDarken5)
|
2018-06-14 11:57:54 +02:00
|
|
|
|
2018-09-28 13:39:32 +02:00
|
|
|
&:active
|
|
|
|
background var(--primaryAlpha03)
|
2018-06-14 07:52:37 +02:00
|
|
|
|
2018-06-14 00:22:50 +02:00
|
|
|
</style>
|