정수빈 정수빈 6 days ago
관리자 팝업
@01cef160c8d3fe4a361994a4dd8917866664cb74
src/main/webapp/WEB-INF/jsp/sym/cal/EgovNormalCalPopup.jsp
--- src/main/webapp/WEB-INF/jsp/sym/cal/EgovNormalCalPopup.jsp
+++ src/main/webapp/WEB-INF/jsp/sym/cal/EgovNormalCalPopup.jsp
@@ -36,6 +36,6 @@
 </style>
 </head>
 <body style="margin :0px;">
-<iframe name="ifcal" src="<c:url value='/sym/cmm/EgovselectNormalCalendar.do'/>" style="width:100%; height:380px;" frameborder="0" scrolling="no" title="달력호출"></iframe>
+<iframe name="ifcal" src="<c:url value='/sym/cmm/EgovselectNormalCalendar.do'/>" style="width:100%; height:430px;" frameborder="0" scrolling="no" title="달력호출"></iframe>
 </body>
 </html>
(No newline at end of file)
src/main/webapp/WEB-INF/jsp/sym/cal/EgovNormalCalendar.jsp
--- src/main/webapp/WEB-INF/jsp/sym/cal/EgovNormalCalendar.jsp
+++ src/main/webapp/WEB-INF/jsp/sym/cal/EgovNormalCalendar.jsp
@@ -78,18 +78,20 @@
 }	
 
 </script>
+
 <!-- css -->
-<link rel="stylesheet" href="/kofair_case_seed/css/reset.css">
-<link rel="stylesheet" href="/kofair_case_seed/css/font.css">
-<link rel="stylesheet" href="/kofair_case_seed/adm/style/common.css">
-<link rel="stylesheet" href="/kofair_case_seed/adm/style/layout.css">
-<link rel="stylesheet" href="/kofair_case_seed/adm/style/popup.css">
-<link rel="stylesheet" href="/kofair_case_seed/adm/style/style.css">
-<style TYPE="text/css">
-    body { 
-        margin-top: 0px; margin-left: 0px;
-    }
-</style>
+<link rel="stylesheet" href="/publish/common/css/reset.css">
+<link rel="stylesheet" href="/publish/common/css/font.css">
+
+<link rel="stylesheet" href="/publish/adm/layout/layout.css">
+<link rel="stylesheet" href="/publish/adm/css/common.css">
+<link rel="stylesheet" href="/publish/adm/css/style.css">
+<link rel="stylesheet" href="/publish/adm/css/button.css">
+<link rel="stylesheet" href="/publish/adm/css/tab.css">
+<link rel="stylesheet" href="/publish/adm/css/table.css">
+<link rel="stylesheet" href="/publish/adm/css/calendar.css">
+<link rel="stylesheet" href="/publish/adm/css/popup.css">
+
 </head>
 <body>
 <form name="Form" action ="${pageContext.request.contextPath}/sym/cmm/EgovselectNormalCalendar.do" method="post">
@@ -97,22 +99,85 @@
 <input type="hidden" name="year" value="${resultList[0].year}" />
 <input type="hidden" name="month" value="${resultList[0].month}" />
 <input type="hidden" name="day" />
-<div class="calendar_table">
+
+<div class="calendar_view">
+	<div class="calendar_util">
+		<button type="button" class="btn only_icon large" onclick="javascript:fnChangeCalendar(${resultList[0].year-1},${resultList[0].month}); return false;"><i class="icon arrow first"></i></button>
+		<button type="button" class="btn only_icon large" onclick="javascript:fnChangeCalendar(${resultList[0].year},${resultList[0].month-1}); return false;"><i class="icon arrow prev"></i></button>
+		<strong>
+			${resultList[0].year}년 ${resultList[0].month}월
+		</strong>
+		<button type="button" class="btn only_icon large" onclick="javascript:fnChangeCalendar(${resultList[0].year},${resultList[0].month+1}); return false;"><i class="icon arrow next"></i></button>
+		<button type="button" class="btn only_icon large" onclick="javascript:fnChangeCalendar(${resultList[0].year+1},${resultList[0].month}); return false;"><i class="icon arrow last"></i></button>
+	</div>
+	
+	<div class="calendar_table">
+		<table>
+			<thead>
+				<tr>
+					<th>일</th>
+					<th>월</th>
+					<th>화</th>
+					<th>수</th>
+					<th>목</th>
+					<th>금</th>
+					<th>토</th>
+				</tr>
+			</thead>
+			<tbody>
+				<tr class="date_tr">
+			 		<c:forEach var="result" items="${resultList}" varStatus="status">
+						<c:choose>
+		    				<c:when test='${result.day == ""}'>
+		    			 		<c:choose>
+		        			 		<c:when test='${result.weeks != 6}'><td></td></c:when>
+		    					</c:choose>
+		    				</c:when>
+		    				<c:otherwise>
+		    			 		<c:choose>
+		        			 		<c:when test='${result.restAt == "Y" }'>
+		        					    <td class="lt_text3"  STYLE="color:red;cursor:pointer;cursor:hand" onClick="javascript:fnReturnDay(${result.day});">
+		        					    	${result.day}
+		        					    </td>
+		        					</c:when>
+		        					<c:otherwise>
+		        					    <td class="lt_text3"  STYLE="color:black;cursor:pointer;cursor:hand" onClick="javascript:fnReturnDay(${result.day});">
+		        					    	${result.day}
+		        					    </td>
+		        					</c:otherwise>
+		    					</c:choose>
+		        		 		<c:choose>
+		        			 		<c:when test='${result.week == 7}'>
+		        					    <c:out value="</tr>" escapeXml="false"/>
+		        					    <c:out value="<tr class='date_tr'>" escapeXml="false"/>
+		        					</c:when>
+		        				</c:choose>
+		    				</c:otherwise>
+						</c:choose>
+					</c:forEach>
+				</tr>
+			 </tbody>
+		</table>
+	</div>
+	
+</div>
+
+<%-- <div class="table_calendar">
 	<table cellpadding="1" class="table-line">
 	 <thead>
 	  <tr class="calendar_title">
 	    <th class="title" width="36"  colspan="1">
-	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year-1},${resultList[0].month}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><%-- <img src="<c:url value='/images/btn/icon_pre_year.gif' />" alt="이전년도"> <--%><img src="/kofair_case_seed/adm/images/component/icon_arrow_left_double.png" alt="이전년도" /></a>
+	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year-1},${resultList[0].month}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><img src="<c:url value='/images/btn/icon_pre_year.gif' />" alt="이전년도"> <<img src="/kofair_case_seed/adm/images/component/icon_arrow_left_double.png" alt="이전년도" /></a>
 	    </th>
 	    <th class="title" width="36"  colspan="1">
-	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year},${resultList[0].month-1}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><%-- <img src="<c:url value='/images/btn/icon_pre_month.gif' />" alt="이전달"> --%> <img src="/kofair_case_seed/adm/images/component/icon_arrow_left.png" alt="이전달" /></a>
+	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year},${resultList[0].month-1}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><img src="<c:url value='/images/btn/icon_pre_month.gif' />" alt="이전달"> <img src="/kofair_case_seed/adm/images/component/icon_arrow_left.png" alt="이전달" /></a>
 	    </th>
 	    <th class="title" width="108"  colspan="3">${resultList[0].year}년 ${resultList[0].month}월</th>
 	    <th class="title" width="36"  colspan="1">
