diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/cndtnEduPrcsMngList.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/cndtnEduPrcsMngList.jsp index 12ca31a9..c9d8a13c 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/cndtnEduPrcsMngList.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/cndtnEduPrcsMngList.jsp @@ -150,6 +150,12 @@
+ +
diff --git a/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMngList.jsp b/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMngList.jsp index b01cba08..3d281687 100644 --- a/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMngList.jsp +++ b/src/main/webapp/WEB-INF/jsp/oprtn/cndtnSspnIdtmt/trgtMngList.jsp @@ -231,6 +231,11 @@
+ +
    +
  • +
  • +
diff --git a/src/main/webapp/visitEdu/adm/publish/css/content.css b/src/main/webapp/visitEdu/adm/publish/css/content.css index 7a38940d..d0d3c1cb 100644 --- a/src/main/webapp/visitEdu/adm/publish/css/content.css +++ b/src/main/webapp/visitEdu/adm/publish/css/content.css @@ -443,4 +443,15 @@ input[type="text"].input_time {width: 50px;} .sch_wrap .sch_day{width: 4%; min-width: 70px; padding-right: 20px; box-sizing: border-box;} .sch_wrap p.day_sun{color: #e40000;} -.sch_wrap p.day_sat{color: #0b5bff;} \ No newline at end of file +.sch_wrap p.day_sat{color: #0b5bff;} + +/*tab 추가*/ +.tab_wrap{background-color: #fff;width: 100%;border-radius: 5px; display: flex;text-align: center;margin-bottom: 20px;border:1px solid #dbdcdd;} +.tab_wrap li{flex-basis: calc(100%/2); position: relative;} +.tab_wrap li:after{position:absolute;content: "";width: 1px;height: 27px;background-color: #dbdcdd;right: 0;margin: 13px 0 0 0;} +.tab_wrap li:last-child:after{width: 0;} +.tab_wrap li button{width: 100%;padding: 13px 0;font-size: 18px;position:relative;z-index:1;} +.tab_wrap li.active{background-color: #46484a;} +.tab_wrap li.active:after{content:'';position:absolute;left:-1px;top:-1px;border:1px solid #697e9b;} +.tab_wrap li.active button{color: #fff;border:1px solid #46484a;background-color: #697e9b;} +.tab_wrap li.active button:after{content:'';position:absolute;left:-4px;top:-4px;width:100%;height:100%;border:4px solid #697e9b;border-radius: 5px;} \ No newline at end of file diff --git a/src/main/webapp/visitEdu/adm/publish/script/content.js b/src/main/webapp/visitEdu/adm/publish/script/content.js index 5abf8862..4cbdaa7a 100644 --- a/src/main/webapp/visitEdu/adm/publish/script/content.js +++ b/src/main/webapp/visitEdu/adm/publish/script/content.js @@ -629,3 +629,12 @@ $(function(){ } } } + + //tab 버튼 + function TabWrap(obj){ + var $tab = $(obj).closest("li"); + $tab.addClass("active"); + $tab.find("button").attr("title", "선택됨"); + $tab.siblings("li.tab").removeClass("active"); + $tab.siblings("li.tab").find("button").removeAttr("title"); + }