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