-	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year},${resultList[0].month+1}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><%-- <img src="<c:url value='/images/btn/icon_aft_month.gif' />" alt="다음달"> --%><img src="/kofair_case_seed/adm/images/component/icon_arrow_right.png" alt="다음달" /></a>
+	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year},${resultList[0].month+1}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><img src="<c:url value='/images/btn/icon_aft_month.gif' />" alt="다음달"><img src="/kofair_case_seed/adm/images/component/icon_arrow_right.png" alt="다음달" /></a>
 	    </th>
 	    <th class="title" width="36"  colspan="1">
-	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year+1},${resultList[0].month}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><%-- <img src="<c:url value='/images/btn/icon_aft_year.gif' />" alt="다음년도"> --%><img src="/kofair_case_seed/adm/images/component/icon_arrow_right_double.png" alt="다음년도" /></a>
+	    	<a href="#LINK" onclick="javascript:fnChangeCalendar(${resultList[0].year+1},${resultList[0].month}); return false;"  style="selector-dummy:expression(this.hideFocus=false);cursor:pointer;cursor:hand;"><img src="<c:url value='/images/btn/icon_aft_year.gif' />" alt="다음년도"><img src="/kofair_case_seed/adm/images/component/icon_arrow_right_double.png" alt="다음년도" /></a>
 	    </th>
 	  </tr>
 	  <tr class="day_tr">
@@ -159,9 +224,10 @@
 		</tr>
 	 </tbody>  
 	</table>
-</div>
-<div class="btn_wrap center mt0">
-	<input type="submit" id="invisible" class="invisible btn btn_text btn_36 blue_border"/>
+</div> --%>
+<div class="btn_wrap center">
+	<!-- <input type="submit" id="invisible" class="btn fill primary medium"/> -->
+	<button type="submit" id="invisible" class="btn fill primary medium btn_submit_calendar">제출</button>
 </div>
 </form>
 </body>
src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupList.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupList.jsp
@@ -276,142 +276,139 @@
 	<input name="pageIndex" type="hidden" value="<c:out value='${popupManageVO.pageIndex}'/>"/>
 	<input type="hidden" name="searchSortCnd" value="<c:out value="${popupManageVO.searchSortCnd}" />" />
 	<input type="hidden" name="searchSortOrd" value="<c:out value="${popupManageVO.searchSortOrd}" />" />
-	<div class="cont_wrap">
-		<div class="box">
-			<div class="cont_tit">
-				<h2>팝업관리</h2>
-				<!-- <ul class="cont_nav">
-					<li class="home"><a href="/"><i></i></a></li>
-					<li><span class="cur_nav">관리자 관리</span></li>
-				</ul> -->
+	
+	<div class="content_title">
+	  <h3>팝업관리</h3>
+	  <ol class="breadcrumb">
+	    <li><a href="#" class="home" title="메인으로 이동"><i></i></a></li>
+	    <li><a href="#">메인관리</a></li>
+	    <li><strong class="current_location">팝업 관리</strong></li>
+	  </ol>
+	</div>
+	
+	
+	<div class="search_area">
+		<div class="search_left">
+			<p class="total_number">총 건수 <b><c:out value="${paginationInfo.totalRecordCount}" /></b>건</p>
+		</div>
+		<div class="search_right">
+			<select class="search_select" id="searchCondition" name="searchCondition" title="조회조건">
+				<option value="" >전체</option>
+				<option value="POPUP_SJ_NM" <c:if test="${searchCondition == 'POPUP_SJ_NM'}">selected="selected"</c:if> >제목</option>
+				<option value="FILE_URL" <c:if test="${searchCondition == 'FILE_URL'}">selected="selected"</c:if> >링크URL</option>
+			</select>
+			<div class="search_type input_type">
+				<input type="text" id="searchKeyword" name="searchKeyword" value="<c:out value='${popupManageVO.searchKeyword}'/>" class="input search_input" placeholder="검색어를 입력하세요" maxlength="255">
 			</div>
