summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components/google.vue
blob: 8272961ef20c35fd3ed9b0ab183b2a36a741e5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<template>
<div class="mk-google">
	<input type="search" v-model="query" :placeholder="q">
	<button @click="search">%fa:search% %i18n:common.search%</button>
</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>
root(isDark)
	display flex
	margin 8px 0

	> input
		flex-shrink 1
		padding 10px
		width 100%
		height 40px
		font-family sans-serif
		font-size 16px
		color isDark ? #dee4e8 : #55595c
		background isDark ? #191b22 : #fff
		border solid 1px isDark ? #495156 : #dadada
		border-radius 4px 0 0 4px

		&:hover
			border-color isDark ? #777c86 : #b0b0b0

	> button
		flex-shrink 0
		padding 0 16px
		border solid 1px isDark ? #495156 : #dadada
		border-left none
		border-radius 0 4px 4px 0

		&:hover
			background-color isDark ? #2e3440 : #eee

		&:active
			box-shadow 0 2px 4px rgba(#000, 0.15) inset

.mk-google[data-darkmode]
	root(true)

.mk-google:not([data-darkmode])
	root(false)

</style>