Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/bubble.css
4064 views
1
/*
2
* Copyright 2010 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
@provide 'goog.css.bubble';
9
10
.goog-bubble-font {
11
font-size: 80%;
12
color: #888888;
13
}
14
15
.goog-bubble-close-button {
16
background-image:url(//ssl.gstatic.com/closure/bubble_close.jpg);
17
background-color: white;
18
background-position: top right;
19
background-repeat: no-repeat;
20
width: 16px;
21
height: 16px;
22
}
23
24
.goog-bubble-left {
25
background-image:url(//ssl.gstatic.com/closure/bubble_left.gif);
26
background-position:left;
27
background-repeat:repeat-y;
28
width: 4px;
29
}
30
31
.goog-bubble-right {
32
background-image:url(//ssl.gstatic.com/closure/bubble_right.gif);
33
background-position: right;
34
background-repeat: repeat-y;
35
width: 4px;
36
}
37
38
.goog-bubble-top-right-anchor {
39
background-image:url(//ssl.gstatic.com/closure/right_anchor_bubble_top.gif);
40
background-position: center;
41
background-repeat: no-repeat;
42
width: 147px;
43
height: 16px;
44
}
45
46
.goog-bubble-top-left-anchor {
47
background-image:url(//ssl.gstatic.com/closure/left_anchor_bubble_top.gif);
48
background-position: center;
49
background-repeat: no-repeat;
50
width: 147px;
51
height: 16px;
52
}
53
54
.goog-bubble-top-no-anchor {
55
background-image:url(//ssl.gstatic.com/closure/no_anchor_bubble_top.gif);
56
background-position: center;
57
background-repeat: no-repeat;
58
width: 147px;
59
height: 6px;
60
}
61
62
.goog-bubble-bottom-right-anchor {
63
background-image:url(//ssl.gstatic.com/closure/right_anchor_bubble_bot.gif);
64
background-position: center;
65
background-repeat: no-repeat;
66
width: 147px;
67
height: 16px;
68
}
69
70
.goog-bubble-bottom-left-anchor {
71
background-image:url(//ssl.gstatic.com/closure/left_anchor_bubble_bot.gif);
72
background-position: center;
73
background-repeat: no-repeat;
74
width: 147px;
75
height: 16px;
76
}
77
78
.goog-bubble-bottom-no-anchor {
79
background-image:url(//ssl.gstatic.com/closure/no_anchor_bubble_bot.gif);
80
background-position: center;
81
background-repeat: no-repeat;
82
width: 147px;
83
height: 8px;
84
}
85
86
87
88