-			<!-- cont -->
-			<div class="cont">
-				<!-- list_top -->
-				<div class="list_top table_top">
-					<p>총 건수 : <span class="color_blue fw_bold"><c:out value="${paginationInfo.totalRecordCount}" /></span>건</p>
-					<div class="list_util search_wrap">
-					<select class="sel2 searchSel" id="searchCondition" name="searchCondition" title="조회조건">
-						<option value="" >전체</option>
-						<option value="POPUP_SJ_NM" <c:if test="${searchCondition == 'POPUP_SJ_NM'}">selected="selected"</c:if> >제목</option>
-						<option value="FILE_URL" <c:if test="${searchCondition == 'FILE_URL'}">selected="selected"</c:if> >링크URL</option>
-					</select>
-					
-					<input type="text" id="searchKeyword" name="searchKeyword" value="<c:out value='${popupManageVO.searchKeyword}'/>" class="search_input" placeholder="검색어를 입력하세요" maxlength="255">
-					<button class="btn_search btn btn_text blue_border" onclick="fn_egov_search_PopupManage(); return false;">검색</button>
-					
-					<select class="sel2" name="pageUnit" id="pageUnit" onchange="linkPage(1);" title="줄 선택" style="width: 140px">
-						<option value='10' <c:if test="${popupManageVO.pageUnit == '10' or popupManageVO.pageUnit == ''}">selected</c:if>>10줄</option>
-						<option value='20' <c:if test="${popupManageVO.pageUnit == '20'}">selected</c:if>>20줄</option>
-						<option value='30' <c:if test="${popupManageVO.pageUnit == '30'}">selected</c:if>>30줄</option>
-		               </select>
-					</div>
-				</div>
-				<!-- //list_top -->
-		
-				<!-- list -->
-				<div class="list tbType01 table-layout mt15">
-					<table>
-						<colgroup>
-							<col style="width: 3%">
-							<col style="width: 5%">
-							<col style="width: 20%">
-							<col style="width: 13%">
-							<col style="width: auto;">
-							<col style="width: 10%">
-							<col style="width: 8%">
-							<col style="width: 8%">
-						</colgroup>
-						<thead>
-							<tr>
-								<th><input type="checkbox" name="checkAll" id="checkAll" onclick="fn_egov_checkAll_PopupManage();" /><label for="checkAll"></label></th>
-								<th scope="col">번호<button class="sort sortBtn" id="sort_POPUP_ID">▲</button></th>
-								<th scope="col">제목<button class="sort sortBtn" id="sort_POPUP_TITLE_NM">▲</button></th>
-								<th scope="col">시작일/종료일<button class="sort sortBtn" id="sort_NTCE_BGNDE">▲</button></th>
-<!-- 								<th scope="col">링크URL<button class="sort sortBtn" id="sort_FILE_URL">▲</button></th> -->
-								<th scope="col">팝업 위치<button class="sort sortBtn" id="sort_FILE_URL">▲</button></th>
-								<th scope="col">이미지크기<button class="sort sortBtn" id="sort_FRST_REGIST_PNTTM">▲</button></th>
-								<th scope="col">링크사용여부<button class="sort sortBtn" id="sort_NTCE_AT">▲</button></th>
-								<th scope="col">등록일<button class="sort sortBtn" id="sort_FRST_REGIST_PNTTM">▲</button></th>
-								
-							</tr>
-						</thead>
-						<tbody>
-							<c:forEach var="result" items="${resultList}" varStatus="status">
-							<tr>
-								<td>
-									<input name="checkList" id="<c:out value='${result.popupId}'/>"  value="<c:out value='${result.popupId}'/>" type="checkbox"/><label for="<c:out value="${result.popupId}"/>"></label>
-								</td>
-								<td>
-									<c:if test="${popupManageVO.searchSortOrd eq 'desc' }">
-			                			<c:out value="${ ( paginationInfo.totalRecordCount - ((popupManageVO.pageIndex -1)*popupManageVO.pageUnit) ) - status.index }"/>
-				                	</c:if>
-				                	<c:if test="${popupManageVO.searchSortOrd eq 'asc' }">
-										<c:out value="${(popupManageVO.pageIndex - 1) * popupManageVO.pageUnit + status.count}"/>                		
-				                	</c:if>
-								</td>
-								<td>
-									<a href="#" onclick="fn_egov_detail_PopupManage('${result.popupId}'); return false;">${result.popupTitleNm}</a>
-								</td>
-								<td>
-										<c:set var="ntceBgnde" value="${fn:trim(result.ntceBgnde)}"/>
-										<c:set var="ntceEndde" value="${fn:trim(result.ntceEndde)}"/>
-										<fmt:parseDate value='${ntceBgnde}' var='ntceBgnde' pattern="yyyyMMddHHmm" scope="page" />
-								    	<fmt:parseDate value='${ntceEndde}' var='ntceEndde' pattern="yyyyMMddHHmm" scope="page" />
-								    	<fmt:formatDate value="${ntceBgnde}" pattern="yyyy-MM-dd HH:mm"/><br/> ~ <fmt:formatDate value="${ntceEndde}" pattern="yyyy-MM-dd HH:mm"/>
-								</td>
-								<td>
-<%-- 									<c:out value="${result.fileUrl}"/> --%>
-										화면 상단으로 부터 : <c:out value="${result.popupVrticlLc}"/>
-										</br>
-										화면 좌측으로 부터 : <c:out value="${result.popupWidthLc}"/>
-			                    </td>
-			                    <td>
-			                    	<c:if test="${!empty result.width}">
-										높이 : <c:out value="${result.height}"/>
-										</br>
-										너비 : <c:out value="${result.width}"/>
-									</c:if>
-			                    </td>
-			                    <td>
-									<c:out value="${result.ntceAt}"/>
-								</td>
-								<td>
-									<c:out value="${result.frstRegistPnttm}"/>
-			                    </td>
-							</tr>
-							</c:forEach>
-							<c:if test="${empty resultList}">
-			         			<tr><td colspan="7"><spring:message code="common.nodata.msg" /></td></tr>
-			         		</c:if>
-						</tbody>
-					</table>
-				</div>
-				<!-- //list -->
-				
-				<!-- btn_wrap -->
-				<div class="btn_wrap btn_layout01">
-					<div class="area_left">
-						<button type="button" class="btnType03 btn btn_text btn_46 red_border"  onclick="fncPopupListDelete(); return false;">삭제</button>
-					</div>
-					<div class="area_right">
-						<button type="button" class="btnType02 btn btn_text btn_46 blue_fill" onclick="location.href='/uss/ion/pwm/egovPopupRegist.do'; return false;">등록</button>
-					</div>
-				</div>
-				<!-- //btn_wrap -->
-				
-				<!-- page -->
-				<c:if test="${!empty resultList}">
-				<div class="page">
-					<ul class="inline">
-						<ui:pagination paginationInfo = "${paginationInfo}"  type="image" jsFunction="linkPage" />
-					</ul>
-				</div>
-				</c:if>
-			</div>
-			<!-- //cont -->
+			
+			<button class="btn btn_search" onclick="fn_egov_search_PopupManage(); return false;">검색</button>
+			
+			<select class="search_select" name="pageUnit" id="pageUnit" onchange="linkPage(1);" title="줄 선택" style="width: 140px">
+				<option value='10' <c:if test="${popupManageVO.pageUnit == '10' or popupManageVO.pageUnit == ''}">selected</c:if>>10줄</option>
+				<option value='20' <c:if test="${popupManageVO.pageUnit == '20'}">selected</c:if>>20줄</option>
+				<option value='30' <c:if test="${popupManageVO.pageUnit == '30'}">selected</c:if>>30줄</option>
+               </select>
 		</div>
 	</div>
