mirror of https://github.com/rancher/dashboard.git
104 lines
2.0 KiB
Vue
104 lines
2.0 KiB
Vue
<script>
|
|
import Closeable from '@/mixins/closeable';
|
|
import BrandImage from '@/components/BrandImage';
|
|
|
|
export default {
|
|
components: { BrandImage },
|
|
mixins: [Closeable],
|
|
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
titleKey: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
|
|
small: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="shown" class="banner-graphic" :class="{'small': small}">
|
|
<div class="graphic">
|
|
<BrandImage class="banner" file-name="banner.svg" :draggable="false" />
|
|
</div>
|
|
<div v-if="titleKey" class="title">
|
|
<t :k="titleKey" />
|
|
</div>
|
|
<h1 v-else-if="title" class="title" v-html="title"></h1>
|
|
<div v-if="pref" class="close-button" @click="hide()">
|
|
<i class="icon icon-close" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
$banner-height: 240px;
|
|
$banner-height-small: 200px;
|
|
|
|
.banner-graphic {
|
|
position: relative;
|
|
|
|
.close-button {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
}
|
|
|
|
&:hover .close-button {
|
|
visibility: visible;
|
|
position: absolute;
|
|
right: 4px;
|
|
top: 4px;
|
|
font-size: 16px;
|
|
padding: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
opacity: 0.4;
|
|
|
|
&:hover {
|
|
background-color: var(--accent-btn-hover);
|
|
color: var(--accent-btn-hover-text);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.graphic {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: $banner-height;
|
|
overflow: hidden;
|
|
> img.banner {
|
|
flex: 1;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
.title {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
text-align: center;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
margin-top: -20px;
|
|
}
|
|
&.small {
|
|
.graphic {
|
|
height: $banner-height-small;
|
|
img.banner {
|
|
margin-top: math.div(($banner-height-small - $banner-height), 2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|