70 lines
1.2 KiB
CSS
70 lines
1.2 KiB
CSS
.dialogBox {
|
|
background-color: #eee;
|
|
border: 1px solid #444;
|
|
-moz-border-radius: 5px;
|
|
padding: 4px;
|
|
height: auto;
|
|
min-height: 75px;
|
|
max-height: 450px;
|
|
width: auto;
|
|
min-width: 275px;
|
|
max-width: 550px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dialogHeader {
|
|
background: #999;
|
|
padding: 2px 5px 2px 5px;
|
|
text-align: center;
|
|
-moz-border-radius: 5px;
|
|
border: 1px solid #444;
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.dialogControls {
|
|
height: auto;
|
|
text-align: center;
|
|
width: auto;
|
|
font-size: 1.1em;
|
|
margin: 10px;
|
|
}
|
|
.dialogControls a {
|
|
background-color: #CCC;
|
|
border: 1px solid black;
|
|
padding: 0.25em 1.0em 0.25em 1.0em;
|
|
text-decoration: none;
|
|
-moz-border-radius: 3px;
|
|
}
|
|
.dialogControls a:hover, .dialogControls a.over {
|
|
text-decoration: none;
|
|
border: 1px solid black;
|
|
background-color: #999;
|
|
color: white;
|
|
}
|
|
|
|
.dialogContent {
|
|
padding: 0px 10px 0px 10px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.dialogSearchResults {
|
|
padding: 0.25em;
|
|
margin-bottom: 5px;
|
|
font-size: 1.1em;
|
|
min-height: 50px;
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
}
|
|
.dialogSearchResults li {
|
|
margin-top: 3px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
#modal_overlay {
|
|
/* konqueror doesn't like these styles. omit for now.
|
|
background-color: #727272;
|
|
*/
|
|
}
|