Versioning - Denial toggle fix

This commit is contained in:
Jay Wood
2015-12-14 10:27:07 -05:00
parent 035733ea04
commit 4ba10274a9
7 changed files with 44 additions and 17 deletions

View File

@ -9,16 +9,16 @@
/* Main CWV3 Dialog */
.cwv3_dialog {
border: 3px solid #cccccc;
background: white;
border: 3px solid #CCCCCC;
background: #FFFFFF;
max-width: 60%;
max-height: 90%;
position: fixed;
top: 25%;
left: 25%;
-webkit-box-shadow: 2px 11px 48px black;
-moz-box-shadow: 2px 11px 48px black;
box-shadow: 2px 11px 48px black;
-webkit-box-shadow: 2px 11px 48px #000;
-moz-box-shadow: 2px 11px 48px #000;
box-shadow: 2px 11px 48px #000;
overflow: hidden;
z-index: 99999;
}
@ -29,10 +29,10 @@
height: 100%;
}
.cwv3_dialog .cwv3_title {
color: white;
color: #FFFFFF;
font-weight: bold;
text-align: center;
background: red;
background: #FF0000;
margin-bottom: 0.25em;
}
.cwv3_dialog .cwv3_content {
@ -52,7 +52,7 @@
display: block;
width: 100%;
text-align: center;
color: white;
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
padding: .35em 0;
@ -65,11 +65,13 @@
float: right;
}
.cwv3_dialog .cwv3_btns .cwv3_exit a {
background-color: red;
background-color: #FF0000;
}
.cwv3_dialog .cwv3_btns .cwv3_enter {
float: left;
}
.cwv3_dialog .cwv3_btns .cwv3_enter a {
background-color: #00cc33;
background-color: #00CC33;
}
/*# sourceMappingURL=cwv3.css.map */