CSS and JS Additions/fixes
This commit is contained in:
73
css/sass/partials/_cwv3.scss
Normal file
73
css/sass/partials/_cwv3.scss
Normal file
@ -0,0 +1,73 @@
|
||||
.cwv3{
|
||||
&.dialog-overlay{
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 99998;
|
||||
}
|
||||
}
|
||||
|
||||
/* Main CWV3 Dialog */
|
||||
.cwv3_dialog{
|
||||
border: 3px solid $dialog-border-color;
|
||||
background: $dialog-background;
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
position: fixed;
|
||||
top: 25%;
|
||||
left: 25%;
|
||||
@include box-shadow( 2px 11px 48px #000 );
|
||||
overflow: hidden;
|
||||
z-index: 99999;
|
||||
|
||||
div{
|
||||
padding: 0.25em;
|
||||
}
|
||||
|
||||
.cwv3.auth, .cwv3.denied{
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.cwv3_title {
|
||||
color: $title-font-color;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
background: $title-background;
|
||||
}
|
||||
|
||||
.cwv3_content{
|
||||
height: 84%;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.cwv3_btns{
|
||||
overflow: hidden;
|
||||
a{
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: $button-txt-color;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.cwv3_exit{
|
||||
float: right;
|
||||
width: 40%;
|
||||
a{
|
||||
background-color: $exit-button-color;
|
||||
}
|
||||
}
|
||||
|
||||
.cwv3_enter{
|
||||
float: left;
|
||||
width: 40%;
|
||||
a{
|
||||
background-color: $enter-button-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user