Fixes #1404 input for name and password has good hover now.

This commit is contained in:
Matthieu Leproux
2021-05-07 11:41:41 +02:00
parent 5792cf6307
commit c1b35fd44d
3 changed files with 14 additions and 10 deletions
@@ -1505,14 +1505,9 @@ update_selection_content();
.user-property-input.user-property-input-username {
border: solid 2px #ffa744;
background: none;
padding: 9px;
}
.user-property-input.user-property-input-username:hover {
background-color: #f0f0f0 !important;
}
.user-property-password-container {
display:flex;
flex-direction:column;
@@ -1553,14 +1548,9 @@ update_selection_content();
.user-property-input.user-property-input-password {
border: solid 2px #ffa744;
background: none;
padding: 9px;
}
.user-property-input.user-property-input-password:hover {
background-color: #f0f0f0 !important;
}
.user-property-register-visit {
color:#A4A4A4;
font-weight:bold;
+7
View File
@@ -4996,4 +4996,11 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important;
.update-container {
border-top:solid 1px #ddd;
}
.user-property-input.user-property-input-username:hover {
background-color: #f0f0f0;
}
.user-property-input.user-property-input-password:hover {
background-color: #f0f0f0;
}
+7
View File
@@ -1208,4 +1208,11 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important;
.update-container {
border-top:solid 1px #333;
}
.user-property-input.user-property-input-username:hover {
background-color: #333;
}
.user-property-input.user-property-input-password:hover {
background-color: #333;
}