-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathtt.css
More file actions
143 lines (126 loc) · 2.64 KB
/
tt.css
File metadata and controls
143 lines (126 loc) · 2.64 KB
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
135
136
137
138
139
140
141
142
143
.tsf-tooltip-super-wrap,
.tsf-tooltip-wrap {
position: relative;
}
.tsf-tooltip-super-wrap .tsf-tooltip-wrap {
position: static;
}
.tsf-tooltip-item {
cursor: help;
}
a.tsf-tooltip-item {
cursor: pointer;
}
.tsf-tooltip {
position: absolute;
padding: 0;
margin: 0;
bottom: 0;
left: 0;
z-index: 900142;
text-align: left;
pointer-events: none;
box-sizing: border-box;
display: flex;
/* flex: 1 1 auto;*/ /* Is this ever in a flex-container? */
flex-flow: row wrap;
justify-content: flex-start;
direction: ltr;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
text-size-adjust: none;
}
.tsf-tooltip-down {
bottom: auto;
top: 0;
}
.tsf-tooltip-text-wrap {
padding: 10px 12px;
font-size: 13px;
font-weight: 400;
line-height: 1.625em;
border-radius: 3px;
background: #424242;
color: #fbf7fd;
box-shadow: 0px 0px 2px rgba( 0, 0, 0, .6 );
text-shadow: none;
word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-word;
white-space: pre-line;
display: flex;
flex: 1 0 auto;
flex-flow: row wrap;
justify-content: flex-start;
}
.tsf-tooltip-text-wrap * {
color: #fbf7fd;
}
.tsf-tooltip-text span {
text-decoration: underline;
}
/* fix breaks */
.tsf-tooltip-text br {
display: block;
width: 100%;
content: "\A";
}
/* fix transparent images */
.tsf-tooltip-text img {
background: #fff;
background-image:
linear-gradient( 45deg, #d7d7d7 25%, transparent 25% ),
linear-gradient( -45deg, #d7d7d7 25%, transparent 25% ),
linear-gradient( 45deg, transparent 75%, #d7d7d7 75% ),
linear-gradient( -45deg, transparent 75%, #d7d7d7 75% );
background-size: 16px 16px;
background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
}
.tsf-tooltip-text ol,
.tsf-tooltip-text ul {
/* Padding is removed by WP via common.css, so we don't have to. */
margin-inline-start: 1.25em;
color: inherit;
}
.tsf-tooltip-arrow {
position: absolute;
bottom: -8px;
z-index: 9999999;
left: 7px;
width: 0;
height: 0;
}
.tsf-tooltip-down .tsf-tooltip-arrow {
bottom: auto;
top: -8px;
}
.tsf-tooltip-arrow:before {
content: "";
border-left: 9px solid transparent;
border-right: 9px solid transparent;
border-top: 9px solid rgba( 0, 0, 0, .25 );
position: absolute;
bottom: 0;
left: 0;
}
.tsf-tooltip-arrow:after {
content: "";
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid #424242;
position: absolute;
bottom: 1px;
left: 1px;
}
.tsf-tooltip-down .tsf-tooltip-arrow:before {
bottom: auto;
top: 0;
border-top: 0;
border-bottom: 9px solid rgba( 0, 0, 0, .25 );
}
.tsf-tooltip-down .tsf-tooltip-arrow:after {
bottom: auto;
top: 1px;
border-top: 0;
border-bottom: 8px solid #424242;
}