2018-02-12 13:10:16 +01:00
|
|
|
<template>
|
2018-04-07 19:30:37 +02:00
|
|
|
<div class="note">
|
2018-04-14 19:36:01 +02:00
|
|
|
<button @click="post" title="%i18n:@post%">%fa:pencil-alt%</button>
|
2018-02-12 13:10:16 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
methods: {
|
|
|
|
post() {
|
2018-02-20 15:12:29 +01:00
|
|
|
(this as any).apis.post();
|
2018-02-12 13:10:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-03 05:47:55 +01:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
.note
|
2018-02-12 13:10:16 +01:00
|
|
|
display inline-block
|
|
|
|
padding 8px
|
|
|
|
height 100%
|
|
|
|
vertical-align top
|
|
|
|
|
|
|
|
> button
|
|
|
|
display inline-block
|
|
|
|
margin 0
|
|
|
|
padding 0 10px
|
|
|
|
height 100%
|
|
|
|
font-size 1.2em
|
|
|
|
font-weight normal
|
|
|
|
text-decoration none
|
|
|
|
color $theme-color-foreground
|
|
|
|
background $theme-color !important
|
|
|
|
outline none
|
|
|
|
border none
|
|
|
|
border-radius 4px
|
|
|
|
transition background 0.1s ease
|
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
*
|
|
|
|
pointer-events none
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
background lighten($theme-color, 10%) !important
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background darken($theme-color, 10%) !important
|
|
|
|
transition background 0s ease
|
|
|
|
|
|
|
|
</style>
|