Sharkey/src/client/app/mobile/views/components/widget-container.vue

75 lines
1.2 KiB
Vue
Raw Normal View History

2018-02-23 19:46:09 +02:00
<template>
2018-02-23 20:33:27 +02:00
<div class="mk-widget-container" :class="{ naked, hideHeader: !showHeader }">
2018-02-23 19:46:09 +02:00
<header 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
}
}
});
</script>
<style lang="stylus" scoped>
2018-05-17 17:10:53 +03:00
root(isDark)
background isDark ? #21242f : #eee
2018-02-23 19:46:09 +02:00
border-radius 8px
2018-05-17 17:10:53 +03:00
box-shadow 0 4px 16px rgba(#000, 0.1)
2018-02-23 19:46:09 +02:00
overflow hidden
&.naked
background transparent !important
2018-02-23 20:03:26 +02:00
box-shadow none !important
2018-02-23 19:46:09 +02:00
2018-05-18 03:40:57 +03:00
&.hideHeader
background isDark ? #21242f : #fff
2018-02-23 19:46:09 +02:00
> header
> .title
margin 0
padding 8px 10px
font-size 15px
font-weight normal
2018-05-17 17:10:53 +03:00
color isDark ? #b8c5cc : #465258
background isDark ? #282c37 : #fff
2018-02-23 19:46:09 +02:00
border-radius 8px 8px 0 0
> [data-fa]
margin-right 6px
&:empty
display none
> button
position absolute
z-index 2
top 0
right 0
padding 0
width 42px
height 100%
font-size 15px
color #465258
2018-05-17 17:10:53 +03:00
.mk-widget-container[data-darkmode]
root(true)
.mk-widget-container:not([data-darkmode])
root(false)
2018-02-23 19:46:09 +02:00
</style>