sync
This commit is contained in:
@ -60,7 +60,7 @@
|
||||
.page {
|
||||
/*background-color: #d3d3d3;*/
|
||||
/*height: 52px;*/
|
||||
line-height: 52px;
|
||||
line-height: 25px;
|
||||
margin-top: 8px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
@ -72,7 +72,7 @@
|
||||
.section {
|
||||
/*background-color: #eaeaea;*/
|
||||
/*height: 40px;*/
|
||||
line-height: 40px;
|
||||
line-height: 20px;
|
||||
padding-left: 30px;
|
||||
padding-right: 10px;
|
||||
font-size: 20px;
|
||||
@ -81,8 +81,8 @@
|
||||
}
|
||||
|
||||
.question {
|
||||
min-height: 30px;
|
||||
line-height: 30px;
|
||||
min-height: 24px;
|
||||
line-height: 24px;
|
||||
padding-left: 70px;
|
||||
padding-right: 10px;
|
||||
font-size: 14px;
|
||||
@ -92,12 +92,21 @@
|
||||
}
|
||||
|
||||
.answer {
|
||||
min-height: 30px;
|
||||
line-height: 30px;
|
||||
min-height: 24px;
|
||||
line-height: 24px;
|
||||
padding-left: 90px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.table_content {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
.pagedoublespace {
|
||||
line-height: 50px;
|
||||
}
|
||||
|
||||
.media {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
@ -176,6 +185,50 @@
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.question_line tr {
|
||||
border-top: 1px solid #dbdbdb;
|
||||
border-bottom: 1px solid #dbdbdb;
|
||||
}
|
||||
|
||||
.question_line {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.answer_line {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.question_table_grid {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.question_table_grid td {
|
||||
border: 1px solid #dbdbdb;
|
||||
}
|
||||
|
||||
.question_standard_table_line {
|
||||
border-top: 1px solid #dbdbdb;
|
||||
border-bottom: 1px solid #dbdbdb;
|
||||
}
|
||||
|
||||
.question_standard_table_grid {
|
||||
border: 1px solid #dbdbdb;
|
||||
}
|
||||
|
||||
.answer_div_grid {
|
||||
border-left: 1px solid #dbdbdb;
|
||||
border-right: 1px solid #dbdbdb;
|
||||
}
|
||||
|
||||
.mediacaption {
|
||||
text-align: center;
|
||||
clear: both;
|
||||
height: 25px;
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
</style>
|
||||
<script src="<%=GetFileUrlWithVersion("../js/controls.js")%>" type="text/javascript"></script>
|
||||
<script src="<%=GetFileUrlWithVersion("../js/vue.min.js")%>"></script>
|
||||
@ -249,6 +302,19 @@
|
||||
<span id="button-print" class="sbutton iconprint" style="margin-right: 20px;" onclick="OnPrint();" data-lgid="P_IPT_PRINT">Print</span>
|
||||
</div>
|
||||
<div id="divreport" style="width: 1100px; margin: 0 auto;">
|
||||
<div v-if="report.ReportLayout!=null">
|
||||
<table class="maintable" style="width: 100%;">
|
||||
<tr class="assettr">
|
||||
<td style="width: 33%; text-align: left;">
|
||||
<img id="reportlayoutlogo" style="width: 100px; margin-top: 5px; display: none;" /></td>
|
||||
<td style="width: 33%; text-align: center;">
|
||||
<img id="reportlayoutcenterlogo" style="width: 100px; margin-top: 5px; display: none;" /></td>
|
||||
<td style="width: 33%; text-align: right;">
|
||||
<img id="reportlayoutrightlogo" style="width: 100px; margin-top: 5px; display: none;" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<h1 style="text-align: center;" v-show="report.Template.DisplayInspectionTitle">{{report.Template.Name}}</h1>
|
||||
<div style="text-align: center; margin-bottom: 10px;"><span v-show="report.Template.DisplayCommitTime">{{report.CommitTimeLocalStr}}</span><span v-show="report.Template.DisplayCommitBy"> by {{report.CommitedByUserName}}</span></div>
|
||||
<table class="maintable">
|
||||
@ -361,7 +427,9 @@
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="mask_bg" style="display: none;"><div class="loading c-spin"></div></div>
|
||||
<div id="mask_bg" style="display: none;">
|
||||
<div class="loading c-spin"></div>
|
||||
</div>
|
||||
<div id="right_popup" style="display: none; position: absolute; top: 0; right: 0; bottom: 0; background-color: white; overflow: auto;">
|
||||
</div>
|
||||
<iframe id="ifdiv" style="height: 1px; width: 1px; display: none;"></iframe>
|
||||
|
Reference in New Issue
Block a user