[Legacy] Locale Mobile Styling Changes

This commit is contained in:
balumahendran 2022-03-08 11:32:41 +05:30 committed by Balu Mahendran
parent b69eeefcd5
commit 74cc24bdb6
2 changed files with 70 additions and 0 deletions

View file

@ -173,4 +173,5 @@
@import '../suitep-base/currency-mobile.scss';
@import '../suitep-base/system-settings-mobile.scss';
@import '../suitep-base/pdf-settings.scss';
@import '../suitep-base/admin-locale-mobile.scss';
//

View file

@ -0,0 +1,69 @@
@media (max-width: 750px) {
.admin-locale {
.moduleTitle {
width: 100%;
}
.edit tr {
th {
border-bottom: 1px solid lightgrey;
}
border-bottom: none;
}
table.view {
margin-bottom: 1em;
tr td {
width: 100%;
padding-left: 1em;
&:first-child {
padding-left: 1em !important;
}
}
h4 {
background: none;
border: none;
margin: 0 0.5em 0 0.5em !important;
}
}
input[type=text],input[type=password],input[type=email],input[type=number]{
width: 97%;
}
select {
min-width: 97%;
}
}
}
@media (min-width:750px) and (max-width: 767px) {
.admin-locale {
.moduleTitle {
width: 100%;
}
.edit tr {
th {
border-bottom: 1px solid lightgrey;
}
border-bottom: none;
}
table.view {
margin-bottom: 1em;
tr td {
width: 100%;
padding-left: 1em;
&:first-child {
padding-left: 1em !important;
}
}
h4 {
background: none;
border: none;
margin: 0 0.5em 0 0.5em !important;
}
}
input[type=text],input[type=password],input[type=email],input[type=number]{
width: 97%;
}
select {
min-width: 97%;
}
}
}