Fix login button not working when the window size is too small

This commit is contained in:
Hadi Nategh 2020-01-13 14:48:12 +01:00
parent f3556654e1
commit 6d618ffaea
2 changed files with 6 additions and 0 deletions

View File

@ -7337,6 +7337,7 @@ form[id^="ranking-"] .dialogHeadbar {
margin: 0 auto; margin: 0 auto;
} }
div#loginMainDiv div#centerBox { div#loginMainDiv div#centerBox {
position: relative;
padding: 0; padding: 0;
-webkit-border-top-right-radius: 0; -webkit-border-top-right-radius: 0;
-webkit-border-bottom-right-radius: 0; -webkit-border-bottom-right-radius: 0;
@ -7396,6 +7397,9 @@ form[id^="ranking-"] .dialogHeadbar {
} }
} }
@media only screen and (max-device-width : 1024px) and (orientation : portrait) { @media only screen and (max-device-width : 1024px) and (orientation : portrait) {
body div#loginMainDiv div#centerBox {
position: relative;
}
body div#loginMainDiv div#centerBox form table.divLoginbox { body div#loginMainDiv div#centerBox form table.divLoginbox {
width: 100%; width: 100%;
} }

View File

@ -112,6 +112,7 @@
} }
} }
div#centerBox{ div#centerBox{
position: relative;
padding: 0; padding: 0;
-webkit-border-top-right-radius: 0; -webkit-border-top-right-radius: 0;
-webkit-border-bottom-right-radius:0; -webkit-border-bottom-right-radius:0;
@ -173,6 +174,7 @@
body{ body{
div#loginMainDiv{ div#loginMainDiv{
div#centerBox{ div#centerBox{
position: relative;
form { form {
table.divLoginbox { table.divLoginbox {
width:100%; width:100%;