Fix register button in webauthn's tab not visible

This commit is contained in:
Hadi Nategh 2019-09-16 13:10:12 +02:00
parent 87a0f0135f
commit a9e27d7128
2 changed files with 21 additions and 0 deletions

View File

@ -148,3 +148,12 @@ tr.prefRow > td textarea.prefValue {
div#preferences-settings_tabs {
margin-bottom: 65px;
}
/* tablets and smartphones */
@media all {
body .popupMainDiv .et2_button_text.plus_button,
body .popupMainDiv .et2_button_with_image.plus_button {
background-color: #0c5da5 !important;
height: 60px !important;
background-position: center !important;
}
}

View File

@ -34,4 +34,16 @@ tr.prefRow > td {
}
div#preferences-settings_tabs {
margin-bottom: 65px;
}
/* tablets and smartphones */
@media all {
body {
.popupMainDiv {
.et2_button_text.plus_button, .et2_button_with_image.plus_button {
background-color: #0c5da5 !important;
height: 60px !important;
background-position: center !important;
}
}
}
}