[wip] darkmode

This commit is contained in:
syuilo
2018-04-20 03:56:58 +09:00
parent f2fea7f3cd
commit cba07d08d0
2 changed files with 29 additions and 101 deletions

View File

@@ -1,10 +1,11 @@
<template>
<div class="mkw-notifications">
<template v-if="!props.compact">
<p class="title">%fa:R bell%%i18n:@title%</p>
<button @click="settings" title="%i18n:@settings%">%fa:cog%</button>
</template>
<mk-notifications/>
<mk-widget-container :show-header="!props.compact">
<template slot="header">%fa:R bell%%i18n:@title%</template>
<button slot="func" title="%i18n:@settings%" @click="settings">%fa:cog%</button>
<mk-notifications :class="$style.notifications"/>
</mk-widget-container>
</div>
</template>
@@ -27,44 +28,9 @@ export default define({
});
</script>
<style lang="stylus" scoped>
.mkw-notifications
background #fff
border solid 1px rgba(0, 0, 0, 0.075)
border-radius 6px
> .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
> 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
> .mk-notifications
max-height 300px
overflow auto
<style lang="stylus" module>
.notifications
max-height 300px
overflow auto
</style>