+	
+	<div class="table table_type_cols">
+		<table>
+			<colgroup>
+				<col style="width: 40px">
+				<col style="width: 5%">
+				<col style="width: 20%">
+				<col style="width: 13%">
+				<col style="width: auto;">
+				<col style="width: 10%">
+				<col style="width: 8%">
+				<col style="width: 8%">
+			</colgroup>
+			<thead>
+				<tr>
+					<th><input type="checkbox" name="checkAll" id="checkAll" onclick="fn_egov_checkAll_PopupManage();" /><label for="checkAll"></label></th>
+					<th scope="col">번호<button class="sort sortBtn" id="sort_POPUP_ID">▲</button></th>
+					<th scope="col">제목<button class="sort sortBtn" id="sort_POPUP_TITLE_NM">▲</button></th>
+					<th scope="col">시작일/종료일<button class="sort sortBtn" id="sort_NTCE_BGNDE">▲</button></th>
+	<!-- 								<th scope="col">링크URL<button class="sort sortBtn" id="sort_FILE_URL">▲</button></th> -->
+					<th scope="col">팝업 위치<button class="sort sortBtn" id="sort_FILE_URL">▲</button></th>
+					<th scope="col">이미지크기<button class="sort sortBtn" id="sort_FRST_REGIST_PNTTM">▲</button></th>
+					<th scope="col">링크사용여부<button class="sort sortBtn" id="sort_NTCE_AT">▲</button></th>
+					<th scope="col">등록일<button class="sort sortBtn" id="sort_FRST_REGIST_PNTTM">▲</button></th>
+					
+				</tr>
+			</thead>
+			<tbody>
+				<c:forEach var="result" items="${resultList}" varStatus="status">
+				<tr>
+					<td>
+						<input name="checkList" id="<c:out value='${result.popupId}'/>"  value="<c:out value='${result.popupId}'/>" type="checkbox"/><label for="<c:out value="${result.popupId}"/>"></label>
+					</td>
+					<td>
+						<c:if test="${popupManageVO.searchSortOrd eq 'desc' }">
+	               			<c:out value="${ ( paginationInfo.totalRecordCount - ((popupManageVO.pageIndex -1)*popupManageVO.pageUnit) ) - status.index }"/>
+	                	</c:if>
+	                	<c:if test="${popupManageVO.searchSortOrd eq 'asc' }">
+							<c:out value="${(popupManageVO.pageIndex - 1) * popupManageVO.pageUnit + status.count}"/>                		
+	                	</c:if>
+					</td>
+					<td>
+						<a href="#" onclick="fn_egov_detail_PopupManage('${result.popupId}'); return false;">${result.popupTitleNm}</a>
+					</td>
+					<td>
+							<c:set var="ntceBgnde" value="${fn:trim(result.ntceBgnde)}"/>
+							<c:set var="ntceEndde" value="${fn:trim(result.ntceEndde)}"/>
+							<fmt:parseDate value='${ntceBgnde}' var='ntceBgnde' pattern="yyyyMMddHHmm" scope="page" />
+					    	<fmt:parseDate value='${ntceEndde}' var='ntceEndde' pattern="yyyyMMddHHmm" scope="page" />
+					    	<fmt:formatDate value="${ntceBgnde}" pattern="yyyy-MM-dd HH:mm"/><br/> ~ <fmt:formatDate value="${ntceEndde}" pattern="yyyy-MM-dd HH:mm"/>
+					</td>
+					<td>
+	<%-- 									<c:out value="${result.fileUrl}"/> --%>
+							화면 상단으로 부터 : <c:out value="${result.popupVrticlLc}"/>
+							</br>
+							화면 좌측으로 부터 : <c:out value="${result.popupWidthLc}"/>
+	                   </td>
+	                   <td>
+	                   	<c:if test="${!empty result.width}">
+							높이 : <c:out value="${result.height}"/>
+							</br>
+							너비 : <c:out value="${result.width}"/>
+						</c:if>
+	                   </td>
+	                   <td>
+						<c:out value="${result.ntceAt}"/>
+					</td>
+					<td>
+						<c:out value="${result.frstRegistPnttm}"/>
+	                   </td>
+				</tr>
+				</c:forEach>
+				<c:if test="${empty resultList}">
+	        			<tr><td colspan="7"><spring:message code="common.nodata.msg" /></td></tr>
+	        		</c:if>
+			</tbody>
+		</table>
+	</div>
+	
+	<!-- btn_wrap -->
+	<div class="btn_wrap">
+		<div class="left">
+			<button type="button" class="btn line red xlarge"  onclick="fncPopupListDelete(); return false;">삭제</button>
+		</div>
+		<div class="right">
+			<button type="button" class="btn fill primary xlarge" onclick="location.href='/uss/ion/pwm/egovPopupRegist.do'; return false;">등록</button>
+		</div>
+	</div>
+	<!-- //btn_wrap -->
+	
+	<!-- page -->
+	<c:if test="${!empty resultList}">
+	<div class="page">
+		<ul class="inline">
+			<ui:pagination paginationInfo = "${paginationInfo}"  type="image" jsFunction="linkPage" />
+		</ul>
+	</div>
+	</c:if>
+	
 </form>
 <form name="subForm" method="get" action="<c:url value='/uss/ion/pwm/detailPopup.do'/>">
    	<input name="popupId" type="hidden" value="" />
src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupRegist.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupRegist.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupRegist.jsp
@@ -122,10 +122,7 @@
 }
 </script>
 <style>
-.date_format{width:91px !important;}
-.main1_table input{
-		width: unset;
-	}
+.main1_table input{width: unset;}
 </style>
 </head>
 <body>
@@ -135,167 +132,129 @@
 	<form:hidden path="ntceEndde" />
 	<input name="cmd" type="hidden" value="<c:out value='save'/>"/>
 	<input name="popupType" type="hidden" value="<c:out value='L'/>"/>
