update customer

This commit is contained in:
2024-03-05 14:55:28 +07:00
parent 21d3b53747
commit d5bd7d2948
23 changed files with 653 additions and 247 deletions

View File

@@ -1110,7 +1110,10 @@ input[type=radio]:focus:before {
.table-addon th,
.table-spec th,
.spec-info th,
.table-list-competitor th {
.table-list-competitor th,
.table-customer-group th,
.table-review th,
.table-newsletter th {
padding: 7px 5px;
background: #f6f6f6;
border: 1px solid #ececec;
@@ -1120,13 +1123,31 @@ input[type=radio]:focus:before {
.table-addon td,
.table-spec td,
.spec-info td,
.table-list-competitor td {
.table-list-competitor td,
.table-customer-group td,
.table-review td,
.table-newsletter td {
padding: 7px 6px;
border: 1px solid #ececec;
}
.table-addon .name,
.table-spec .name,
.spec-info .name,
.table-list-competitor .name {
.table-list-competitor .name,
.table-customer-group .name,
.table-review .name,
.table-newsletter .name {
color: #0041e8;
}
.input-date {
position: relative;
}
.input-date::before {
position: absolute;
top: 50%;
right: 15px;
transform: translate(0, -50%);
content: "\f133";
font-family: "Font Awesome 6 Free";
}/*# sourceMappingURL=pc_style.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -1160,7 +1160,10 @@ input[type="radio"] {
.table-addon,
.table-spec,
.spec-info,
.table-list-competitor {
.table-list-competitor,
.table-customer-group,
.table-review,
.table-newsletter {
th {
padding: 7px 5px;
background: #f6f6f6;
@@ -1176,3 +1179,15 @@ input[type="radio"] {
color: #0041e8;
}
}
.input-date {
position: relative;
&::before {
position: absolute;
top: 50%;
right: 15px;
transform: translate(0, -50%);
content: "\f133";
font-family: "Font Awesome 6 Free";
}
}