jormungandr-bite/src/client/app/desktop/views/components/widget-container.vue

75 lines
1.2 KiB
Vue
Raw Normal View History

2018-02-23 10:46:09 -07:00
<template>
<div class="mk-widget-container" :class="{ naked }">
2018-09-26 23:52:10 -06:00
<header v-if="showHeader">
2018-02-23 10:46:09 -07: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
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 04:59:19 -06:00
.mk-widget-container
2018-09-26 05:28:13 -06:00
background var(--face)
2018-09-22 05:39:12 -06:00
box-shadow var(--shadow)
border-radius var(--round)
2018-02-23 10:46:09 -07:00
overflow hidden
&.naked
background transparent !important
2018-09-22 00:58:11 -06:00
box-shadow none !important
2018-02-23 10:46:09 -07:00
> header
2018-09-26 05:28:13 -06:00
background var(--faceHeader)
2018-04-19 12:41:24 -06:00
2018-02-23 10:46:09 -07:00
> .title
z-index 1
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
2018-09-26 23:52:10 -06:00
color var(--faceHeaderText)
2018-12-29 22:00:57 -07:00
box-shadow 0 var(--lineWidth) rgba(#000, 0.07)
2018-02-23 10:46:09 -07:00
> [data-icon]
2018-04-25 07:50:59 -06:00
margin-right 6px
2018-02-23 10:46:09 -07: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-26 23:32:48 -06:00
color var(--faceTextButton)
2018-02-23 10:46:09 -07:00
&:hover
2018-09-26 23:32:48 -06:00
color var(--faceTextButtonHover)
2018-02-23 10:46:09 -07:00
&:active
2018-09-26 23:52:10 -06:00
color var(--faceTextButtonActive)
2018-04-19 12:41:24 -06:00
2018-02-23 10:46:09 -07:00
</style>