-					
-<!-- cont -->
-<div class="cont_wrap">
-	<div class="box">
-
-		<!-- cont_tit -->
-		<div class="cont_tit">
-			<h2>팝업 등록</h2>
-		</div>
-		<!-- //cont_tit -->
-
-		<div class="cont">
-			<!-- list_상세 -->
-			<div class="tbType02 col-table data-table">
-				<table>
-					<colgroup>
-						<col style="width: 20%">
-						<col style="width: 80%">
-					</colgroup>
-
-					<tbody>
-						<tr>
-							<th><span class="reqArea">팝업명</span></th>
-							<td>
-								<form:input path="popupTitleNm" size="50" title="팝업명" maxlength="255"/>
-		      					<form:errors path="popupTitleNm" />							
-							</td>
-						</tr>
-						<tr>
-							<th><span class="reqArea">게시기간</span></th>
-							<td>
-								<%-- <input type="hidden" name="cal_url" id="cal_url" value="<c:url value='/sym/cmm/EgovNormalCalPopup.do'/>" >
-							    <input type="text" class="date_format" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD" size="10" maxlength="10" class="readOnlyClass" readonly>
-							    
-							    <a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceBgndeYYYMMDD);">
-							    <input type="button" class="calBtn">
-							    <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />"  align="middle" style="border:0px" alt="달력창팝업버튼이미지">
-							    </a>
-							    <form:select path="ntceBgndeHH" class="date_format">
-							        <form:options items="${ntceBgndeHH}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>시
-							    <form:select path="ntceBgndeMM" class="date_format">
-							        <form:options items="${ntceBgndeMM}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>분
-							    &nbsp&nbsp~&nbsp&nbsp
-							    <input type="text" class="date_format" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD" size="10" maxlength="10" class="readOnlyClass" readonly>
-							    <a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceEnddeYYYMMDD);">
-							    <input type="button" class="calBtn">
-							    <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />" align="middle" style="border:0px" alt="달력창팝업버튼이미지">
-							    </a>
-							    <form:select path="ntceEnddeHH" class="date_format">
-							        <form:options items="${ntceEnddeHH}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>시
-							    <form:select path="ntceEnddeMM" class="date_format">
-							        <form:options items="${ntceEnddeMM}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>분	 --%>
-							    
-							    
-								<div id="sel_date" class="sel_date calendar">
-									<input type="hidden" name="cal_url" id="cal_url" value="<c:url value='/sym/cmm/EgovNormalCalPopup.do'/>" >
-									
-									<input type="text" class="date_format" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD"  maxlength="10" title="게시시작일" readonly>
-									
-									
-									<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
-								<a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceBgndeYYYMMDD);">
-							    <input type="button" class="calBtn">
-							    <%-- <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />"  align="middle" style="border:0px" alt="달력창팝업버튼이미지"> --%>
-							    </a>
-									</div> 
-								<form:select path="ntceBgndeHH" class="date_format">
-							        <form:options items="${ntceBgndeHH}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select> 시
-							    <form:select path="ntceBgndeMM" class="date_format">
-							        <form:options items="${ntceBgndeMM}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select> 분	
-									~
-							    	<input type="text" class="date_format" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD"  maxlength="10" title="게시종료일" readonly>
-									<div class="calendar_in" id="calendarName_endDate" style="z-index: 9;">
-								<a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceEnddeYYYMMDD);">
-							    <input type="button" class="calBtn">
-							    <%-- <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />"  align="middle" style="border:0px" alt="달력창팝업버튼이미지"> --%>
-							    </a>
-									</div> 
-								<form:select path="ntceEnddeHH" class="date_format">
-							        <form:options items="${ntceEnddeHH}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select> 시
-							    <form:select path="ntceEnddeMM" class="date_format">
-							        <form:options items="${ntceEnddeMM}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select> 분								    	
-									</div>
-							</td>
-						</tr>
-						<tr>
-							<th>링크 URL</th>
-							<td>
-								<form:input path="fileUrl" size="50"  title="링크 URL" maxlength="255"/>
-		      					<form:errors path="fileUrl" />								
-							</td>
-						</tr>
-						<tr style="display:none;">
-							<th>팝업사이즈</th>
-							<td>
-							     가로<form:input path="popupWSize" class="dateInput" maxlength="10" value="100"/>px  세로<form:input path="popupHSize" class="dateInput" maxlength="10" value="100"/>px
-							  <form:errors path="popupWSize" />
-							  <form:errors path="popupHSize" />							
-							</td>
-						</tr>
-						<tr>
-							<th>위치</th>
-							<td class="td_position">
-								<p>왼쪽 <form:input path="popupWlc" class="dateInput" maxlength="10"/> px</p> 
-								<p>상단 <form:input path="popupHlc" class="dateInput" maxlength="10"/> px</p>
-								  <form:errors path="popupWlc" />
-								  <form:errors path="popupHlc" />
-							</td>
-						</tr>
-						<tr>
-							<th>내용</th>
-							<td>
-								<form:textarea path="nttCn" title="${title} ${inputTxt}" cols="300" rows="20" /> 
-								<ckeditor:replace replace="nttCn" basePath="${pageContext.request.contextPath}/html/egovframework/com/cmm/utl/ckeditor/" />							
-							</td>
-						</tr>
-						<tr>
-							<th>게시 상태</th>
-							<td>
-								<div class="radio_wrap">
-									<span><input type="radio" name="ntceAt" id="Y2" value="Y" checked><label for="Y2">예</label></span>
-									<span><input type="radio" name="ntceAt" id="N2" value="N"><label for="N2">아니오</label></span>
-								</div>							
-							</td>
-						</tr>	
-						<tr>
-							<th>그만보기 설정 여부</th>
-							<td>
-								<div class="radio_wrap">
-									<span><input type="radio" name="stopVewAt" id="Y3" value="Y" checked><label for="Y3">예</label></span>
-									<span><input type="radio" name="stopVewAt" id="N3" value="N"><label for="N3">아니오</label></span>
-								</div>								
-		      				</td> 
-						</tr>																													
-					</tbody>
-				</table>
-			</div>
-			<!-- //list_상세 -->
-
-			<!-- btn_wrap -->
-			<div class="btn_wrap btn_layout01">
-				<div class="area_left">
-				</div>
-				<div class="area_right">
-					<button type="button" class="btnType06 btn btn_text btn_46 blue_fill" onclick="fn_egov_save_PopupManage(); return false;">저 장</button>
-					<button type="button" class="btnType04 btn btn_text btn_46 gray_fill" onclick="fnList(); return false;">목 록</button>
-				</div>				
-			</div>
-			<!-- //btn_wrap -->
-		</div>
+	
+	<div class="content_title">
+		<h3>팝업 등록</h3>
+		<ol class="breadcrumb">
+			<li><a href="#" class="home" title="메인으로 이동"><i></i></a></li>
+			<li><a href="#">메인관리</a></li>
+			<li><strong class="current_location">팝업 등록</strong></li>
+		</ol>
 	</div>
-</div>
-<!-- //cont -->
+	
+	
+	<div class="table table_type_rows">
+		<table>
+			<colgroup>
+				<col style="width: 200px;">
+				<col style="width: auto;">
+			</colgroup>
+
+			<tbody>
+				<tr>
+					<th><span class="required">*</span>팝업명</th>
+					<td>
+						<form:input path="popupTitleNm" size="50" title="팝업명" maxlength="255" class="input w100per"/>
+      					<form:errors path="popupTitleNm" />							
+					</td>
+				</tr>
+				<tr>
+					<th><span class="required">*</span>게시기간</th>
+					<td>
+					
+						<div class="calendar_wrap">
+							<input type="hidden" name="cal_url" id="cal_url" value="<c:url value='/sym/cmm/EgovNormalCalPopup.do'/>" >
+							<input type="text" class="date_format input calendar" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD"  maxlength="10" title="게시시작일" readonly>
+							<a href="#" class="btn only_icon medium lightgray btn_calendar" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceBgndeYYYMMDD);"><i class="icon calendar"></i></a>
+							
+							<form:select path="ntceBgndeHH" class="date_format">
+					        <form:options items="${ntceBgndeHH}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select> 시
+						    <form:select path="ntceBgndeMM" class="date_format">
+						        <form:options items="${ntceBgndeMM}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select> 분 ~ 
+						    
+						    <input type="text" class="date_format input calendar" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD"  maxlength="10" title="게시종료일" readonly>
+						    <a href="#" class="btn only_icon medium lightgray btn_calendar" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceEnddeYYYMMDD);"><i class="icon calendar"></i></a>
+						    
+						    <form:select path="ntceEnddeHH" class="date_format">
+					        <form:options items="${ntceEnddeHH}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select> 시
+						    <form:select path="ntceEnddeMM" class="date_format">
+						        <form:options items="${ntceEnddeMM}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select> 분								    	
+						</div>
+						
+					</td>
+				</tr>
+				<tr>
+					<th>링크 URL</th>
+					<td>
+						<form:input path="fileUrl" size="50"  title="링크 URL" class="input w100per" maxlength="255"/>
+      					<form:errors path="fileUrl" />								
+					</td>
+				</tr>
+				<tr style="display:none;">
+					<th>팝업사이즈</th>
+					<td>
+					     가로<form:input path="popupWSize" class="input" maxlength="10" value="100"/>px  세로<form:input path="popupHSize" class="input" maxlength="10" value="100"/>px
+					  <form:errors path="popupWSize" />
+					  <form:errors path="popupHSize" />							
+					</td>
+				</tr>
+				<tr>
+					<th>위치</th>
+					<td class="td_position">
+					
+						<div class="form_wrap input_mix_wrap">
+                          <span class="text_split">왼쪽</span><form:input path="popupWlc" class="input" maxlength="10"/><span class="text_split">px</span>
+                          <span class="text_split">&ensp;&ensp;상단</span><form:input path="popupHlc" class="input" maxlength="10"/><span class="text_split">px</span>
+                          <form:errors path="popupWlc" />
+						  <form:errors path="popupHlc" />
+                        </div>
+						  
+					</td>
+				</tr>
+				<tr>
+					<th>내용</th>
+					<td>
+						<form:textarea path="nttCn" title="${title} ${inputTxt}" cols="300" rows="20" /> 
+						<ckeditor:replace replace="nttCn" basePath="${pageContext.request.contextPath}/html/egovframework/com/cmm/utl/ckeditor/" />							
+					</td>
+				</tr>
+				<tr>
+					<th>게시 상태</th>
+					<td>
+						<div class="form_wrap radio_wrap">
+							
+							<span class="radio_item"><input type="radio" name="ntceAt" id="Y2" value="Y" checked><label for="Y2">예</label></span>
+							<span class="radio_item"><input type="radio" name="ntceAt" id="N2" value="N"><label for="N2">아니오</label></span>
+						
+						</div>							
+					</td>
+				</tr>	
+				<tr>
+					<th>그만보기 설정 여부</th>
+					<td>
+						<div class="form_wrap radio_wrap">
+						
+							<span class="radio_item"><input type="radio" name="stopVewAt" id="Y3" value="Y" checked><label for="Y3">예</label></span>
+							<span class="radio_item"><input type="radio" name="stopVewAt" id="N3" value="N"><label for="N3">아니오</label></span>
+							
+						</div>								
+      				</td> 
+				</tr>																													
+			</tbody>
+		</table>
+	</div>
+	
+	<!-- btn_wrap -->
+	<div class="btn_wrap right">
+		<button type="button" class="btn fill primary xlarge" onclick="fn_egov_save_PopupManage(); return false;">저 장</button>
+		<button type="button" class="btn fill gray xlarge" onclick="fnList(); return false;">목 록</button>
+	</div>
+	<!-- //btn_wrap -->
+	
 </form:form>
 <form name="searchForm" id="searchForm" method="get" action="<c:url value='/uss/ion/pwm/listPopup.do'/>" ></form>
 </body>
