Skip to content

Commit

Permalink
Fixes #1404 input for name and password has good hover now.
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuLP committed May 7, 2021
1 parent 5792cf6 commit c1b35fd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
10 changes: 0 additions & 10 deletions admin/themes/default/template/user_list.tpl
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
7 changes: 7 additions & 0 deletions admin/themes/default/theme.css
Expand Up @@ -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 changes: 7 additions & 0 deletions admin/themes/roma/theme.css
Expand Up @@ -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;
}

0 comments on commit c1b35fd

Please sign in to comment.