91 lines
1.6 KiB
CSS
91 lines
1.6 KiB
CSS
#card-print-overlay {
|
|
position: fixed;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
box-sizing: border-box;
|
|
word-wrap: break-word;
|
|
z-index: 99999;
|
|
}
|
|
#card-print-dialog {
|
|
position: relative;
|
|
top: 60px;
|
|
right: 0px;
|
|
left: 0px;
|
|
height: calc(100% - 120px);
|
|
width: 1000px;
|
|
margin: auto;
|
|
border-style: solid;
|
|
border-color: #cccccc;
|
|
border-width: 1px;
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
}
|
|
#card-print-dialog-header {
|
|
position: relative;
|
|
background: #f0f0f0;
|
|
height: 25px;
|
|
border-bottom: 1px solid #cccccc;
|
|
padding: 15px 20px 15px 20px;
|
|
}
|
|
#card-print-dialog-content {
|
|
position: relative;
|
|
background: white;
|
|
height: calc(100% - 106px);
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
#card-print-dialog-content-iframe {
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
border: none;
|
|
}
|
|
#card-print-dialog-footer {
|
|
position: relative;
|
|
background: #f0f0f0;
|
|
border-top: 1px solid #cccccc;
|
|
height: 30px;
|
|
padding: 10px;
|
|
text-align: right;
|
|
}
|
|
#buttons {
|
|
position: relative;
|
|
float: right;
|
|
display: inline-block;
|
|
height 30px;
|
|
}
|
|
#info {
|
|
position: relative;
|
|
float: right;
|
|
display: inline-block;
|
|
height 30px;
|
|
}
|
|
#info-line {
|
|
display: inline;
|
|
padding-left: 3rem;
|
|
padding-right: 3rem;
|
|
}
|
|
#card-print-dialog-title {
|
|
position: relative;
|
|
float: left;
|
|
color: rgb(51, 51, 51);
|
|
display: block;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 20px;
|
|
font-weight: normal;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
}
|
|
.cancel {
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
display: inline-block;
|
|
padding: 5px 10px;
|
|
vertical-align: baseline;
|
|
}
|