src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupUpdt.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupUpdt.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/pwm/EgovPopupUpdt.jsp
@@ -145,166 +145,133 @@
 	<form:hidden path="ntceEndde" />
 	<input name="popupId" type="hidden" value="${popupManageVO.popupId}">
 	<input name="cmd" type="hidden" value=""/>
-					
-<!-- cont -->
-<div class="cont_wrap">
-	<div class="box">
+	
+	
+	<div class="content_title">
+		<h3>팝업 수정</h3>
+		<ol class="breadcrumb">
+			<li><a href="#" class="home" title="메인으로 이동"><i></i></a></li>
+			<li><a href="#">메인관리</a></li>
+			<li><strong class="current_location">팝업 수정</strong></li>
+		</ol>
+	</div>
+	
+	
+	<div class="table table_type_rows">
+		<table>
+			<colgroup>
+				<col style="width: 200px;">
+				<col style="width: auto;">
+			</colgroup>
 
-		<!-- cont_tit -->
-		<div class="cont_tit">
-			<h2>팝업 수정</h2>
+			<tbody>
+				<tr>
+					<th><span class="required">*</span>팝업명</th>
+					<td>
+						<form:input path="popupTitleNm" size="50" title="팝업명" maxlength="255" cssClass="input w100per"/>
+      					<form:errors path="popupTitleNm" />							
+					</td>
+				</tr>
+				<tr>
+					<th><span class="required">*</span>게시기간</th>
+					<td>
+					
+						<div class="calendar_wrap">
+							<input type="hidden" name="cal_url" id="cal_url" value="<c:url value='/sym/cmm/EgovNormalCalPopup.do'/>" >
+							<input type="text" class="input calendar" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD"  maxlength="10" title="게시시작일" value="<c:out value="${fn:substring(popupManageVO.ntceBgnde, 0, 4)}"/>-<c:out value="${fn:substring(popupManageVO.ntceBgnde, 4, 6)}"/>-<c:out value="${fn:substring(popupManageVO.ntceBgnde, 6, 8)}"/>" readonly>
+							<a href="#" class="btn only_icon medium lightgray btn_calendar" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceBgndeYYYMMDD);"><i class="icon calendar"></i></a>
+							
+							<form:select path="ntceBgndeHH" class="date_format">
+						        <form:options items="${ntceBgndeHH}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select>시
+						    <form:select path="ntceBgndeMM" class="date_format">
+						        <form:options items="${ntceBgndeMM}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select>분	~
+						    
+						    <input type="text" class="input calendar" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD"  maxlength="10" title="게시종료일" value="<c:out value="${fn:substring(popupManageVO.ntceEndde, 0, 4)}"/>-<c:out value="${fn:substring(popupManageVO.ntceEndde, 4, 6)}"/>-<c:out value="${fn:substring(popupManageVO.ntceEndde, 6, 8)}"/>" readonly>
+						    <a href="#" class="btn only_icon medium lightgray btn_calendar" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceEnddeYYYMMDD);"><i class="icon calendar"></i></a> 
+							
+							<form:select path="ntceEnddeHH" class="date_format">
+						        <form:options items="${ntceEnddeHH}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select>시
+						    <form:select path="ntceEnddeMM" class="date_format">
+						        <form:options items="${ntceEnddeMM}" itemValue="code" itemLabel="codeNm"/>
+						    </form:select>분	
+						</div>
+					    
+					</td>
+				</tr>
+				<tr>
+					<th>링크 URL</th>
+					<td>
+						<form:input path="fileUrl" size="50"  title="링크 URL" maxlength="255" cssClass="input w100per"/>
+      					<form:errors path="fileUrl" />								
+					</td>
+				</tr>
+				<tr style="display:none;">
+					<th>팝업사이즈</th>
+					<td>
+					     가로<form:input path="popupWSize" class="dateInput" maxlength="10" value="100"/>px  세로<form:input path="popupHSize" class="dateInput" maxlength="10" value="100"/>px
+					  <form:errors path="popupWSize" />
+					  <form:errors path="popupHSize" />							
+					</td>
+				</tr>
+				<tr>
+					<th>위치</th>
+					<td class="td_position">
+					
+						<div class="form_wrap input_mix_wrap">
+							<span class="text_split">왼쪽</span><form:input path="popupWlc" class="input" maxlength="10"/><span class="text_split">px</span>
+							<span class="text_split">&ensp;&ensp;상단</span><form:input path="popupHlc" class="input" maxlength="10"/><span class="text_split">px</span>
+							<form:errors path="popupWlc" />
+							<form:errors path="popupHlc" />
+						</div>
+					</td>
+				</tr>
+				<tr>
+					<th>내용</th>
+					<td>
+						<form:textarea path="nttCn" title="${title} ${inputTxt}" cols="300" rows="20" /> 
+						<ckeditor:replace replace="nttCn" basePath="${pageContext.request.contextPath}/html/egovframework/com/cmm/utl/ckeditor/" />							
+					</td>
+				</tr>
+				<tr>
+					<th>게시 상태</th>
+					<td>
+						<div class="form_wrap radio_wrap">
+							<span class="radio_item"><input type="radio" name="ntceAt" id="Y2" value="Y" <c:if test="${popupManageVO.ntceAt eq 'Y'}">checked</c:if>><label for="Y2">예</label></span>
+							<span class="radio_item"><input type="radio" name="ntceAt" id="N2" value="N" <c:if test="${popupManageVO.ntceAt eq 'N'}">checked</c:if>><label for="N2">아니오</label></span>
+						</div>							
+					</td>
+				</tr>	
+				<tr>
+					<th>그만보기 설정 여부</th>
+					<td>
+						<div class="form_wrap radio_wrap">
+							<span class="radio_item"><input type="radio" name="stopVewAt" id="Y3" value="Y" <c:if test="${popupManageVO.stopVewAt eq 'Y'}">checked</c:if>><label for="Y3">예</label></span>
+							<span class="radio_item"><input type="radio" name="stopVewAt" id="N3" value="N"<c:if test="${popupManageVO.stopVewAt eq 'N'}">checked</c:if>><label for="N3">아니오</label></span>
+						</div>								
+      				</td> 
+				</tr>																													
+			</tbody>
+		</table>
+	</div>
+	
+	<!-- btn_wrap -->
+	<div class="btn_wrap">
+		<div class="left">
+			<button class="btn line red xlarge" onclick="fn_egov_delete_PopupManage(); return false;">삭 제</button>
 		</div>
