summaryrefslogtreecommitdiffstats
path: root/core/css/jquery.ocdialog.css
diff options
context:
space:
mode:
Diffstat (limited to 'core/css/jquery.ocdialog.css')
-rw-r--r--core/css/jquery.ocdialog.css27
1 files changed, 21 insertions, 6 deletions
diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css
index d1a42694589..487bc1c4f69 100644
--- a/core/css/jquery.ocdialog.css
+++ b/core/css/jquery.ocdialog.css
@@ -3,28 +3,31 @@
color: #333;
border-radius: 3px; box-shadow: 0 0 7px #888;
padding: 15px;
- z-index: 1000;
+ z-index: 10000;
font-size: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
min-width: 200px;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ max-height: calc(100% - 20px);
+ max-width: calc(100% - 20px);
+ overflow: auto;
}
.oc-dialog-title {
background: #fff;
margin-left: 12px;
}
-.oc-dialog-content {
- z-index: 1000;
-}
-.oc-dialog-separator {
-}
.oc-dialog-buttonrow {
+ position: relative;
display: block;
background: transparent;
right: 0;
bottom: 0;
padding: 10px;
+ padding-bottom: 0;
box-sizing: border-box;
width: 100%;
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
@@ -42,6 +45,14 @@
.oc-dialog-buttonrow.onebutton button {
float: right;
}
+.oc-dialog-buttonrow:after {
+ visibility: hidden;
+ display: block;
+ font-size: 0;
+ content: " ";
+ clear: both;
+ height: 0;
+}
.oc-dialog-close {
position: absolute;
@@ -59,3 +70,7 @@
top: 0; left: 0;
width: 100%; height: 100%;
}
+
+.oc-dialog-content {
+ width: 100%;
+}