summaryrefslogtreecommitdiff
path: root/src/server/web/app/desktop/views/components/widget-container.vue
blob: 68c5bcb8dcce2bcc55782b2cf7c0e5c0c30eee6a (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<template>
<div class="mk-widget-container" :class="{ naked }">
	<header :class="{ withGradient }" v-if="showHeader">
		<div class="title"><slot name="header"></slot></div>
		<slot name="func"></slot>
	</header>
	<slot></slot>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	props: {
		showHeader: {
			type: Boolean,
			default: true
		},
		naked: {
			type: Boolean,
			default: false
		}
	},
	computed: {
		withGradient(): boolean {
			return (this as any).os.isSignedIn
				? (this as any).os.i.account.clientSettings.gradientWindowHeader != null
					? (this as any).os.i.account.clientSettings.gradientWindowHeader
					: false
				: false;
		}
	}
});
</script>

<style lang="stylus" scoped>
.mk-widget-container
	background #fff
	border solid 1px rgba(0, 0, 0, 0.075)
	border-radius 6px
	overflow hidden

	&.naked
		background transparent !important
		border none !important

	> header
		> .title
			z-index 1
			margin 0
			padding 0 16px
			line-height 42px
			font-size 0.9em
			font-weight bold
			color #888
			box-shadow 0 1px rgba(0, 0, 0, 0.07)

			> [data-fa]
				margin-right 4px

			&:empty
				display none

		> button
			position absolute
			z-index 2
			top 0
			right 0
			padding 0
			width 42px
			font-size 0.9em
			line-height 42px
			color #ccc

			&:hover
				color #aaa

			&:active
				color #999

		&.withGradient
			> .title
				background linear-gradient(to bottom, #fff, #ececec)
				box-shadow 0 1px rgba(#000, 0.11)
</style>