Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/editor/bubble.css
2868 views
1
/*
2
* Copyright 2005 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
/*
9
* Bubble styles.
10
*
11
* @author [email protected] (Robby Walker)
12
* @author [email protected] (Nick Santos)
13
* @author [email protected] (Julie Parent)
14
*/
15
16
div.tr_bubble {
17
position: absolute;
18
19
background-color: #e0ecff;
20
border: 1px solid #99c0ff;
21
border-radius: 2px;
22
-moz-border-radius: 2px;
23
-webkit-border-radius: 2px;
24
font-size: 83%;
25
font-family: Arial, Helvetica, sans-serif;
26
padding: 2px 19px 6px 6px;
27
white-space: nowrap;
28
}
29
30
.tr_bubble_link {
31
color: #00c;
32
text-decoration: underline;
33
cursor: pointer;
34
font-size: 100%;
35
}
36
37
.tr_bubble .tr_option-link,
38
.tr_bubble #tr_delete-image,
39
.tr_bubble #tr_module-options-link {
40
font-size: 83%;
41
}
42
43
.tr_bubble_closebox {
44
position: absolute;
45
cursor: default;
46
background: url(//ssl.gstatic.com/editor/bubble_closebox.gif) top left no-repeat;
47
padding: 0;
48
margin: 0;
49
width: 10px;
50
height: 10px;
51
top: 3px;
52
right: 5px;
53
}
54
55
div.tr_bubble_panel {
56
padding: 2px 0 1px;
57
}
58
59
div.tr_bubble_panel_title {
60
display: none;
61
}
62
63
div.tr_multi_bubble div.tr_bubble_panel_title {
64
margin-right: 1px;
65
display: block;
66
float: left;
67
width: 50px;
68
}
69
70
div.tr_multi_bubble div.tr_bubble_panel {
71
padding: 2px 0 1px;
72
margin-right: 50px;
73
}
74
75