2013-06-02 15:52:59 -04:00
|
|
|
.oc-dialog {
|
2016-10-18 05:42:13 -04:00
|
|
|
background: #fff;
|
|
|
|
|
color: #333;
|
|
|
|
|
border-radius: 3px; box-shadow: 0 0 7px #888;
|
2013-06-02 15:52:59 -04:00
|
|
|
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 {
|
2016-10-18 05:42:13 -04:00
|
|
|
background: #fff;
|
2016-10-19 08:43:04 -04:00
|
|
|
margin-left: 12px;
|
2013-06-02 15:52:59 -04:00
|
|
|
}
|
|
|
|
|
.oc-dialog-content {
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
|
|
|
|
.oc-dialog-separator {
|
|
|
|
|
}
|
|
|
|
|
.oc-dialog-buttonrow {
|
|
|
|
|
display: block;
|
2016-10-18 05:42:13 -04:00
|
|
|
background: transparent;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
box-sizing: border-box;
|
2013-10-04 11:21:52 -04:00
|
|
|
width: 100%;
|
2016-10-18 05:42:13 -04:00
|
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
|
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
|
border-bottom-right-radius: 3px;
|
2013-06-02 15:52:59 -04:00
|
|
|
}
|
2014-07-03 08:38:40 -04:00
|
|
|
/* 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;
|
|
|
|
|
}
|
2013-06-02 15:52:59 -04:00
|
|
|
|
|
|
|
|
.oc-dialog-close {
|
2016-10-18 05:42:13 -04:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
padding: 25px;
|
|
|
|
|
background: url('../img/actions/close.svg') no-repeat center;
|
2013-06-02 15:52:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.oc-dialog-dim {
|
|
|
|
|
background-color: #000;
|
2015-03-19 04:10:58 -04:00
|
|
|
opacity: .20;
|
2013-06-02 15:52:59 -04:00
|
|
|
z-index: 999;
|
2014-03-26 12:48:33 -04:00
|
|
|
position: fixed;
|
2013-06-02 15:52:59 -04:00
|
|
|
top: 0; left: 0;
|
|
|
|
|
width: 100%; height: 100%;
|
|
|
|
|
}
|