iceshrimp-legacy/src/client/app/desktop/views/components/widget-container.vue

75 lines
1.2 KiB
Vue
Raw Normal View History

2018-02-23 18:46:09 +01:00
<template>
<div class="mk-widget-container" :class="{ naked }">
2018-09-27 07:52:10 +02:00
<header 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
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 12:59:19 +02:00
.mk-widget-container
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-09-27 07:52:10 +02:00
color var(--faceHeaderText)
2018-12-30 06:00:57 +01:00
box-shadow 0 var(--lineWidth) rgba(#000, 0.07)
2018-02-23 18:46:09 +01:00
> [data-icon]
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-09-27 07:52:10 +02:00
color var(--faceTextButtonActive)
2018-04-19 20:41:24 +02:00
2018-02-23 18:46:09 +01:00
</style>