Skip to content

Commit 8b1a201

Browse files
committed
Merge pull request 720kb#85 from sahan91/master
Fixed a syntax error issue in visibility attribute in line 40. Closing 720kb#81
2 parents 00dc1e7 + 9faac72 commit 8b1a201

File tree

1 file changed

+45
-29
lines changed

1 file changed

+45
-29
lines changed

src/css/angular-tooltips.css

Lines changed: 45 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,122 @@
11
._720kb-tooltip {
22
background: rgba(0, 0, 0, 0.8);
3-
color:white;
4-
position:absolute;
5-
z-index:9;
6-
padding:0.4% 1%;
7-
opacity:0;
8-
visibility:hidden;
9-
-webkit-border-radius:3px;
10-
-moz-border-radius:3px;
11-
border-radius:3px;
12-
left:-200%;
3+
color: white;
4+
position: absolute;
5+
z-index: 9;
6+
padding: 0.4% 1%;
7+
opacity: 0;
8+
visibility: hidden;
9+
-webkit-border-radius: 3px;
10+
-moz-border-radius: 3px;
11+
border-radius: 3px;
12+
left: -200%;
1313
top: 0;
14-
pointer-events:none;
14+
pointer-events: none;
1515
}
16-
._720kb-tooltip-title{
17-
color:rgba(255,255,255,0.95);
16+
17+
._720kb-tooltip-title {
18+
color: rgba(255, 255, 255, 0.95);
1819
font-weight: 500;
1920
width: 100%;
20-
clear:both;
21+
clear: both;
2122
}
23+
2224
._720kb-tooltip._720kb-tooltip-small {
23-
padding:4.5px 10px;
25+
padding: 4.5px 10px;
2426
font-size: 12px;
2527
}
28+
2629
._720kb-tooltip._720kb-tooltip-medium {
27-
padding:7px 15px;
30+
padding: 7px 15px;
2831
font-size: 13.5px;
2932
}
33+
3034
._720kb-tooltip._720kb-tooltip-large {
31-
padding:10px 20px;
35+
padding: 10px 20px;
3236
font-size: 14px;
3337
}
38+
3439
._720kb-tooltip._720kb-tooltip-open {
35-
visiblity:'';
40+
visibility: '';
3641
opacity: 1;
3742
}
43+
3844
._720kb-tooltip-caret:before {
39-
content:'';
45+
content: '';
4046
position: absolute;
4147
width: 0;
4248
height: 0;
4349
border: 6px solid rgba(0, 0, 0, 0.8);
4450
}
51+
4552
._720kb-tooltip-caret:after {
46-
content:'';
53+
content: '';
4754
position: absolute;
4855
width: 0;
4956
height: 0;
5057
border: 5px solid transparent;
5158
}
59+
5260
._720kb-tooltip-left ._720kb-tooltip-caret:before {
5361
top: 50%;
5462
left: 100%;
55-
margin-left:0;
63+
margin-left: 0;
5664
margin-top: -6px;
5765
border-top-color: transparent;
5866
border-bottom-color: transparent;
5967
border-right-width: 0;
6068
}
69+
6170
._720kb-tooltip-left ._720kb-tooltip-caret:after {
6271
top: 50%;
6372
left: 100%;
64-
margin-left:0;
73+
margin-left: 0;
6574
margin-top: -5px;
6675
border-top-color: transparent;
6776
border-bottom-color: transparent;
6877
border-right-width: 0;
6978
}
79+
7080
._720kb-tooltip-right ._720kb-tooltip-caret:before {
7181
top: 50%;
72-
left:0;
73-
margin-left:-6px;
82+
left: 0;
83+
margin-left: -6px;
7484
margin-top: -6px;
7585
border-top-color: transparent;
7686
border-bottom-color: transparent;
7787
border-left-width: 0;
7888
}
89+
7990
._720kb-tooltip-right ._720kb-tooltip-caret:after {
8091
top: 50%;
81-
left:0;
82-
margin-left:-5px;
92+
left: 0;
93+
margin-left: -5px;
8394
margin-top: -5px;
8495
border-top-color: transparent;
8596
border-bottom-color: transparent;
8697
border-left-width: 0;
8798
}
99+
88100
._720kb-tooltip-top ._720kb-tooltip-caret:before {
89101
top: 100%;
90102
left: 50%;
91103
margin-left: -6px;
92-
margin-bottom:-6px;
104+
margin-bottom: -6px;
93105
border-right-color: transparent;
94106
border-left-color: transparent;
95107
border-bottom-width: 0;
96108
}
109+
97110
._720kb-tooltip-top ._720kb-tooltip-caret:after {
98111
top: 100%;
99112
left: 50%;
100113
margin-left: -5px;
101-
margin-bottom:-5px;
114+
margin-bottom: -5px;
102115
border-right-color: transparent;
103116
border-left-color: transparent;
104117
border-bottom-width: 0;
105118
}
119+
106120
._720kb-tooltip-bottom ._720kb-tooltip-caret:before {
107121
bottom: 100%;
108122
left: 50%;
@@ -111,6 +125,7 @@ visibility:hidden;
111125
border-left-color: transparent;
112126
border-top-width: 0;
113127
}
128+
114129
._720kb-tooltip-bottom ._720kb-tooltip-caret:after {
115130
bottom: 100%;
116131
left: 50%;
@@ -119,6 +134,7 @@ visibility:hidden;
119134
border-left-color: transparent;
120135
border-top-width: 0;
121136
}
137+
122138
._720kb-tooltip-close-button {
123139
float: right;
124-
}
140+
}

0 commit comments

Comments
 (0)