2018-04-21 11:59:16 +02:00
|
|
|
<template>
|
|
|
|
<div class="mk-google">
|
|
|
|
<input type="search" v-model="query" :placeholder="q">
|
2018-06-23 12:35:19 +02:00
|
|
|
<button @click="search">%fa:search% %i18n:common.search%</button>
|
2018-04-21 11:59:16 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['q'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
query: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.query = this.q;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
search() {
|
|
|
|
window.open(`https://www.google.com/?#q=${this.query}`, '_blank');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-27 12:32:06 +02:00
|
|
|
.mk-google
|
2018-04-21 11:59:16 +02:00
|
|
|
display flex
|
|
|
|
margin 8px 0
|
|
|
|
|
|
|
|
> input
|
|
|
|
flex-shrink 1
|
|
|
|
padding 10px
|
|
|
|
width 100%
|
|
|
|
height 40px
|
|
|
|
font-family sans-serif
|
|
|
|
font-size 16px
|
2018-09-27 12:32:06 +02:00
|
|
|
color var(--googleSearchFg)
|
|
|
|
background var(--googleSearchBg)
|
|
|
|
border solid 1px var(--googleSearchBorder)
|
2018-04-21 11:59:16 +02:00
|
|
|
border-radius 4px 0 0 4px
|
|
|
|
|
|
|
|
&:hover
|
2018-09-27 12:32:06 +02:00
|
|
|
border-color var(--googleSearchHoverBorder)
|
2018-04-21 11:59:16 +02:00
|
|
|
|
|
|
|
> button
|
|
|
|
flex-shrink 0
|
|
|
|
padding 0 16px
|
2018-09-27 12:32:06 +02:00
|
|
|
border solid 1px var(--googleSearchBorder)
|
2018-04-21 11:59:16 +02:00
|
|
|
border-left none
|
|
|
|
border-radius 0 4px 4px 0
|
|
|
|
|
|
|
|
&:hover
|
2018-09-27 12:32:06 +02:00
|
|
|
background-color var(--googleSearchHoverButton)
|
2018-04-21 11:59:16 +02:00
|
|
|
|
|
|
|
&:active
|
|
|
|
box-shadow 0 2px 4px rgba(#000, 0.15) inset
|
|
|
|
|
|
|
|
</style>
|