회로 및 가대설정 팝업 자동 설정 영역 수정
This commit is contained in:
parent
33439761ff
commit
b35cede670
@ -16,8 +16,8 @@ export default function CircuitStandTab01({setTabNum}){
|
|||||||
</div>
|
</div>
|
||||||
<div className="module-table-box mb10">
|
<div className="module-table-box mb10">
|
||||||
<div className="module-table-inner">
|
<div className="module-table-inner">
|
||||||
<div className="circuit-check-inner">
|
<div className="circuit-check-inner overflow">
|
||||||
<div className="d-check-box pop mb15 sel">
|
<div className="d-check-box pop sel">
|
||||||
<input type="checkbox" id="ch01" />
|
<input type="checkbox" id="ch01" />
|
||||||
<label htmlFor="ch01">屋内PCS(HQJP-KA-5シリーズ)</label>
|
<label htmlFor="ch01">屋内PCS(HQJP-KA-5シリーズ)</label>
|
||||||
</div>
|
</div>
|
||||||
@ -25,6 +25,14 @@ export default function CircuitStandTab01({setTabNum}){
|
|||||||
<input type="checkbox" id="ch02" />
|
<input type="checkbox" id="ch02" />
|
||||||
<label htmlFor="ch02">屋外マルチPCS(HQJP-RA5シリーズ)</label>
|
<label htmlFor="ch02">屋外マルチPCS(HQJP-RA5シリーズ)</label>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="d-check-box pop sel">
|
||||||
|
<input type="checkbox" id="ch03" />
|
||||||
|
<label htmlFor="ch03">屋外マルチPCS(HQJP-RA5シリーズ)</label>
|
||||||
|
</div>
|
||||||
|
<div className="d-check-box pop sel">
|
||||||
|
<input type="checkbox" id="ch04" />
|
||||||
|
<label htmlFor="ch04">屋外マルチPCS(HQJP-RA5シリーズ)</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -68,6 +76,14 @@ export default function CircuitStandTab01({setTabNum}){
|
|||||||
<td className="al-r">2</td>
|
<td className="al-r">2</td>
|
||||||
<td className="al-c">-</td>
|
<td className="al-c">-</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>屋内PCS(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>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -233,6 +233,7 @@ export default function PublishPage() {
|
|||||||
<ul>
|
<ul>
|
||||||
<li>2025-01-09</li>
|
<li>2025-01-09</li>
|
||||||
<li>*회로 및 가대설정 팝업 승압 설정 영역 수정</li>
|
<li>*회로 및 가대설정 팝업 승압 설정 영역 수정</li>
|
||||||
|
<li>*회로 및 가대설정 팝업 자동 설정 영역 수정</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
<td className="t-center">2024-10-28</td>
|
<td className="t-center">2024-10-28</td>
|
||||||
|
|||||||
@ -1519,24 +1519,50 @@ $alert-color: #101010;
|
|||||||
// 회로 및 가대설정
|
// 회로 및 가대설정
|
||||||
.circuit-check-inner{
|
.circuit-check-inner{
|
||||||
padding: 5px 0;
|
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{
|
.x-scroll-table{
|
||||||
overflow-x: auto;
|
overflow: auto;
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
|
background-color: transparent;
|
||||||
|
max-height: 170px;
|
||||||
.roof-module-table{
|
.roof-module-table{
|
||||||
min-width: 1200px;
|
min-width: 1200px;
|
||||||
}
|
}
|
||||||
&::-webkit-scrollbar {
|
&::-webkit-scrollbar {
|
||||||
|
width: 4px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
&::-webkit-scrollbar-thumb {
|
&::-webkit-scrollbar-thumb {
|
||||||
background-color: #D9D9D9;
|
background-color: #b4b4b4;
|
||||||
}
|
}
|
||||||
&::-webkit-scrollbar-track {
|
&::-webkit-scrollbar-track {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
&::-webkit-scrollbar-corner{
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.circuit-right-wrap{
|
.circuit-right-wrap{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user