2020-04-09 00:29:13 +03:00
|
|
|
import * as Constants from "~/common/constants";
|
2020-02-19 09:30:47 +03:00
|
|
|
|
2020-04-09 00:29:13 +03:00
|
|
|
import { css } from "@emotion/react";
|
2020-02-19 09:30:47 +03:00
|
|
|
|
|
|
|
/* prettier-ignore */
|
2020-04-09 00:29:13 +03:00
|
|
|
export const injectTooltipStyles = () =>
|
|
|
|
css`
|
|
|
|
.tippy-touch {
|
|
|
|
cursor: pointer !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-notransition {
|
|
|
|
transition: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper {
|
|
|
|
z-index: ${Constants.zindex.tooltip};
|
|
|
|
max-width: 400px;
|
|
|
|
perspective: 800px;
|
|
|
|
outline: 0;
|
|
|
|
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper.html-template {
|
|
|
|
max-width: 96%;
|
|
|
|
max-width: calc(100% - 20px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="top"] [x-arrow] {
|
|
|
|
border-top: 7px solid ${Constants.system.white};
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
bottom: -7px;
|
|
|
|
margin: 0 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="top"] [data-animation="fade"].enter {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="top"] [data-animation="fade"].leave {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="bottom"] [x-arrow] {
|
|
|
|
border-bottom: 7px solid ${Constants.system.white};
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
top: -7px;
|
|
|
|
margin: 0 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="bottom"] [data-animation="fade"].enter {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="bottom"] [data-animation="fade"].leave {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="left"] [x-arrow] {
|
|
|
|
border-left: 7px solid ${Constants.system.white};
|
|
|
|
border-top: 7px solid transparent;
|
|
|
|
border-bottom: 7px solid transparent;
|
|
|
|
right: -7px;
|
|
|
|
margin: 6px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="left"] [data-animation="fade"].enter {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateX(-10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="left"] [data-animation="fade"].leave {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(-10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="right"] [x-arrow] {
|
|
|
|
border-right: 7px solid ${Constants.system.white};
|
|
|
|
border-top: 7px solid transparent;
|
|
|
|
border-bottom: 7px solid transparent;
|
|
|
|
left: -7px;
|
|
|
|
margin: 6px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="right"] [data-animation="fade"].enter {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateX(10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-popper[x-placement^="right"] [data-animation="fade"].leave {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-tooltip {
|
|
|
|
font-family: ${Constants.font.text};
|
|
|
|
color: ${Constants.system.white};
|
|
|
|
background-color: ${Constants.system.pitchBlack};
|
|
|
|
position: relative;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 1rem;
|
|
|
|
padding: 12px;
|
|
|
|
text-align: center;
|
|
|
|
will-change: transform;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-tooltip[data-animatefill] {
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-tooltip[data-interactive] {
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-tooltip[data-inertia] {
|
|
|
|
transition-timing-function: cubic-bezier(0.53, 2, 0.36, 0.85);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tippy-tooltip [x-arrow] {
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 450px) {
|
|
|
|
.tippy-popper {
|
|
|
|
max-width: 96%;
|
|
|
|
max-width: calc(100% - 20px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
/* prettier-ignore */
|
|
|
|
export const injectGlobalStyles = () => css`
|
2020-02-19 09:30:47 +03:00
|
|
|
@font-face {
|
|
|
|
font-family: 'mono';
|
|
|
|
src: url('/static/SFMono-Medium.woff');
|
|
|
|
}
|
|
|
|
|
2020-04-09 00:29:13 +03:00
|
|
|
@font-face {
|
|
|
|
font-family: 'mono-bold';
|
|
|
|
src: url('/static/SFMono-Bold.woff');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'inter-regular';
|
|
|
|
src: url('/static/Inter-Regular.woff');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'inter-semi-bold';
|
|
|
|
src: url('/static/Inter-SemiBold.woff');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'inter-medium';
|
|
|
|
src: url('/static/Inter-Medium.woff');
|
|
|
|
}
|
|
|
|
|
2020-02-19 09:30:47 +03:00
|
|
|
html, body, div, span, applet, object, iframe,
|
|
|
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
|
|
a, abbr, acronym, address, big, cite, code,
|
|
|
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
|
|
small, strike, strong, sub, sup, tt, var,
|
|
|
|
b, u, i, center,
|
|
|
|
dl, dt, dd, ol, ul, li,
|
|
|
|
fieldset, form, label, legend,
|
|
|
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
|
|
article, aside, canvas, details, embed,
|
|
|
|
figure, figcaption, footer, header, hgroup,
|
|
|
|
menu, nav, output, ruby, section, summary,
|
|
|
|
time, mark, audio, video {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
article, aside, details, figcaption, figure,
|
|
|
|
footer, header, hgroup, menu, nav, section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
2020-04-09 00:29:13 +03:00
|
|
|
background: ${Constants.system.foreground};
|
|
|
|
color: ${Constants.system.black};
|
2020-02-19 09:30:47 +03:00
|
|
|
font-size: 16px;
|
2020-04-09 00:29:13 +03:00
|
|
|
font-family: 'inter-regular', -apple-system, BlinkMacSystemFont, arial, sans-serif;
|
|
|
|
scrollbar-width: none;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2020-02-19 09:30:47 +03:00
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-04-09 00:29:13 +03:00
|
|
|
|
|
|
|
@media(max-width: 1024px) {
|
|
|
|
#__next {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
:after {
|
|
|
|
background: ${Constants.system.pitchBlack};
|
|
|
|
color: ${Constants.system.white};
|
|
|
|
content: "This prototype is for desktop/laptop viewports only.";
|
|
|
|
text-align: center;
|
|
|
|
padding: 24px;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 333;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
}
|
2020-02-19 09:30:47 +03:00
|
|
|
}
|
|
|
|
`;
|