css 수정.
parent
144e696cc0
commit
f299c7209a
|
|
@ -12,7 +12,8 @@
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<link rel="stylesheet" type="text/css" href="<c:url value="/css/jquery-ui.min.css"/>">
|
<link rel="stylesheet" type="text/css" href="<c:url value="/css/jquery-ui.min.css"/>">
|
||||||
<link rel="stylesheet" type="text/css" href="<c:url value="/css/bootstrap-5.1.3-dist/css/bootstrap.css"/>">
|
<%--<link rel="stylesheet" type="text/css" href="<c:url value="/css/bootstrap-5.1.3-dist/css/bootstrap.css"/>">--%>
|
||||||
|
<link rel="stylesheet" type="text/css" href="<c:url value="/css/bootstrap-5.1.3-dist/css/customBootstrap.css"/>">
|
||||||
<link rel="stylesheet" type="text/css" href="<c:url value="/images/bootstrap-icons-1.8.0/bootstrap-icons.css"/>">
|
<link rel="stylesheet" type="text/css" href="<c:url value="/images/bootstrap-icons-1.8.0/bootstrap-icons.css"/>">
|
||||||
<link href="<c:out value="/css/normalize.css" />" rel="stylesheet">
|
<link href="<c:out value="/css/normalize.css" />" rel="stylesheet">
|
||||||
<link href="<c:out value="/css/style.css" />" rel="stylesheet">
|
<link href="<c:out value="/css/style.css" />" rel="stylesheet">
|
||||||
|
|
@ -23,7 +24,7 @@
|
||||||
<script src="<c:url value='/js/jquery-ui.min.js' />"></script>
|
<script src="<c:url value='/js/jquery-ui.min.js' />"></script>
|
||||||
<script src="<c:url value="/js/bootstrap-5.1.3-dist/js/bootstrap.bundle.min.js"/>"></script>
|
<script src="<c:url value="/js/bootstrap-5.1.3-dist/js/bootstrap.bundle.min.js"/>"></script>
|
||||||
</head>
|
</head>
|
||||||
<body class="htmlBody">
|
<body>
|
||||||
<div id="wrap">
|
<div id="wrap">
|
||||||
<tiles:insertAttribute name="header"/>
|
<tiles:insertAttribute name="header"/>
|
||||||
<tiles:insertAttribute name="left"/>
|
<tiles:insertAttribute name="left"/>
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -739,13 +739,25 @@ input[type=checkbox]:disabled:checked {
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-warning {
|
.status-warning {
|
||||||
background-color: #eea236;
|
background-color: var(--bs-warning);
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-success {
|
.status-success {
|
||||||
background-color: #5cb85c;
|
background-color: var(--bs-success);
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-danger {
|
.status-danger {
|
||||||
background-color: #bb2d3b;
|
background-color: var(--bs-danger);
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-pills .nav-link.active,
|
||||||
|
.nav-pills .show > .nav-link {
|
||||||
|
background-color: #003399;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-item.active .page-link {
|
||||||
|
background-color: #003399;
|
||||||
|
border-color: #003399;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue