update form product

This commit is contained in:
2024-05-06 15:55:58 +07:00
parent d9094447c8
commit d71cbe3065
18 changed files with 1660 additions and 620 deletions

View File

@@ -754,6 +754,11 @@ input[type="radio"] {
height: 16px;
background-position: -259px -88px;
}
&.icon-copy {
width: 15px;
height: 15px;
background-position: -330px -88px;
}
}
.admin-header-container {
@@ -1269,7 +1274,7 @@ input[type="radio"] {
display: block;
}
.style-checkbox .checkmark:after {
left: 7px;
left: 6px;
top: 1px;
width: 6px;
height: 13px;
@@ -1279,3 +1284,49 @@ input[type="radio"] {
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.box-note {
position: relative;
i {
cursor: pointer;
}
.content {
position: absolute;
left: 30px;
top: 6px;
width: 300px;
display: none;
font-size: 12px;
background: #e4b200;
color: #fff;
padding: 10px;
box-shadow: 0px 1px 1px 0px #00000026;
border-radius: 6px;
z-index: 9;
&::before {
position: absolute;
content: "";
left: -14px;
top: 0;
width: 20px;
height: 15px;
clip-path: polygon(0 0, 100% 100%, 100% 0);
background: #e4b200;
border-radius: 5px 0 0 0;
}
}
&:hover {
.content {
display: block;
}
}
}
.list-category {
.style-checkbox .checkmark:after {
left: 6px;
}
.style-checkbox {
color: #919699;
}
}