43 lines
No EOL
725 B
CSS
43 lines
No EOL
725 B
CSS
.modal {
|
|
z-index: 1000;
|
|
position: fixed;
|
|
display: none;
|
|
padding-top: 40px;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: rgb(0, 0, 0);
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.modalContent {
|
|
height: 80%;
|
|
overflow: auto;
|
|
background-color: #fefefe;
|
|
margin: auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 80%;
|
|
}
|
|
|
|
.modalContent pre {
|
|
font-size: 10pt;
|
|
/* word-wrap: normal; */
|
|
white-space: pre-wrap;
|
|
/* Since CSS 2.1 */
|
|
white-space: -moz-pre-wrap;
|
|
/* Mozilla, since 1999 */
|
|
white-space: -pre-wrap;
|
|
/* Opera 4-6 */
|
|
white-space: -o-pre-wrap;
|
|
/* Opera 7 */
|
|
word-wrap: break-word;
|
|
/* Internet Explorer 5.5+ */
|
|
}
|
|
|
|
.dateField {
|
|
font-size: 7pt;
|
|
font-weight: normal;
|
|
} |