Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/dialog.css
2868 views
1
/*
2
* Copyright 2009 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
* Standard styling for goog.ui.Dialog.
10
*
11
* @author [email protected] (Steven Saviano)
12
* @author [email protected] (Attila Bodis)
13
*/
14
15
16
.modal-dialog {
17
background: #c1d9ff;
18
border: 1px solid #3a5774;
19
color: #000;
20
padding: 4px;
21
position: absolute;
22
}
23
24
.modal-dialog a,
25
.modal-dialog a:link,
26
.modal-dialog a:visited {
27
color: #06c;
28
cursor: pointer;
29
}
30
31
.modal-dialog-bg {
32
background: #666;
33
left: 0;
34
position: absolute;
35
top: 0;
36
}
37
38
.modal-dialog-title {
39
background: #e0edfe;
40
color: #000;
41
cursor: pointer;
42
font-size: 120%;
43
font-weight: bold;
44
45
/* Add padding on the right to ensure the close button has room. */
46
padding: 8px 31px 8px 8px;
47
48
position: relative;
49
_zoom: 1; /* Ensures proper width in IE6 RTL. */
50
}
51
52
.modal-dialog-title-close {
53
/* Client apps may override the URL at which they serve the sprite. */
54
background: #e0edfe url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -528px 0;
55
cursor: default;
56
height: 15px;
57
position: absolute;
58
right: 10px;
59
top: 8px;
60
width: 15px;
61
vertical-align: middle;
62
}
63
64
.modal-dialog-buttons,
65
.modal-dialog-content {
66
background-color: #fff;
67
padding: 8px;
68
}
69
70
.goog-buttonset-default {
71
font-weight: bold;
72
}
73
74