검색 모달 기능 추가

This commit is contained in:
Suh
2024-01-11 16:32:40 +09:00
parent 6f2cd14220
commit 76e6d3c949
15 changed files with 462 additions and 15 deletions

View File

@@ -63,4 +63,8 @@
.col-centered{
margin: 0 auto;
float: none;
}
input:read-only{
background-color: #ececec;
}

View File

@@ -4,9 +4,9 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="../../../webapp/WEB-INF/views/authority/base.js"></script>
<script src="../../../webapp/WEB-INF/views/account/base.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../../../webapp/WEB-INF/views/authority/base.css">
<link rel="stylesheet" href="../../../webapp/WEB-INF/views/account/base.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>

View File

@@ -157,6 +157,7 @@
//검색 팝업 모달 관련
const searchModalBootStrap = new bootstrap.Modal("#search_modal");
$("#search_modal_show_button").on("click", function(){
searchModalBootStrap.show();
});