Merge pull request #8039 from netchampfaris/pos-ui-fix
[pos] ui fix for small screens frappe/erpnext#8029
This commit is contained in:
commit
9ba1be60b7
@ -144,6 +144,19 @@ body[data-route="pos"] .numeric-keypad {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
margin-left: -4px;
|
margin-left: -4px;
|
||||||
}
|
}
|
||||||
|
@media (max-width: 1199px) {
|
||||||
|
body[data-route="pos"] .numeric-keypad {
|
||||||
|
height: 45px;
|
||||||
|
width: 45px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
body[data-route="pos"] .numeric-keypad {
|
||||||
|
height: 40px;
|
||||||
|
width: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
body[data-route="pos"] .numeric_keypad {
|
body[data-route="pos"] .numeric_keypad {
|
||||||
margin-left: -15px;
|
margin-left: -15px;
|
||||||
}
|
}
|
||||||
@ -307,9 +320,17 @@ body[data-route="pos"] .item-list-area .pos-bill-header {
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
}
|
}
|
||||||
|
body[data-route="pos"] .pos-selected-item-action .pos-list-row:first-child {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
body[data-route="pos"] .pos-selected-item-action > .pos-list-row {
|
body[data-route="pos"] .pos-selected-item-action > .pos-list-row {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
@media (max-width: 1199px) {
|
||||||
|
body[data-route="pos"] .pos-selected-item-action > .pos-list-row {
|
||||||
|
padding: 5px 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
body[data-route="pos"] .edit-customer-btn {
|
body[data-route="pos"] .edit-customer-btn {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 57px;
|
right: 57px;
|
||||||
|
|||||||
@ -176,6 +176,17 @@ body[data-route="pos"] {
|
|||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
margin-left:-4px;
|
margin-left:-4px;
|
||||||
|
|
||||||
|
@media (max-width: @screen-md) {
|
||||||
|
height: 45px;
|
||||||
|
width: 45px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: @screen-sm) {
|
||||||
|
height: 40px;
|
||||||
|
width: 40px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.numeric_keypad {
|
.numeric_keypad {
|
||||||
@ -371,8 +382,18 @@ body[data-route="pos"] {
|
|||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pos-selected-item-action > .pos-list-row {
|
.pos-selected-item-action {
|
||||||
border: none;
|
.pos-list-row:first-child {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&> .pos-list-row {
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
@media (max-width: @screen-md) {
|
||||||
|
padding: 5px 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-customer-btn {
|
.edit-customer-btn {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user