-		<!-- //cont_tit -->
-
-		<div class="cont">
-			<!-- list_상세 -->
-			<div class="tbType02 col-table data-table">
-				<table>
-					<colgroup>
-						<col style="width: 20%">
-						<col style="width: 80%">
-					</colgroup>
-
-					<tbody>
-						<tr>
-							<th><span class="reqArea">팝업명</span></th>
-							<td>
-								<form:input path="popupTitleNm" size="50" title="팝업명" maxlength="255" cssClass="w100per"/>
-		      					<form:errors path="popupTitleNm" />							
-							</td>
-						</tr>
-						<tr>
-							<th><span class="reqArea">게시기간</span></th>
-							<td>
-								<%-- <input type="hidden" name="cal_url" id="cal_url" value="<c:url value='/sym/cmm/EgovNormalCalPopup.do'/>" >
-							    <input type="text" class="date_format" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD" size="10" maxlength="10" class="readOnlyClass" readonly>
-							    
-							    <a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceBgndeYYYMMDD);">
-							    <input type="button" class="calBtn">
-							    <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />"  align="middle" style="border:0px" alt="달력창팝업버튼이미지">
-							    </a>
-							    <form:select path="ntceBgndeHH" class="date_format">
-							        <form:options items="${ntceBgndeHH}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>시
-							    <form:select path="ntceBgndeMM" class="date_format">
-							        <form:options items="${ntceBgndeMM}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>분
-							    &nbsp&nbsp~&nbsp&nbsp
-							    <input type="text" class="date_format" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD" size="10" maxlength="10" class="readOnlyClass" readonly>
-							    <a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceEnddeYYYMMDD);">
-							    <input type="button" class="calBtn">
-							    <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />" align="middle" style="border:0px" alt="달력창팝업버튼이미지">
-							    </a>
-							    <form:select path="ntceEnddeHH" class="date_format">
-							        <form:options items="${ntceEnddeHH}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>시
-							    <form:select path="ntceEnddeMM" class="date_format">
-							        <form:options items="${ntceEnddeMM}" itemValue="code" itemLabel="codeNm"/>
-							    </form:select>분	 --%>
-							    
-							    
-								<div id="sel_date" class="sel_date calendar">
-									<input type="hidden" name="cal_url" id="cal_url" value="<c:url value='/sym/cmm/EgovNormalCalPopup.do'/>" >
-									<input type="text" class="date_format" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD"  maxlength="10" title="게시시작일" value="<c:out value="${fn:substring(popupManageVO.ntceBgnde, 0, 4)}"/>-<c:out value="${fn:substring(popupManageVO.ntceBgnde, 4, 6)}"/>-<c:out value="${fn:substring(popupManageVO.ntceBgnde, 6, 8)}"/>" readonly>
-									<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
-										<a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceBgndeYYYMMDD);">
-									    <input type="button" class="calBtn">
-									    <%-- <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />"  align="middle" style="border:0px" alt="달력창팝업버튼이미지"> --%>
-									    </a>
-									</div> 
-									<form:select path="ntceBgndeHH" class="date_format">
-								        <form:options items="${ntceBgndeHH}" itemValue="code" itemLabel="codeNm"/>
-								    </form:select>시
-								    <form:select path="ntceBgndeMM" class="date_format">
-								        <form:options items="${ntceBgndeMM}" itemValue="code" itemLabel="codeNm"/>
-								    </form:select>분	
-									~
-							    	<input type="text" class="date_format" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD"  maxlength="10" title="게시종료일" value="<c:out value="${fn:substring(popupManageVO.ntceEndde, 0, 4)}"/>-<c:out value="${fn:substring(popupManageVO.ntceEndde, 4, 6)}"/>-<c:out value="${fn:substring(popupManageVO.ntceEndde, 6, 8)}"/>" readonly>
-									<div class="calendar_in" id="calendarName_endDate" style="z-index: 9;">
-										<a href="#" onClick="javascript:fn_egov_NormalCalendar(document.forms.popupManageVO, document.forms.popupManageVO.ntceEnddeYYYMMDD);">
-									    <input type="button" class="calBtn">
-									    <%-- <img src="<c:url value='/images/egovframework/com/cmm/icon/bu_icon_carlendar.gif' />"  align="middle" style="border:0px" alt="달력창팝업버튼이미지"> --%>
-									    </a>
-									</div> 
-									<form:select path="ntceEnddeHH" class="date_format">
-								        <form:options items="${ntceEnddeHH}" itemValue="code" itemLabel="codeNm"/>
-								    </form:select>시
-								    <form:select path="ntceEnddeMM" class="date_format">
-								        <form:options items="${ntceEnddeMM}" itemValue="code" itemLabel="codeNm"/>
-								    </form:select>분								    	
-								</div>
-							</td>
-						</tr>
-						<tr>
-							<th>링크 URL</th>
-							<td>
-								<form:input path="fileUrl" size="50"  title="링크 URL" maxlength="255" cssClass="w100per"/>
-		      					<form:errors path="fileUrl" />								
-							</td>
-						</tr>
-						<tr style="display:none;">
-							<th>팝업사이즈</th>
-							<td>
-							     가로<form:input path="popupWSize" class="dateInput" maxlength="10" value="100"/>px  세로<form:input path="popupHSize" class="dateInput" maxlength="10" value="100"/>px
-							  <form:errors path="popupWSize" />
-							  <form:errors path="popupHSize" />							
-							</td>
-						</tr>
-						<tr>
-							<th>위치</th>
-							<td class="td_position">
-								<p>왼쪽 <form:input path="popupWlc" class="dateInput" maxlength="10"/>px</p>
-								<p>상단<form:input path="popupHlc" class="dateInput" maxlength="10"/>px</p>
-								  <form:errors path="popupWlc" />
-								  <form:errors path="popupHlc" />
-							</td>
-						</tr>
-						<tr>
-							<th>내용</th>
-							<td>
-								<form:textarea path="nttCn" title="${title} ${inputTxt}" cols="300" rows="20" /> 
-								<ckeditor:replace replace="nttCn" basePath="${pageContext.request.contextPath}/html/egovframework/com/cmm/utl/ckeditor/" />							
-							</td>
-						</tr>
-						<tr>
-							<th>게시 상태</th>
-							<td>
-								<div class="radio_wrap">
-									<span><input type="radio" name="ntceAt" id="Y2" value="Y" <c:if test="${popupManageVO.ntceAt eq 'Y'}">checked</c:if>><label for="Y2">예</label></span>
-									<span><input type="radio" name="ntceAt" id="N2" value="N" <c:if test="${popupManageVO.ntceAt eq 'N'}">checked</c:if>><label for="N2">아니오</label></span>
-								</div>							
-							</td>
-						</tr>	
-						<tr>
-							<th>그만보기 설정 여부</th>
-							<td>
-								<div class="radio_wrap">
-									<span><input type="radio" name="stopVewAt" id="Y3" value="Y" <c:if test="${popupManageVO.stopVewAt eq 'Y'}">checked</c:if>><label for="Y3">예</label></span>
-									<span><input type="radio" name="stopVewAt" id="N3" value="N"<c:if test="${popupManageVO.stopVewAt eq 'N'}">checked</c:if>><label for="N3">아니오</label></span>
-								</div>								
-		      				</td> 
-						</tr>																													
-					</tbody>
-				</table>
-			</div>
-			<!-- //list_상세 -->
-
-			<!-- btn_wrap -->
-			<div class="btn_wrap btn_layout01">
-				<div class="area_left">
-					<button class="btnType04 btn btn_text btn_46 red_border" onclick="fn_egov_delete_PopupManage(); return false;">삭 제</button>
-				</div>
-				<div class="area_right">
-					
-					<button class="btnType06 btn btn_text btn_46 blue_fill" onclick="fn_egov_save_PopupManage(); return false;">저 장</button>
-					<button class="btnType04 btn btn_text btn_46 gray_fill" onclick="fnList(); return false;">목 록</button>
-				</div>
-			</div>
-			<!-- //btn_wrap -->
+		<div class="right">
+			
+			<button class="btn fill primary xlarge" onclick="fn_egov_save_PopupManage(); return false;">저 장</button>
+			<button class="btn fill gray xlarge" onclick="fnList(); return false;">목 록</button>
 		</div>
 	</div>
