This commit is contained in:
2024-02-27 13:35:20 +07:00
36 changed files with 2385 additions and 93 deletions

View File

@@ -6,11 +6,8 @@
}
button,
input,
select {
outline: none !important;
color: #000;
border-radius: 0;
cursor: pointer;
}
button,
@@ -23,10 +20,12 @@ input,
optgroup,
select,
textarea {
outline: none;
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
color: #000;
border-radius: 0;
}
@@ -369,6 +368,7 @@ a {
}
.admin-menu .item:nth-child(n+10) .sub-menu {
top: unset;
bottom: -45px;
}
.admin-menu .sub-menu {
padding: 10px 22px 10px 15px;
@@ -746,6 +746,15 @@ input[type=radio]:focus:before {
}
/* Bán hàng */
.page-input {
width: 100%;
height: 36px;
padding: 0 10px;
border-radius: 4px;
border: 1px solid #d8d8d8;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.order-page .order-page-title a {
margin: 0 2px 0 0;
border-radius: 4px 4px 0px 0px;
@@ -767,13 +776,11 @@ input[type=radio]:focus:before {
.order-page .order-page-table td {
padding: 14px 8px;
text-align: center;
vertical-align: middle;
}
.order-page .order-page-table td:nth-child(4), .order-page .order-page-table td:nth-child(10) {
text-align: left;
}
.order-page .order-page-table td * {
display: inline-block;
}
.order-page-table {
line-height: 20px;
@@ -781,9 +788,6 @@ input[type=radio]:focus:before {
.order-page-table a {
color: #0041e8;
}
.order-page-table a:hover {
text-decoration: underline;
}
.order-page-table table {
width: 100%;
}
@@ -796,7 +800,10 @@ input[type=radio]:focus:before {
.order-page-table thead td {
padding: 8px;
}
.order-page-table tr:hover {
.order-page-table tbody td {
vertical-align: top;
}
.order-page-table tbody tr:hover {
background: #f5f7ff;
}
.order-page-table td {
@@ -846,6 +853,12 @@ input[type=radio]:focus:before {
color: #9e9e9e !important;
}
.td-border-0 td {
border: 0 !important;
padding: 3px 0;
width: auto;
}
.paging {
margin: 30px 0;
display: flex;
@@ -991,4 +1004,16 @@ input[type=radio]:focus:before {
.input-file .btn-input-file:hover {
background: #0041e8;
color: #fff;
}
.modal .order-page-table td {
vertical-align: middle;
}
.modal .brand-letters a {
width: 11.1111111111%;
text-transform: capitalize;
color: #0041e8;
}
.modal .brand-letters a:hover {
text-decoration: underline;
}/*# sourceMappingURL=pc_style.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -4,11 +4,8 @@
box-sizing: border-box;
}
button,
input,
select {
outline: none !important;
color: #000;
border-radius: 0;
cursor: pointer;
}
button,
input {
@@ -19,10 +16,12 @@ input,
optgroup,
select,
textarea {
outline: none;
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
color: #000;
border-radius: 0;
}
input::-webkit-outer-spin-button,
@@ -356,6 +355,7 @@ a {
&:nth-child(n + 10) {
.sub-menu {
top: unset;
bottom: -45px;
}
}
}
@@ -757,6 +757,15 @@ input[type="radio"] {
}
/* Bán hàng */
.page-input {
width: 100%;
height: 36px;
padding: 0 10px;
border-radius: 4px;
border: 1px solid #d8d8d8;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.order-page {
.order-page-title {
a {
@@ -784,13 +793,11 @@ input[type="radio"] {
td {
padding: 14px 8px;
text-align: center;
vertical-align: middle;
&:nth-child(4),
&:nth-child(10) {
text-align: left;
}
* {
display: inline-block;
}
}
}
}
@@ -798,9 +805,6 @@ input[type="radio"] {
line-height: 20px;
a {
color: #0041e8;
&:hover {
text-decoration: underline;
}
}
table {
width: 100%;
@@ -814,9 +818,14 @@ input[type="radio"] {
padding: 8px;
}
}
tr {
&:hover {
background: #f5f7ff;
tbody {
td {
vertical-align: top;
}
tr {
&:hover {
background: #f5f7ff;
}
}
}
td {
@@ -866,6 +875,13 @@ input[type="radio"] {
right: 10px !important;
color: #9e9e9e !important;
}
.td-border-0 {
td {
border: 0 !important;
padding: 3px 0;
width: auto;
}
}
.paging {
margin: 30px 0;
display: flex;
@@ -1024,3 +1040,20 @@ input[type="radio"] {
}
}
}
.modal {
.order-page-table {
td {
vertical-align: middle;
}
}
.brand-letters {
a {
width: calc(100% / 9);
text-transform: capitalize;
color: #0041e8;
&:hover {
text-decoration: underline;
}
}
}
}