2018-06-14 00:22:50 +02:00
|
|
|
<template>
|
2018-06-15 00:56:56 +02:00
|
|
|
<div class="ui-button" :class="[styl]">
|
|
|
|
<button :type="type" @click="$emit('click')">
|
2018-06-14 00:22:50 +02:00
|
|
|
<slot></slot>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
}
|
2018-06-14 11:57:54 +02:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
styl: 'fill'
|
|
|
|
};
|
|
|
|
},
|
2018-06-15 00:56:56 +02:00
|
|
|
inject: {
|
|
|
|
isCardChild: { default: false }
|
|
|
|
},
|
2018-06-14 11:57:54 +02:00
|
|
|
created() {
|
|
|
|
if (this.isCardChild) {
|
|
|
|
this.styl = 'line';
|
|
|
|
}
|
2018-06-14 00:22:50 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-06-14 11:57:54 +02:00
|
|
|
root(isDark, fill)
|
2018-06-14 00:22:50 +02:00
|
|
|
> button
|
|
|
|
display block
|
|
|
|
width 100%
|
2018-06-14 07:52:37 +02:00
|
|
|
margin 0
|
2018-06-14 00:22:50 +02:00
|
|
|
padding 0
|
|
|
|
font-weight bold
|
|
|
|
font-size 16px
|
|
|
|
line-height 44px
|
|
|
|
border none
|
|
|
|
border-radius 6px
|
|
|
|
outline none
|
|
|
|
box-shadow none
|
|
|
|
|
2018-06-14 11:57:54 +02:00
|
|
|
if fill
|
|
|
|
color $theme-color-foreground
|
|
|
|
background $theme-color
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background lighten($theme-color, 5%)
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background darken($theme-color, 5%)
|
|
|
|
else
|
|
|
|
color $theme-color
|
|
|
|
background none
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
color darken($theme-color, 5%)
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background rgba($theme-color, 0.3)
|
|
|
|
|
|
|
|
.ui-button[data-darkmode]
|
|
|
|
&.fill
|
|
|
|
root(true, true)
|
|
|
|
&:not(.fill)
|
|
|
|
root(true, false)
|
2018-06-14 07:52:37 +02:00
|
|
|
|
2018-06-14 11:57:54 +02:00
|
|
|
.ui-button:not([data-darkmode])
|
|
|
|
&.fill
|
|
|
|
root(false, true)
|
|
|
|
&:not(.fill)
|
|
|
|
root(false, false)
|
2018-06-14 07:52:37 +02:00
|
|
|
|
2018-06-14 00:22:50 +02:00
|
|
|
</style>
|