important 그리스 색상추가

This commit is contained in:
김창수 2024-10-11 13:18:10 +09:00
parent 427b546d61
commit b97d883a16
4 changed files with 15 additions and 3 deletions

View File

@ -47,7 +47,7 @@ export default function NewProductPage(){
{/* <FindAddressPop/> */} {/* <FindAddressPop/> */}
{/* 설계의뢰 불러오기 팝업 */} {/* 설계의뢰 불러오기 팝업 */}
<DesignRequestPop/> {/* <DesignRequestPop/> */}
</div> </div>
) )
} }

View File

@ -65,7 +65,9 @@ export default function NewProductTable(){
<div className="title"> <div className="title">
一次販売店名/ID <span className="important">*</span> 一次販売店名/ID <span className="important">*</span>
</div> </div>
<div className="tooltips"></div> <div className="tooltips">
<span>販売代理店または販売代理店IDを1文字以上入力してください</span>
</div>
</div> </div>
</th> </th>
<td> <td>
@ -88,7 +90,9 @@ export default function NewProductTable(){
<div className="title"> <div className="title">
二次販売店名/ID <span className="important">*</span> 二次販売店名/ID <span className="important">*</span>
</div> </div>
<div className="tooltips"></div> <div className="tooltips">
<span>販売代理店または販売代理店IDを1文字以上入力してください</span>
</div>
</div> </div>
</th> </th>
<td> <td>

View File

@ -36,6 +36,9 @@
&:nth-child(2n){ &:nth-child(2n){
background-color: #F7F9FA; background-color: #F7F9FA;
} }
&.important_row{
background-color: #e7e7e7;
}
} }
.ag-cell{ .ag-cell{
font-size: 13px; font-size: 13px;

View File

@ -105,6 +105,7 @@ table{
} }
.tooltips{ .tooltips{
position: relative;
display: block; display: block;
width: 14px; width: 14px;
height: 14px; height: 14px;
@ -112,6 +113,10 @@ table{
background: url(../../public/static/images/sub/tooltips.svg)no-repeat center; background: url(../../public/static/images/sub/tooltips.svg)no-repeat center;
background-size: cover; background-size: cover;
cursor: pointer; cursor: pointer;
span{
position: absolute;
white-space: nowrap;
}
} }
} }