From 17a3390de00e0a5b86d40e39cd72b33790f893eb Mon Sep 17 00:00:00 2001 From: subsub Date: Mon, 27 Oct 2025 17:22:05 +0900 Subject: [PATCH] =?UTF-8?q?=ED=91=B8=ED=84=B0=20=EC=83=88=EC=B0=BD=20?= =?UTF-8?q?=EC=95=84=EC=9D=B4=EC=BD=98=20=EC=B6=94=EA=B0=80,=20=ED=8C=8C?= =?UTF-8?q?=ED=8A=B8=EB=84=88=20=EC=82=AC=EC=9D=B4=ED=8A=B8=20=EB=A7=81?= =?UTF-8?q?=ED=81=AC=20=EC=B6=94=EA=B0=80,=20=EC=88=98=EB=A3=8C=EC=A6=9D?= =?UTF-8?q?=20=ED=8C=9D=EC=97=85=20=EC=84=B8=EB=A1=9C=20=EC=82=AC=EC=9D=B4?= =?UTF-8?q?=EC=A6=88=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WEB-INF/jsp/web/com/webCommonFooter.jsp | 8 +++--- .../webapp/WEB-INF/jsp/web/main/mainPage.jsp | 26 ++++++++++-------- .../exprnClsrmInfo/popup/certPopList.jsp | 2 +- .../jsp/web/ve/aplct/sspnIdtmt/main.jsp | 2 +- src/main/webapp/publish/css/estimate.css | 6 ++-- .../visitEdu/usr/publish/css/common.css | 6 ++++ .../visitEdu/usr/publish/css/content.css | 2 +- .../webapp/visitEdu/usr/publish/css/popup.css | 14 +++++++++- .../publish/images/common/icon_newwindow.png | Bin 0 -> 360 bytes .../images/common/icon_newwindow_blue.png | Bin 0 -> 360 bytes .../images/common/icon_newwindow_blue_m.png | Bin 0 -> 847 bytes .../images/common/icon_newwindow_m.png | Bin 0 -> 830 bytes 12 files changed, 44 insertions(+), 22 deletions(-) create mode 100644 src/main/webapp/visitEdu/usr/publish/images/common/icon_newwindow.png create mode 100644 src/main/webapp/visitEdu/usr/publish/images/common/icon_newwindow_blue.png create mode 100644 src/main/webapp/visitEdu/usr/publish/images/common/icon_newwindow_blue_m.png create mode 100644 src/main/webapp/visitEdu/usr/publish/images/common/icon_newwindow_m.png diff --git a/src/main/webapp/WEB-INF/jsp/web/com/webCommonFooter.jsp b/src/main/webapp/WEB-INF/jsp/web/com/webCommonFooter.jsp index 08f821e8..60ce67ce 100644 --- a/src/main/webapp/WEB-INF/jsp/web/com/webCommonFooter.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/com/webCommonFooter.jsp @@ -45,10 +45,10 @@ function footerSiteLinkPageGo (){
  • diff --git a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp index 95e18047..1cb4b2ac 100644 --- a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp @@ -94,7 +94,7 @@ function fn_egov_inqire_data(bbsId, nttId) { .layer_popup_wrap{position: fixed;z-index:999;left:50%;top:50%;transform:translate(-50%,-52%);} .layer_popup_wrap .popup_inner {position: relative;display: flex;width: 100%;height: 100%;vertical-align: middle;justify-content: center;align-items: center;gap:30px;} .pop-layer{min-width:300px;max-width:800px;max-height:800px; box-shadow: 0 0 5px rgba(0,0,0,0.3);} - .pop-layer img{width:100% !important;} + .pop-layer img{display:block;width:auto !important;} .pop-layer .pop-container {padding: 0px 0px;} .pop-layer p.ctxt {color: #666;line-height: 25px;} .pop-layer .btn-r {display: flex; width: 100%; padding-top: 10px;border-top: 1px solid #DDD;text-align: right; justify-content: space-between; padding:10px 15px; box-sizing: border-box; align-items: center;} @@ -102,6 +102,10 @@ function fn_egov_inqire_data(bbsId, nttId) { #tdCheck+label{overflow: hidden;border: 0;width: 1px;height: 1px;clip: rect(1px, 1px, 1px, 1px);clip-path: inset(50%);} .btn-layerClose{width: 16px; height: 16px; background-image: url(${pageContext.request.contextPath}/kccadrPb/usr/image/common/btn_close.png); background-repeat: no-repeat; background-size: 100%;} .today_close{font-size:1.6rem;} + + @media (max-width: 479px){ + .pop-layer img{width:100% !important;height:auto !important;;} + }
    -