Files
ThreadNet-Web/res/css/views/elements/_Tooltip.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
2.0 KiB
Plaintext
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2019-2024 New Vector Ltd.
Copyright 2015, 2016 OpenMarket Ltd
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
2019-02-01 00:36:19 +01:00
@keyframes mx_fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
2019-02-01 00:36:19 +01:00
@keyframes mx_fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
2019-02-01 00:36:19 +01:00
}
.mx_Tooltip_chevron {
position: absolute;
left: -7px;
2022-11-21 15:48:41 +01:00
top: calc(50% - 6px);
width: 0;
height: 0;
border-top: 7px solid transparent;
2019-02-01 00:36:19 +01:00
border-right: 7px solid $menu-border-color;
border-bottom: 7px solid transparent;
2019-02-01 00:36:19 +01:00
}
2019-07-09 18:15:10 +01:00
.mx_Tooltip_chevron::after {
content: "";
2019-02-01 00:36:19 +01:00
width: 0;
height: 0;
border-top: 6px solid transparent;
border-right: 6px solid $menu-bg-color;
border-bottom: 6px solid transparent;
position: absolute;
top: -6px;
left: 1px;
}
2019-02-01 00:36:19 +01:00
.mx_Tooltip {
display: none;
position: fixed;
2020-07-16 15:15:00 +01:00
border-radius: 8px;
z-index: 6000; /* Higher than context menu so tooltips can be used everywhere */
2019-02-01 00:36:19 +01:00
padding: 10px;
pointer-events: none;
2020-03-31 15:26:23 +01:00
line-height: $font-14px;
font-size: $font-12px;
2020-07-16 15:15:00 +01:00
font-weight: 500;
max-width: 300px;
2019-02-01 00:36:19 +01:00
word-break: break-word;
background-color: var(--cpd-color-alpha-gray-1400);
color: var(--cpd-color-text-on-solid-primary);
border: 0;
text-align: center;
.mx_Tooltip_chevron {
display: none;
}
&.mx_Tooltip_visible {
animation: mx_fadein 0.2s forwards;
}
&.mx_Tooltip_invisible {
animation: mx_fadeout 0.1s forwards;
}
ul,
ol {
text-align: start; /* for list items */
}
}
2019-05-17 12:09:47 +01:00
/* These tooltips use an older style with a chevron */
2020-07-18 11:36:23 +01:00
.mx_Field_tooltip {
background-color: $menu-bg-color;
2021-08-12 11:27:12 +02:00
color: $primary-content;
2020-07-18 11:36:23 +01:00
border: 1px solid $menu-border-color;
text-align: unset;
.mx_Tooltip_chevron {
display: unset;
}
}
2020-07-16 15:15:00 +01:00
.mx_Tooltip_title {
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2020-07-16 15:15:00 +01:00
}
.mx_Tooltip_sub {
opacity: 0.7;
margin-top: 4px;
}