aboutsummaryrefslogtreecommitdiffstats
path: root/core/css/tooltip.scss
blob: c430fa7ac20d129c90c933a534ffb0c8fe5437f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*!
 * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
 * SPDX-FileCopyrightText: 2011-2015 Twitter, Inc. (Bootstrap (http://getbootstrap.com))
 * SPDX-License-Identifier: MIT
 */

.tooltip {
    position: absolute;
    display: block;
    font-family: var(--font-face);
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.6;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    overflow-wrap: anywhere;
    font-size: 12px;
    opacity: 0;
    z-index: 100000;
    /* default to top */
    margin-top: -3px;
    padding: 10px 0;
    filter: drop-shadow(0 1px 10px var(--color-box-shadow));
    &.in,
    &.show,
    &.tooltip[aria-hidden='false'] {
        visibility: visible;
        opacity: 1;
        transition: opacity .15s;
    }
    &.top .tooltip-arrow,
    &[x-placement^='top'] {
        left: 50%;
        margin-left: -10px;
    }
    &.bottom,
    &[x-placement^='bottom'] {
        margin-top: 3px;
        padding: 10px 0;
    }
    &.right,
    &[x-placement^='right'] {
        margin-left: 3px;
        padding: 0 10px;
        .tooltip-arrow {
            top: 50%;
            left: 0;
            margin-top: -10px;
            border-width: 10px 10px 10px 0;
            border-right-color: var(--color-main-background);
        }
    }
    &.left,
    &[x-placement^='left'] {
        margin-left: -3px;
        padding: 0 5px;
        .tooltip-arrow {
            top: 50%;
            right: 0;
            margin-top: -10px;
            border-width: 10px 0 10px 10px;
            border-left-color: var(--color-main-background);
        }
    }
    /* TOP */
    &.top,
    &.top-left,
    &[x-placement^='top'],
    &.top-right {
        .tooltip-arrow, .arrow {
            bottom: 0;
            border-width: 10px 10px 0;
            border-top-color: var(--color-main-background);
        }
    }
    &.top-left .tooltip-arrow {
        right: 10px;
        margin-bottom: -10px;
    }
    &.top-right .tooltip-arrow {
        left: 10px;
        margin-bottom: -10px;
    }
    /* BOTTOM */
    &.bottom,
    &[x-placement^='bottom'],
    &.bottom-left,
    &.bottom-right {
        .tooltip-arrow, .arrow {
            top: 0;
            border-width: 0 10px 10px;
            border-bottom-color: var(--color-main-background);
        }
    }
    &[x-placement^='bottom'] .tooltip-arrow,
    &.bottom .tooltip-arrow {
        left: 50%;
        margin-left: -10px;
    }
    &.bottom-left .tooltip-arrow {
        right: 10px;
        margin-top: -10px;
    }
    &.bottom-right .tooltip-arrow {
        left: 10px;
        margin-top: -10px;
    }
}

.tooltip-inner {
    max-width: 350px;
    padding: 5px 8px;
    background-color: var(--color-main-background);
    color: var(--color-main-text);
    text-align: center;
    border-radius: var(--border-radius);
}

.tooltip-arrow, .tooltip .arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}