73 lines
1.4 KiB
CSS
73 lines
1.4 KiB
CSS
/*
|
|
* Copyright 2009 The Closure Library Authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by the Apache License, Version 2.0.
|
|
* See the COPYING file for details.
|
|
*/
|
|
|
|
/*
|
|
* Standard styling for goog.ui.Dialog.
|
|
*
|
|
* @author ssaviano@google.com (Steven Saviano)
|
|
* @author attila@google.com (Attila Bodis)
|
|
*/
|
|
|
|
|
|
.modal-dialog {
|
|
background: #c1d9ff;
|
|
border: 1px solid #3a5774;
|
|
color: #000;
|
|
padding: 4px;
|
|
position: absolute;
|
|
}
|
|
|
|
.modal-dialog a,
|
|
.modal-dialog a:link,
|
|
.modal-dialog a:visited {
|
|
color: #06c;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.modal-dialog-bg {
|
|
background: #666;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
.modal-dialog-title {
|
|
background: #e0edfe;
|
|
color: #000;
|
|
cursor: pointer;
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
|
|
/* Add padding on the right to ensure the close button has room. */
|
|
padding: 8px 31px 8px 8px;
|
|
|
|
position: relative;
|
|
_zoom: 1; /* Ensures proper width in IE6 RTL. */
|
|
}
|
|
|
|
.modal-dialog-title-close {
|
|
/* Client apps may override the URL at which they serve the sprite. */
|
|
background: #e0edfe url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -528px 0;
|
|
cursor: default;
|
|
height: 15px;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 8px;
|
|
width: 15px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.modal-dialog-buttons,
|
|
.modal-dialog-content {
|
|
background-color: #fff;
|
|
padding: 8px;
|
|
}
|
|
|
|
.goog-buttonset-default {
|
|
font-weight: bold;
|
|
}
|