회로 및 가대설정 팝업 자동 설정 영역 수정

This commit is contained in:
김창수 2025-01-09 18:12:38 +09:00
parent 33439761ff
commit b35cede670
3 changed files with 47 additions and 4 deletions

View File

@ -16,8 +16,8 @@ export default function CircuitStandTab01({setTabNum}){
</div>
<div className="module-table-box mb10">
<div className="module-table-inner">
<div className="circuit-check-inner">
<div className="d-check-box pop mb15 sel">
<div className="circuit-check-inner overflow">
<div className="d-check-box pop sel">
<input type="checkbox" id="ch01" />
<label htmlFor="ch01">屋内PCSHQJP-KA-5シリーズ</label>
</div>
@ -25,6 +25,14 @@ export default function CircuitStandTab01({setTabNum}){
<input type="checkbox" id="ch02" />
<label htmlFor="ch02">屋外マルチPCSHQJP-RA5シリーズ</label>
</div>
<div className="d-check-box pop sel">
<input type="checkbox" id="ch03" />
<label htmlFor="ch03">屋外マルチPCSHQJP-RA5シリーズ</label>
</div>
<div className="d-check-box pop sel">
<input type="checkbox" id="ch04" />
<label htmlFor="ch04">屋外マルチPCSHQJP-RA5シリーズ</label>
</div>
</div>
</div>
</div>
@ -68,6 +76,14 @@ export default function CircuitStandTab01({setTabNum}){
<td className="al-r">2</td>
<td className="al-c">-</td>
</tr>
<tr>
<td>屋内PCS&#40;HQJP</td>
<td>HQJP-KA50-5</td>
<td className="al-r">1.00</td>
<td className="al-r">2</td>
<td className="al-r">2</td>
<td className="al-c">-</td>
</tr>
</tbody>
</table>
</div>

View File

@ -233,6 +233,7 @@ export default function PublishPage() {
<ul>
<li>2025-01-09</li>
<li>*회로 가대설정 팝업 승압 설정 영역 수정</li>
<li>*회로 가대설정 팝업 자동 설정 영역 수정</li>
</ul>
</td>
<td className="t-center">2024-10-28</td>

View File

@ -1519,24 +1519,50 @@ $alert-color: #101010;
// 회로 가대설정
.circuit-check-inner{
padding: 5px 0;
&.overflow{
overflow-y: auto;
max-height: 100px;
&::-webkit-scrollbar {
width: 4px;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background-color: #D9D9D9;
}
&::-webkit-scrollbar-track {
background-color: transparent;
}
}
.d-check-box{
margin-bottom: 15px;
&:last-child{
margin-bottom: 0;
}
}
}
.x-scroll-table{
overflow-x: auto;
overflow: auto;
padding-bottom: 5px;
background-color: transparent;
max-height: 170px;
.roof-module-table{
min-width: 1200px;
}
&::-webkit-scrollbar {
width: 4px;
height: 4px;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background-color: #D9D9D9;
background-color: #b4b4b4;
}
&::-webkit-scrollbar-track {
background-color: transparent;
}
&::-webkit-scrollbar-corner{
background-color: transparent;
}
}
.circuit-right-wrap{