Sharkey/src/client/app/desktop/views/components/ui.header.post.vue

55 lines
957 B
Vue
Raw Normal View History

2018-02-12 14:10:16 +02:00
<template>
2018-04-07 20:30:37 +03:00
<div class="note">
<button @click="post" :title="$t('post')"><fa icon="pencil-alt"/></button>
2018-02-12 14:10:16 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-02-12 14:10:16 +02:00
export default Vue.extend({
i18n: i18n('desktop/views/components/ui.header.post.vue'),
2018-02-12 14:10:16 +02:00
methods: {
post() {
this.$post();
2018-02-12 14:10:16 +02:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-04-07 20:30:37 +03:00
.note
2018-02-12 14:10:16 +02: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
2018-09-26 14:19:35 +03:00
color var(--primaryForeground)
background var(--primary) !important
2018-02-12 14:10:16 +02:00
outline none
border none
border-radius 4px
transition background 0.1s ease
cursor pointer
*
pointer-events none
&:hover
2018-09-26 14:19:35 +03:00
background var(--primaryLighten10) !important
2018-02-12 14:10:16 +02:00
&:active
2018-09-26 14:19:35 +03:00
background var(--primaryDarken10) !important
2018-02-12 14:10:16 +02:00
transition background 0s ease
</style>