모달창 사이즈 추가수정

master
Hyung Geun 2022-03-08 09:58:22 +09:00
parent 0fa9de0014
commit c5d6356ed9
2 changed files with 7 additions and 8 deletions

View File

@ -161,12 +161,10 @@
<td colspan="3"> <td colspan="3">
<label >지하시설물</label> <label >지하시설물</label>
<div class="setting_content2" class="facility"> <div class="setting_content2" class="facility">
<c:forEach var="item" items="${layersVO}" varStatus="status"> <c:forEach var="item" items="${layersVO}" varStatus="status">
<c:if test="${item.code eq 'facility'}"> <c:if test="${item.code eq 'facility'}">
<c:set var="faciltySize" value="${faciltySize+1}" /> <c:set var="faciltySize" value="${faciltySize+1}" />
<label> <label class="layer-label"><input type="checkbox" class="me-2" name="${item.code}" id="${item.code}" disabled="disabled" value="${item.layer}" <c:forEach var="item2" items="${layers}" varStatus="status2">
<input type="checkbox" name="${item.code}" id="${item.code}" disabled="disabled" value="${item.layer}" <c:forEach var="item2" items="${layers}" varStatus="status2">
<c:if test="${item.layer eq item2}"> <c:if test="${item.layer eq item2}">
checked checked
</c:if> </c:if>
@ -184,12 +182,12 @@
<div class="setting_content2" class="structure"> <div class="setting_content2" class="structure">
<c:forEach var="item" items="${layersVO}" varStatus="status"> <c:forEach var="item" items="${layersVO}" varStatus="status">
<c:if test="${item.code eq 'structure'}"> <c:if test="${item.code eq 'structure'}">
<label><input type="checkbox" name="${item.code}" id="${item.code}" disabled="disabled" value="${item.layer}" <c:forEach var="item2" items="${layers}" varStatus="status2"> <label class="layer-label"><input type="checkbox" name="${item.code}" id="${item.code}" disabled="disabled" value="${item.layer}" <c:forEach var="item2" items="${layers}" varStatus="status2">
<c:if test="${item.layer eq item2}"> <c:if test="${item.layer eq item2}">
checked checked
</c:if> </c:if>
</c:forEach> </c:forEach>
/>${item.name}</label> /> ${item.name}</label>
</c:if> </c:if>
</c:forEach> </c:forEach>
</div> </div>
@ -201,7 +199,7 @@
<div class="setting_content2" class="ground"> <div class="setting_content2" class="ground">
<c:forEach var="item" items="${layersVO}" varStatus="status"> <c:forEach var="item" items="${layersVO}" varStatus="status">
<c:if test="${item.code eq 'ground'}"> <c:if test="${item.code eq 'ground'}">
<label><input type="checkbox" name="${item.code}" id="${item.code}" disabled="disabled" value="${item.layer}" <c:forEach var="item2" items="${layers}" varStatus="status2"> <label class="layer-label"><input type="checkbox" name="${item.code}" id="${item.code}" disabled="disabled" value="${item.layer}" <c:forEach var="item2" items="${layers}" varStatus="status2">
<c:if test="${item.layer eq item2}"> <c:if test="${item.layer eq item2}">
checked checked
</c:if> </c:if>

View File

@ -246,10 +246,11 @@ a {
} }
.setting_content2 { .setting_content2 {
width: 80%; width: 100%;
margin: 0 auto;
margin-top: 10px; margin-top: 10px;
justify-content: space-between; justify-content: space-between;
line-height: 3;
} }
.setting_sub_title { .setting_sub_title {