2010-02-07 04:36:40 +01:00
|
|
|
.dialog-overlay {
|
|
|
|
position: fixed;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: black;
|
2010-03-16 19:11:08 +01:00
|
|
|
opacity: 0.4;
|
2010-02-07 04:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-container {
|
|
|
|
position: fixed;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-frame {
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: left;
|
|
|
|
background: white;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-header {
|
2010-03-16 19:11:08 +01:00
|
|
|
background: #404859;
|
2010-02-07 04:36:40 +01:00
|
|
|
padding: 5px 10px;
|
|
|
|
font-weight: bold;
|
2010-03-08 08:21:46 +01:00
|
|
|
color: white;
|
2010-03-08 22:50:53 +01:00
|
|
|
cursor: move;
|
2010-02-07 04:36:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-body {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-footer {
|
|
|
|
background: #ddd;
|
|
|
|
padding: 5px 10px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-footer button {
|
|
|
|
margin-left: 5px;
|
2010-02-19 18:38:47 +01:00
|
|
|
}
|
|
|
|
|
2010-03-23 20:30:50 +01:00
|
|
|
.dialog-busy-frame {
|
|
|
|
width: 300px;
|
|
|
|
border: none;
|
2010-04-24 04:36:56 +02:00
|
|
|
-moz-border-radiust: 15px;
|
|
|
|
-webkit-border-radius: 15px;
|
2010-03-23 20:30:50 +01:00
|
|
|
}
|
2010-02-19 18:38:47 +01:00
|
|
|
.dialog-busy-body {
|
|
|
|
margin: 1em;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 200%;
|
|
|
|
font-weight: bold;
|
2010-04-24 04:36:56 +02:00
|
|
|
color: #aaa;
|
2010-02-19 18:38:47 +01:00
|
|
|
}
|
|
|
|
|