2018-02-12 13:10:16 +01:00
|
|
|
<template>
|
2018-02-20 14:53:34 +01:00
|
|
|
<div class="header">
|
2018-02-12 13:10:16 +01:00
|
|
|
<mk-special-message/>
|
|
|
|
<div class="main">
|
|
|
|
<div class="backdrop"></div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="container">
|
|
|
|
<div class="left">
|
2018-02-20 14:53:34 +01:00
|
|
|
<x-nav/>
|
2018-02-12 13:10:16 +01:00
|
|
|
</div>
|
|
|
|
<div class="right">
|
2018-02-20 14:53:34 +01:00
|
|
|
<x-search/>
|
|
|
|
<x-account v-if="os.isSignedIn"/>
|
|
|
|
<x-notifications v-if="os.isSignedIn"/>
|
|
|
|
<x-post v-if="os.isSignedIn"/>
|
|
|
|
<x-clock/>
|
2018-02-12 13:10:16 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-02-20 14:53:34 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import XNav from './ui.header.nav.vue';
|
|
|
|
import XSearch from './ui.header.search.vue';
|
|
|
|
import XAccount from './ui.header.account.vue';
|
|
|
|
import XNotifications from './ui.header.notifications.vue';
|
|
|
|
import XPost from './ui.header.post.vue';
|
|
|
|
import XClock from './ui.header.clock.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
2018-02-20 17:39:51 +01:00
|
|
|
XNav,
|
|
|
|
XSearch,
|
|
|
|
XAccount,
|
|
|
|
XNotifications,
|
|
|
|
XPost,
|
|
|
|
XClock,
|
2018-02-20 14:53:34 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-02-12 13:10:16 +01:00
|
|
|
<style lang="stylus" scoped>
|
2018-02-20 14:53:34 +01:00
|
|
|
.header
|
2018-02-12 13:10:16 +01:00
|
|
|
position -webkit-sticky
|
|
|
|
position sticky
|
|
|
|
top 0
|
|
|
|
z-index 1024
|
|
|
|
width 100%
|
|
|
|
box-shadow 0 1px 1px rgba(0, 0, 0, 0.075)
|
|
|
|
|
|
|
|
> .main
|
|
|
|
|
|
|
|
> .backdrop
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
z-index 1023
|
|
|
|
width 100%
|
|
|
|
height 48px
|
|
|
|
backdrop-filter blur(12px)
|
|
|
|
background #f7f7f7
|
|
|
|
|
|
|
|
&:after
|
|
|
|
content ""
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
height 48px
|
|
|
|
background-image url(/assets/desktop/header-logo.svg)
|
|
|
|
background-size 46px
|
|
|
|
background-position center
|
|
|
|
background-repeat no-repeat
|
|
|
|
opacity 0.3
|
|
|
|
|
|
|
|
> .main
|
|
|
|
z-index 1024
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
background-clip content-box
|
|
|
|
font-size 0.9rem
|
|
|
|
user-select none
|
|
|
|
|
|
|
|
> .container
|
2018-02-13 13:01:39 +01:00
|
|
|
display flex
|
2018-02-12 13:10:16 +01:00
|
|
|
width 100%
|
|
|
|
max-width 1300px
|
|
|
|
margin 0 auto
|
|
|
|
|
|
|
|
> .left
|
2018-02-13 13:01:39 +01:00
|
|
|
margin 0 auto 0 0
|
|
|
|
height 48px
|
2018-02-12 13:10:16 +01:00
|
|
|
|
|
|
|
> .right
|
2018-02-13 13:01:39 +01:00
|
|
|
margin 0 0 0 auto
|
2018-02-12 13:10:16 +01:00
|
|
|
height 48px
|
|
|
|
|
2018-02-13 13:01:39 +01:00
|
|
|
> *
|
|
|
|
display inline-block
|
|
|
|
vertical-align top
|
|
|
|
|
2018-02-12 13:10:16 +01:00
|
|
|
@media (max-width 1100px)
|
2018-02-13 13:01:39 +01:00
|
|
|
> .mk-ui-header-search
|
2018-02-12 13:10:16 +01:00
|
|
|
display none
|
|
|
|
|
|
|
|
</style>
|