탑버튼 수정

This commit is contained in:
com02 2021-11-18 13:09:49 +09:00
parent cead8e051d
commit 1bac68f76a
3 changed files with 4 additions and 3 deletions

View File

@ -158,7 +158,7 @@ $( document ).ready(function() {
else li.find(".question").append($('<span />').attr("class", "type").html("[소장자료관]")); else li.find(".question").append($('<span />').attr("class", "type").html("[소장자료관]"));
var unread = ""; var unread = "";
if(obj.readYn != "Y") unread = " <unread>(미확인)</unread>"; if(obj.readYn != "Y") unread = " <unread>미확인</unread>";
li.find(".question").append($('<span />').html(obj.title + unread)); li.find(".question").append($('<span />').html(obj.title + unread));
li.find(".question").append($('<span />').attr('class', 'date').html(obj.regDd)); li.find(".question").append($('<span />').attr('class', 'date').html(obj.regDd));
li.append($('<div></div>').attr('class', 'answer').attr('style', 'display: none;')); li.append($('<div></div>').attr('class', 'answer').attr('style', 'display: none;'));

View File

@ -4,7 +4,7 @@
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %> <%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<button type="button" id="btn-go-top" class="btn-go-top"><span><img src="/images/icon/icon-arr-top.png" alt="상단 화살표"></span><p>TOP</p></button> <button type="button" id="btn-go-top" class="btn-go-top"><span><img src="/images/icon/icon-arr-top.png" alt="상단 화살표"></span><span>TOP</span></button>
<div class="inner"> <div class="inner">
<div class="row-top"> <div class="row-top">
<div class="footer-logo"> <div class="footer-logo">

View File

@ -341,7 +341,7 @@ footer .family_site .site_depth li a{display:block;line-height:26px;padding:0 0
/* button scroll-top */ /* button scroll-top */
.btn-go-top {width: 50px;height: 50px;border-radius: 100%;background-color: #354f68;position: absolute;right: 25px;top: -65px;z-index: 20; .btn-go-top {width: 50px;height: 50px;border-radius: 100%;background-color: #354f68;position: absolute;right: 25px;top: -65px;z-index: 20;
transition: all .2s ease;} transition: all .2s ease;}
.btn-go-top p {color:#fff;} .btn-go-top span {color:#fff;display:block;}
.btn-go-top:hover {} .btn-go-top:hover {}
.btn-go-top.go-top-fix {position: fixed;top: inherit;bottom: 15px;} .btn-go-top.go-top-fix {position: fixed;top: inherit;bottom: 15px;}
.btn-go-top.go-top-hide {opacity: 0;z-index: -1;} .btn-go-top.go-top-hide {opacity: 0;z-index: -1;}
@ -1262,6 +1262,7 @@ transform: rotate(45deg);}
.noti-data .list-accordion .question {background: transparent url(/images/btn/btn-arrow-open.png) no-repeat 25px center;display: table;width: 100%;font-size: 16px;color: #666;border-bottom: 1px solid #ddd;} .noti-data .list-accordion .question {background: transparent url(/images/btn/btn-arrow-open.png) no-repeat 25px center;display: table;width: 100%;font-size: 16px;color: #666;border-bottom: 1px solid #ddd;}
.noti-data .list-accordion .question span {display: table-cell;padding-left: 25px;height: 58px;vertical-align: middle;text-align: left;} .noti-data .list-accordion .question span {display: table-cell;padding-left: 25px;height: 58px;vertical-align: middle;text-align: left;}
.noti-data .list-accordion .question span:last-child {padding-right: 50px;} .noti-data .list-accordion .question span:last-child {padding-right: 50px;}
.noti-data .list-accordion .question span unread {background:#376795;color:#fff;font-size:11px;padding:3px 5px;border-radius:3px;}
.noti-data .list-accordion .question .type {background:none;width: 210px;box-sizing: border-box;padding-left: 65px;font-weight: 600;color: #000;} .noti-data .list-accordion .question .type {background:none;width: 210px;box-sizing: border-box;padding-left: 65px;font-weight: 600;color: #000;}
.noti-data .list-accordion .question .type::before {background: none;} .noti-data .list-accordion .question .type::before {background: none;}
.noti-data .list-accordion .question.on .type::before {background: none;} .noti-data .list-accordion .question.on .type::before {background: none;}