62 lines
1.2 KiB
CSS
62 lines
1.2 KiB
CSS
.oc-dialog {
|
|
background: #fff;
|
|
color: #333;
|
|
border-radius: 3px; box-shadow: 0 0 7px #888;
|
|
padding: 15px;
|
|
z-index: 1000;
|
|
font-size: 100%;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
min-width: 200px;
|
|
}
|
|
.oc-dialog-title {
|
|
background: #fff;
|
|
margin-left: 12px;
|
|
}
|
|
.oc-dialog-content {
|
|
z-index: 1000;
|
|
}
|
|
.oc-dialog-separator {
|
|
}
|
|
.oc-dialog-buttonrow {
|
|
display: block;
|
|
background: transparent;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
|
|
border-bottom-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
/* align primary button to right, other buttons to left */
|
|
.oc-dialog-buttonrow.twobuttons button:nth-child(1) {
|
|
float: left;
|
|
}
|
|
.oc-dialog-buttonrow.twobuttons button:nth-child(2) {
|
|
float: right;
|
|
}
|
|
|
|
.oc-dialog-buttonrow.onebutton button {
|
|
float: right;
|
|
}
|
|
|
|
.oc-dialog-close {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 25px;
|
|
background: url('../img/actions/close.svg') no-repeat center;
|
|
}
|
|
|
|
.oc-dialog-dim {
|
|
background-color: #000;
|
|
opacity: .20;
|
|
z-index: 999;
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
}
|