2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2010-07-14 19:55:54 +00:00
|
|
|
* jQuery UI Dialog @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2010-07-14 19:55:54 +00:00
|
|
|
*
|
2013-01-10 13:52:20 +00:00
|
|
|
* Copyright 2013 jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-14 19:55:54 +00:00
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Dialog#theming
|
|
|
|
*/
|
2012-11-20 00:29:01 +00:00
|
|
|
.ui-dialog {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: .2em;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-titlebar {
|
|
|
|
padding: .4em 1em;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-title {
|
|
|
|
float: left;
|
2012-12-04 14:27:57 +00:00
|
|
|
margin: .1em 0;
|
2012-12-02 11:50:17 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
width: 90%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2012-11-20 00:29:01 +00:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-titlebar-close {
|
|
|
|
position: absolute;
|
|
|
|
right: .3em;
|
|
|
|
top: 50%;
|
2012-11-15 21:29:24 +00:00
|
|
|
width: 21px;
|
2012-11-20 00:29:01 +00:00
|
|
|
margin: -10px 0 0 0;
|
|
|
|
padding: 1px;
|
2012-11-15 21:29:24 +00:00
|
|
|
height: 20px;
|
2012-11-20 00:29:01 +00:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-content {
|
|
|
|
position: relative;
|
|
|
|
border: 0;
|
|
|
|
padding: .5em 1em;
|
|
|
|
background: none;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane {
|
|
|
|
text-align: left;
|
|
|
|
border-width: 1px 0 0 0;
|
|
|
|
background-image: none;
|
2012-12-14 13:43:56 +00:00
|
|
|
margin-top: .5em;
|
2012-11-20 00:29:01 +00:00
|
|
|
padding: .3em 1em .5em .4em;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane button {
|
|
|
|
margin: .5em .4em .5em 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-resizable-se {
|
2012-12-03 18:09:49 +00:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
right: -5px;
|
|
|
|
bottom: -5px;
|
2012-12-14 13:43:56 +00:00
|
|
|
background-position: 16px 16px;
|
2012-11-20 00:29:01 +00:00
|
|
|
}
|
|
|
|
.ui-draggable .ui-dialog-titlebar {
|
|
|
|
cursor: move;
|
|
|
|
}
|