mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -04:00
85 lines
2.1 KiB
TypeScript
85 lines
2.1 KiB
TypeScript
/*
|
|
* Kyoo - A portable and vast media library solution.
|
|
* Copyright (c) Kyoo.
|
|
*
|
|
* See AUTHORS.md and LICENSE file in the project root for full license information.
|
|
*
|
|
* Kyoo is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* Kyoo is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Kyoo. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { Theme } from "yoshiki/native";
|
|
|
|
export const tooltip = (tooltip: string, up?: boolean) => ({
|
|
dataSet: { tooltip, label: tooltip, tooltipPos: up ? "up" : undefined },
|
|
});
|
|
|
|
export const WebTooltip = ({ theme }: { theme: Theme }) => {
|
|
const background = `${theme.light.colors.black}CC`;
|
|
|
|
return (
|
|
<style jsx global>{`
|
|
[data-tooltip] {
|
|
position: relative;
|
|
}
|
|
|
|
[data-tooltip]::after {
|
|
content: attr(data-tooltip);
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 50%;
|
|
transform: translate(-50%);
|
|
z-index: 999;
|
|
|
|
width: max-content;
|
|
max-width: 300%;
|
|
|
|
margin-top: 8px;
|
|
border-radius: 5px;
|
|
padding: 6px;
|
|
font-size: 0.8rem;
|
|
color: ${theme.colors.white};
|
|
background-color: ${background};
|
|
text-align: center;
|
|
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: opacity 0.3s ease-in-out;
|
|
}
|
|
[data-tooltip-pos]::after {
|
|
top: unset;
|
|
bottom: 100%;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
:where(body:not(.noHover)) [data-tooltip]:hover::after,
|
|
[data-tooltip]:focus-visible::after {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
:focus:not(:focus-visible) {
|
|
outline: none;
|
|
}
|
|
|
|
:focus-visible {
|
|
outline: none;
|
|
transition: box-shadow 0.15s ease-in-out;
|
|
box-shadow: 0 0 0 2px ${theme.colors.black};
|
|
}
|
|
`}</style>
|
|
);
|
|
};
|