mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-11 05:09:21 +00:00
126 lines
3.1 KiB
Svelte
126 lines
3.1 KiB
Svelte
![]() |
<!--
|
||
|
// Copyright © 2020 Anticrm Platform Contributors.
|
||
|
//
|
||
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License. You may
|
||
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
//
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<script lang="ts">
|
||
|
import type { IntlString } from '@anticrm/platform'
|
||
|
import Label from './Label.svelte'
|
||
|
|
||
|
export let label: IntlString
|
||
|
export let direction: string = 'top'
|
||
|
</script>
|
||
|
|
||
|
<div class="container">
|
||
|
<div class="trigger"><slot/></div>
|
||
|
<div class="tooltip {direction}">
|
||
|
<Label label={label}/>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.container {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
.trigger:hover + .tooltip {
|
||
|
opacity: 1;
|
||
|
&.top {
|
||
|
transform: translateY(-10px);
|
||
|
}
|
||
|
&.bottom {
|
||
|
transform: translateY(10px);
|
||
|
}
|
||
|
&.right {
|
||
|
transform: translateX(10px);
|
||
|
}
|
||
|
&.left {
|
||
|
transform: translateX(-10px);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.tooltip {
|
||
|
box-sizing: border-box;
|
||
|
position: absolute;
|
||
|
padding: 8px;
|
||
|
color: var(--theme-caption-color);
|
||
|
background-color: var(--theme-tooltip-color);
|
||
|
border: 1px solid var(--theme-bg-accent-color);
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
|
||
|
opacity: 0;
|
||
|
transition: transform .3s ease, opacity .2s ease-in-out;
|
||
|
pointer-events: none;
|
||
|
user-select: none;
|
||
|
text-align: center;
|
||
|
transition-delay: .2s;
|
||
|
z-index: 10;
|
||
|
|
||
|
&::after {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
width: 14px;
|
||
|
height: 14px;
|
||
|
background-color: var(--theme-tooltip-color);
|
||
|
border: 1px solid var(--theme-bg-accent-color);
|
||
|
border-radius: 0 0 3px;
|
||
|
mask-image: linear-gradient(-45deg, rgba(0, 0, 0, 1) 9px, rgba(0, 0, 0, 0) 9.1px);
|
||
|
}
|
||
|
|
||
|
&.top::after, &.bottom::after {
|
||
|
left: 50%;
|
||
|
margin-left: -8px;
|
||
|
}
|
||
|
&.top {
|
||
|
bottom: 100%;
|
||
|
box-shadow: 0px -8px 20px rgba(0, 0, 0, 0.25);
|
||
|
&::after {
|
||
|
bottom: -5px;
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
}
|
||
|
&.bottom {
|
||
|
top: 100%;
|
||
|
box-shadow: 0px -8px 20px rgba(0, 0, 0, 0.25);
|
||
|
&::after {
|
||
|
top: -5px;
|
||
|
transform: rotate(-135deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.right::after, &.left::after {
|
||
|
top: 50%;
|
||
|
margin-top: -8px;
|
||
|
}
|
||
|
&.right {
|
||
|
left: 100%;
|
||
|
box-shadow: -8px 0px 20px rgba(0, 0, 0, 0.25);
|
||
|
&::after {
|
||
|
left: -5px;
|
||
|
transform: rotate(135deg);
|
||
|
}
|
||
|
}
|
||
|
&.left {
|
||
|
right: 100%;
|
||
|
box-shadow: 8px 0px 20px rgba(0, 0, 0, 0.25);
|
||
|
&::after {
|
||
|
right: -5px;
|
||
|
transform: rotate(-45deg);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|