-</div>
-<!-- //cont -->
+	<!-- //btn_wrap -->
+	
+	
+					
 </form:form>
 <form name="searchForm" id="searchForm" method="get" action="<c:url value='/uss/ion/pwm/listPopup.do'/>" ></form>
 </body>
src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp
--- src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp
+++ src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp
@@ -250,10 +250,10 @@
 	    .pop-conts{background:#fff;min-height:250px;font-size:1.4rem;justify-content:center;align-items:center;}
 	    .pop-conts a{width:100%;padding:20px;word-break:break-word;}
 	    .btn-r{display:flex;height:45px;padding:0 15px;justify-content:space-between;align-items:center;}
-	    .today_close{display:flex;font-size:1.5rem;color:#222;gap:6px;}
+	    .today_close{display:flex;font-size:16px;color:#222;gap:8px;align-items:center;}
 	    .today_close [type="checkbox"]{width:16px;height:16px;}
-	    .btn-layerClose{width:16px;height:16px;margin:2px 0 0 0;} 
-	    .icon.popup_close{width:16px;height:16px;background:url(/kofair_case_seed/usr/images/component/icon_popup_close.png) no-repeat center center;background-size:100% auto;}
+	    .btn-layerClose{display:flex;width:30px;height:30px;margin:2px 0 0 0;justify-content:center;align-items:center;} 
+	    .icon.popup_close{width:16px;height:16px;background:url(/publish/adm/images/component/icon_x.png) no-repeat center center;background-size:100% auto;}
 	    @media screen and (max-width: 1199px){
 	    	.popup{width:95%;min-width:auto;}
 	    	.pop-conts{min-height:auto;}
src/main/webapp/publish/adm/css/calendar.css
--- src/main/webapp/publish/adm/css/calendar.css
+++ src/main/webapp/publish/adm/css/calendar.css
@@ -17,4 +17,17 @@
 .wrap .duet-date__day.is-today::before{display:none;}
 
 .duet-date__row td:first-child button{color:var(--red-color);}
-.duet-date__row td:last-child button{color:var(--primary-color);}
(No newline at end of file)
+.duet-date__row td:last-child button{color:var(--primary-color);}
+
+.calendar_view{padding:10px 20px 20px;}
+.calendar_view .calendar_util{display:flex;margin:0 0 10px 0;justify-content:center;align-items:center;gap:8px;}
+.calendar_view .calendar_util button{width:34px;}
+.calendar_view .calendar_util button:hover{box-shadow:none;}
+
+.calendar_table thead tr th{height:40px;background:#f2f4f6;}
+.calendar_table thead tr th:first-child{border-radius:8px 0 0 8px;}
+.calendar_table thead tr th:last-child{border-radius:0 8px 8px 0;}
+.calendar_table th,.calendar_table td{width:50px;height:50px;text-align:center;transition:background 0.3s;}
+.calendar_table td:hover{background:#f2f4f6;border-radius:8px;}
+
+button.btn.medium.btn_submit_calendar{padding:0 40px;}
(No newline at end of file)
src/main/webapp/publish/adm/css/icon.css
--- src/main/webapp/publish/adm/css/icon.css
+++ src/main/webapp/publish/adm/css/icon.css
@@ -23,3 +23,9 @@
 .icon.lock{width:20px;height:20px;background:url(../images/component/icon_lock.png) no-repeat center center;}
 
 .icon.comment{width:20px;height:20px;background:url(../images/component/icon_comment.png) no-repeat center center;}
+
+.icon.arrow{width:36px;height:36px;}
+.icon.arrow.first{background:url(../images/component/icon_double_arrow_left_page.png) no-repeat center center;}
+.icon.arrow.prev{background:url(../images/component/icon_arrow_left_page.png) no-repeat center center;}
+.icon.arrow.next{background:url(../images/component/icon_arrow_right_page.png) no-repeat center center;}
+.icon.arrow.last{background:url(../images/component/icon_double_arrow_right_page.png) no-repeat center center;}
src/main/webapp/publish/adm/css/style.css
--- src/main/webapp/publish/adm/css/style.css
+++ src/main/webapp/publish/adm/css/style.css
@@ -51,7 +51,9 @@
 .input_desc.blue{color:var(--primary-color);}
 
 .calendar_wrap{display:flex;align-items:center;gap:8px;}
-.calendar{width:140px;background:#fff url(../images/component/icon_calendar.png) no-repeat calc(100% - 8px) center;}
+.calendar{width:140px;background:#fff/*  url(../images/component/icon_calendar.png) no-repeat calc(100% - 8px) center */;}
+i.calendar{width:34px;height:20px;background:url(../images/component/icon_calendar.png) no-repeat calc(100% - 8px) center;}
+.calendar_wrap .btn_calendar{margin:0 0 0 -43px;}
 
 .time_layer_wrap{position:relative;}
 .time_input{width:110px;background:#fff url(../images/component/icon_clock.png) no-repeat calc(100% - 8px) center;}
Add a comment
List