51 lines
915 B
CSS
51 lines
915 B
CSS
/* Undocumented cBox colors */
|
|
#cboxLoadingOverlay, #cboxContent, #cboxLoadedContent {
|
|
background-color: #FFF !important;
|
|
}
|
|
|
|
/* Main CWV3 Dialog */
|
|
.cwv3_dialog {
|
|
border: 3px solid #ccc;
|
|
background: #FFF;
|
|
}
|
|
.cwv3_dialog.js .auth {
|
|
display: none;
|
|
}
|
|
.cwv3_dialog.js .denied {
|
|
display: none;
|
|
}
|
|
.cwv3_dialog div {
|
|
padding: 0.25em;
|
|
}
|
|
.cwv3_dialog .cwv3_title {
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
background: #f00;
|
|
}
|
|
.cwv3_dialog .cwv3_btns {
|
|
overflow: hidden;
|
|
}
|
|
.cwv3_dialog .cwv3_btns a {
|
|
display: block;
|
|
width: 100%;
|
|
text-align: center;
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
}
|
|
.cwv3_dialog .cwv3_btns .cwv3_exit {
|
|
float: right;
|
|
width: 40%;
|
|
}
|
|
.cwv3_dialog .cwv3_btns .cwv3_exit a {
|
|
background-color: #F00;
|
|
}
|
|
.cwv3_dialog .cwv3_btns .cwv3_enter {
|
|
float: left;
|
|
width: 40%;
|
|
}
|
|
.cwv3_dialog .cwv3_btns .cwv3_enter a {
|
|
background-color: #0C3;
|
|
}
|