ui수정2

master
DESKTOP-QGC5RJO\DBNT 2023-01-19 16:26:31 +09:00
parent ae1dea342f
commit b68cfe9396
4 changed files with 23 additions and 17 deletions

View File

@ -137,9 +137,12 @@
/*background-color: #6885bfb0;*/ /*background-color: #6885bfb0;*/
background-color: #1650a778; background-color: #1650a778;
} }
.bg-lightB{ .bg-lightB-card{
background-color: #deebff78; background-color: #deebff78;
} }
.bg-lightB{
background-color: #aabfe178;
}
.bg-blue{ .bg-blue{
/*background-color: #1f2f5c;*/ /*background-color: #1f2f5c;*/
background-color: #24396c; background-color: #24396c;
@ -156,3 +159,6 @@
color:#0d49a7; color:#0d49a7;
/*color: #24396c;*/ /*color: #24396c;*/
} }
.col-form-label-sm.text-center{
background-color: #aabfe178;
}

View File

@ -20,36 +20,36 @@
<div class="tab-content bg-white border border-top-0 p-2"> <div class="tab-content bg-white border border-top-0 p-2">
<div class="tab-pane fade p-2 show active" id="boardTabPanel" role="tabpanel" tabindex="0"> <div class="tab-pane fade p-2 show active" id="boardTabPanel" role="tabpanel" tabindex="0">
<div class="row mb-1"> <div class="row mb-1">
<label class="col-sm-1 col-form-label col-form-label-sm text-center bg-lightB">분류</label> <label class="col-sm-1 col-form-label col-form-label-sm text-center">분류</label>
<label class="col-sm-2 col-form-label col-form-label-sm text-start"> <label class="col-sm-2 col-form-label col-form-label-sm text-start">
<th:block th:each="code:${session.commonCode.get('FRC')}"> <th:block th:each="code:${session.commonCode.get('FRC')}">
<th:block th:if="${code.itemCd eq faRpt.faRptType}" th:text="${code.itemValue}"></th:block> <th:block th:if="${code.itemCd eq faRpt.faRptType}" th:text="${code.itemValue}"></th:block>
</th:block> </th:block>
</label> </label>
<div class="col-6"></div> <div class="col-6"></div>
<label class="col-sm-1 col-form-label col-form-label-sm text-center bg-lightB">작성일시</label> <label class="col-sm-1 col-form-label col-form-label-sm text-center">작성일시</label>
<label class="col-sm-2 col-form-label col-form-label-sm text-start" th:text="${#temporals.format(faRpt.wrtDt, 'yyyy-MM-dd HH:mm')}"></label> <label class="col-sm-2 col-form-label col-form-label-sm text-start" th:text="${#temporals.format(faRpt.wrtDt, 'yyyy-MM-dd HH:mm')}"></label>
<label class="col-sm-1 col-form-label col-form-label-sm text-center bg-lightB">제목</label> <label class="col-sm-1 col-form-label col-form-label-sm text-center">제목</label>
<label class="col-sm-8 col-form-label col-form-label-sm text-start" th:text="${faRpt.title}"></label> <label class="col-sm-8 col-form-label col-form-label-sm text-start" th:text="${faRpt.title}"></label>
<label class="col-sm-1 col-form-label col-form-label-sm text-center bg-lightB">작성자</label> <label class="col-sm-1 col-form-label col-form-label-sm text-center">작성자</label>
<label class="col-sm-2 col-form-label col-form-label-sm text-start" th:text="${faRpt.wrtUserNm}"></label> <label class="col-sm-2 col-form-label col-form-label-sm text-start" th:text="${faRpt.wrtUserNm}"></label>
</div> </div>
<hr class="my-1"> <hr class="my-1">
<div class="row mb-1 justify-content-center"> <div class="row mb-1 justify-content-center">
<label class="col-sm-1 col-form-label col-form-label-sm bg-lightB">내용</label> <label class="col-sm-1 col-form-label col-form-label-sm text-center">내용</label>
<div class="col-sm-11 form-control-sm" th:utext="${faRpt.content}"></div> <div class="col-sm-11 form-control-sm" th:utext="${faRpt.content}"></div>
</div> </div>
<hr class="my-1"> <hr class="my-1">
<div class="row mb-1"> <div class="row mb-1">
<label class="col-sm-1 col-form-label col-form-label-sm text-center bg-lightB">해시태그</label> <label class="col-sm-1 col-form-label col-form-label-sm text-center">해시태그</label>
<label class="col-sm-11 col-form-label col-form-label-sm text-start" th:text="${faRpt.hashTags}"></label> <label class="col-sm-11 col-form-label col-form-label-sm text-start" th:text="${faRpt.hashTags}"></label>
</div> </div>
</div> </div>
<div class="tab-pane fade p-2" id="readUserTabPanel" role="tabpanel" tabindex="0"> <div class="tab-pane fade p-2" id="readUserTabPanel" role="tabpanel" tabindex="0">
<div class="row"> <div class="row table-secondary">
<div class="col-1 bg-lightB">no</div> <div class="col-1">no</div>
<div class="col-9 bg-lightB">수신자</div> <div class="col-9">수신자</div>
<div class="col-2 bg-lightB">열람</div> <div class="col-2">열람</div>
</div> </div>
<hr class="my-1"> <hr class="my-1">
<div class="row"> <div class="row">
@ -82,9 +82,9 @@
<div class="col-sm-12"> <div class="col-sm-12">
<table class="table table-sm" id="fileTable"> <table class="table table-sm" id="fileTable">
<thead> <thead>
<tr> <tr class="table-secondary">
<th class="bg-lightB">파일명</th> <th>파일명</th>
<th class="bg-lightB">사이즈</th> <th>사이즈</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>

View File

@ -14,7 +14,7 @@
</div> </div>
</div> </div>
<div class="row mx-0"> <div class="row mx-0">
<div class="col-12 card bg-lightB"> <div class="col-12 card bg-lightB-card">
<div class="card-body"> <div class="card-body">
<div class="row"> <div class="row">
<div class="col-6 py-1" id="subPage0"> <div class="col-6 py-1" id="subPage0">

View File

@ -13,7 +13,7 @@
<input type="hidden" name="_csrf_header" th:value="${_csrf.headerName}"/> <input type="hidden" name="_csrf_header" th:value="${_csrf.headerName}"/>
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}"/> <input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}"/>
<div class="row mx-0"> <div class="row mx-0">
<div class="col-12 card bg-lightB text-center"> <div class="col-12 card bg-lightB-card text-center">
<div class="card-body"> <div class="card-body">
<form method="get" th:action="@{/publicBoard/noticePage}"> <form method="get" th:action="@{/publicBoard/noticePage}">
<input type="hidden" name="pageIndex" id="pageIndex" th:value="${searchParams.pageIndex}"> <input type="hidden" name="pageIndex" id="pageIndex" th:value="${searchParams.pageIndex}">