This repository was archived by the owner on Nov 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathangular-tooltips.css
More file actions
176 lines (169 loc) · 3.91 KB
/
angular-tooltips.css
File metadata and controls
176 lines (169 loc) · 3.91 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
* angular-tooltips
* 1.1.4
*
* Angular.js tooltips module.
* http://720kb.github.io/angular-tooltips
*
* MIT license
* Thu Jul 21 2016
*/
._exradicated-tooltip {
display: block;
opacity: 1;
position: absolute;
z-index: 999; }
tooltip {
display: inline-block;
position: relative; }
@-webkit-keyframes animate-tooltip {
0% {
opacity: 0; }
50% {
opacity: .5; }
60% {
opacity: .8; }
70% {
opacity: .9; }
90% {
opacity: 1; } }
@-moz-keyframes animate-tooltip {
0% {
opacity: 0; }
50% {
opacity: .5; }
60% {
opacity: .8; }
70% {
opacity: .9; }
90% {
opacity: 1; } }
@-ms-keyframes animate-tooltip {
tooltip 0% {
opacity: 0; }
tooltip 50% {
opacity: .5; }
tooltip 60% {
opacity: .8; }
tooltip 70% {
opacity: .9; }
tooltip 90% {
opacity: 1; } }
@keyframes animate-tooltip {
0% {
opacity: 0; }
50% {
opacity: .5; }
60% {
opacity: .8; }
70% {
opacity: .9; }
90% {
opacity: 1; } }
tooltip._multiline {
display: block; }
tooltip._slow._ready tip {
animation: animate-tooltip 0.65s; }
tooltip._fast._ready tip {
animation: animate-tooltip 0.15s; }
tooltip._steady._ready tip {
animation: animate-tooltip 0.35s; }
tooltip tip {
border-radius: 3px;
background: rgba(0, 0, 0, 0.85);
color: #fff;
display: none;
line-height: normal;
max-width: 500px;
min-width: 100px;
opacity: 0;
padding: 8px 16px;
position: absolute;
text-align: center;
width: auto;
will-change: top, left, bottom, right; }
tooltip tip._hidden {
display: block;
visibility: hidden; }
tooltip.active:not(._force-hidden) tip {
display: block;
opacity: 1;
z-index: 999; }
tooltip tip-tip {
font-size: .95em; }
tooltip tip-tip._large {
font-size: 1.1em; }
tooltip tip-tip._small {
font-size: .8em; }
tooltip._top tip {
left: 50%;
top: -9px;
-webkit-transform: translateX(-50%) translateY(-100%);
transform: translateX(-50%) translateY(-100%); }
tooltip._top tip tip-arrow {
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid rgba(0, 0, 0, 0.85);
content: '';
height: 0;
left: 50%;
margin-left: -6px;
position: absolute;
top: 100%;
width: 0; }
tooltip._bottom tip {
right: 50%;
top: 100%;
-webkit-transform: translateX(50%) translateY(9px);
transform: translateX(50%) translateY(9px); }
tooltip._bottom tip tip-arrow {
border-bottom: 6px solid rgba(0, 0, 0, 0.85);
border-left: 6px solid transparent;
border-right: 6px solid transparent;
bottom: 100%;
content: '';
height: 0;
left: 50%;
margin-left: -6px;
position: absolute;
width: 0; }
tooltip._right tip {
left: 100%;
top: 50%;
-webkit-transform: translateX(9px) translateY(-50%);
transform: translateX(9px) translateY(-50%); }
tooltip._right tip tip-arrow {
border-bottom: 6px solid transparent;
border-right: 6px solid rgba(0, 0, 0, 0.85);
border-top: 6px solid transparent;
content: '';
height: 0;
margin-top: -6px;
position: absolute;
right: 100%;
top: 50%;
width: 0; }
tooltip._left tip {
left: -9px;
top: 50%;
-webkit-transform: translateX(-100%) translateY(-50%);
transform: translateX(-100%) translateY(-50%); }
tooltip._left tip tip-arrow {
border-bottom: 6px solid transparent;
border-left: 6px solid rgba(0, 0, 0, 0.85);
border-top: 6px solid transparent;
content: '';
height: 0;
left: 100%;
margin-top: -6px;
position: absolute;
top: 50%;
width: 0; }
tip-tip #close-button {
cursor: pointer;
float: right;
left: 8%;
margin-top: -7%;
padding: 3px;
position: relative; }
/*# sourceMappingURL=angular-tooltips.css.map */