* Mobile theme: Fix inconsistent styling of submit buttons on login page, when browsing with Safari

This commit is contained in:
Hadi Nategh 2019-01-11 09:50:47 +01:00
parent ac092b6321
commit eec591ce80
4 changed files with 22 additions and 0 deletions

View File

@ -5949,6 +5949,11 @@ button,
cursor: pointer;
color: #004e7d;
}
input[type=submit] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,

View File

@ -5938,6 +5938,11 @@ button,
cursor: pointer;
color: #004e7d;
}
input[type=submit] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,

View File

@ -44,6 +44,13 @@ input[type=submit],input[type=button],input[type=reset],button,.egwbutton
color: #004e7d;
}
input[type=submit]
{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type=submit]:hover,input[type=button]:hover,input[type=reset]:hover,button:hover,.egwbutton:hover
{
.background_color_15_gray;

View File

@ -5960,6 +5960,11 @@ button,
cursor: pointer;
color: #004e7d;
}
input[type=submit] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,