2018-02-23 18:46:09 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-widget-container" :class="{ naked }">
|
2018-03-06 06:33:01 +01:00
|
|
|
<header :class="{ withGradient }" v-if="showHeader">
|
2018-02-23 18:46:09 +01:00
|
|
|
<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
|
|
|
|
}
|
2018-03-06 06:33:01 +01:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
withGradient(): boolean {
|
2018-05-27 06:49:09 +02:00
|
|
|
return this.$store.getters.isSignedIn
|
|
|
|
? this.$store.state.settings.gradientWindowHeader != null
|
|
|
|
? this.$store.state.settings.gradientWindowHeader
|
2018-03-06 06:33:01 +01:00
|
|
|
: false
|
|
|
|
: false;
|
|
|
|
}
|
2018-02-23 18:46:09 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-04-19 20:41:24 +02:00
|
|
|
root(isDark)
|
2018-09-26 13:28:13 +02:00
|
|
|
background var(--face)
|
2018-09-22 13:39:12 +02:00
|
|
|
box-shadow var(--shadow)
|
|
|
|
border-radius var(--round)
|
2018-02-23 18:46:09 +01:00
|
|
|
overflow hidden
|
|
|
|
|
|
|
|
&.naked
|
|
|
|
background transparent !important
|
2018-09-22 08:58:11 +02:00
|
|
|
box-shadow none !important
|
2018-02-23 18:46:09 +01:00
|
|
|
|
|
|
|
> header
|
2018-09-26 13:28:13 +02:00
|
|
|
background var(--faceHeader)
|
2018-04-19 20:41:24 +02:00
|
|
|
|
2018-02-23 18:46:09 +01:00
|
|
|
> .title
|
|
|
|
z-index 1
|
|
|
|
margin 0
|
|
|
|
padding 0 16px
|
|
|
|
line-height 42px
|
|
|
|
font-size 0.9em
|
|
|
|
font-weight bold
|
2018-04-19 20:41:24 +02:00
|
|
|
color isDark ? #e3e5e8 : #888
|
2018-04-29 01:51:17 +02:00
|
|
|
box-shadow 0 1px rgba(#000, 0.07)
|
2018-02-23 18:46:09 +01:00
|
|
|
|
|
|
|
> [data-fa]
|
2018-04-25 15:50:59 +02:00
|
|
|
margin-right 6px
|
2018-02-23 18:46:09 +01:00
|
|
|
|
|
|
|
&:empty
|
|
|
|
display none
|
|
|
|
|
|
|
|
> button
|
|
|
|
position absolute
|
|
|
|
z-index 2
|
|
|
|
top 0
|
|
|
|
right 0
|
|
|
|
padding 0
|
|
|
|
width 42px
|
|
|
|
font-size 0.9em
|
|
|
|
line-height 42px
|
2018-09-27 07:32:48 +02:00
|
|
|
color var(--faceTextButton)
|
2018-02-23 18:46:09 +01:00
|
|
|
|
|
|
|
&:hover
|
2018-09-27 07:32:48 +02:00
|
|
|
color var(--faceTextButtonHover)
|
2018-02-23 18:46:09 +01:00
|
|
|
|
|
|
|
&:active
|
2018-04-19 20:41:24 +02:00
|
|
|
color isDark ? #b2c1d5 : #999
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-03-06 06:33:01 +01:00
|
|
|
&.withGradient
|
|
|
|
> .title
|
2018-04-19 20:41:24 +02:00
|
|
|
background isDark ? linear-gradient(to bottom, #313543, #1d2027) : linear-gradient(to bottom, #fff, #ececec)
|
2018-03-06 06:33:01 +01:00
|
|
|
box-shadow 0 1px rgba(#000, 0.11)
|
2018-04-19 20:41:24 +02:00
|
|
|
|
|
|
|
.mk-widget-container[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-widget-container:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-23 18:46:09 +01:00
|
|
|
</style>
|