2024/11/26 관리자 메인대시보드 최근접수사건 NEW 추가

This commit is contained in:
subsub 2024-11-26 18:09:27 +09:00
parent bb8039712d
commit 53724f7182
8 changed files with 4 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 784 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

View File

@ -39,14 +39,14 @@
</div>
<ul class="box_list">
<li>
<a href="#">
<a href="#" class="new">
<span class="list_title">· 하도2024-0005</span>
<span class="list_writer">상호명</span>
<span class="list_date">2024.11.11</span>
</a>
</li>
<li>
<a href="#">
<a href="#" class="new">
<span class="list_title">· 하도2024-0005</span>
<span class="list_writer">상호명</span>
<span class="list_date">2024.11.11</span>

View File

@ -15,7 +15,8 @@
.main .box_list a{display:flex;font-size:16px;font-weight:300;color:#666;gap:3px;transition:all 0.3s;}
.main .box_list a:hover{text-decoration:underline;text-underline-offset:3px;transition:all 0.3s;}
.main .box_list span{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
.main .box_list .list_title{width:calc(100% - 160px);font-weight:400;color:#222;}
.main .box_list .list_title{position:relative;width:calc(100% - 160px);font-weight:400;color:#222;}
.main .box_list .new .list_title::after{position:absolute;content:"N";display:inline-flex;width:16px;height:16px;font-size:10px;font-weight:bold;color:#fff;background:#e40000;border-radius:5px;justify-content:center;align-items:center;margin:4px 0 0 5px;}
.main .box_list .list_writer{width:60px;}
.main .box_list .list_date{width:100px;text-align:right;}