cms/app-client/app/styles/modal.scss
author ymh <ymh.work@gmail.com>
Tue, 19 Jan 2016 19:18:34 +0100
changeset 109 d22ed5792f8e
parent 95 f7ab931581af
permissions -rw-r--r--
Correct transaction management. cf. bug https://openrdf.atlassian.net/browse/SES-2295 and tomcat default management of PUT request with form data (application/x-www-form-urlencoded encoded)

.overlay {
    background-color: gray;
    height: 100vh;
    left: 0;
    opacity: 0.77;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
}

.dialog {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px #222;
    min-height: 300px;
    min-width: 500px;
    height: auto;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 50;
}

.dialog-header,
.dialog-body,
.dialog-footer{
  padding: 5px 10px 0;
}

.dialog-header h2{
  margin: 0;
}

.dialog-body b{
  display: inline-block;
  min-width: 140px;
}