Merge branch 'thubrecht/autocomplete-css' into 'master'

On modifie le curseur quand on survole un compte dans l'autocomplete

See merge request klub-dev-ens/gestioCOF!499
This commit is contained in:
Ludovic Stephan 2021-05-05 00:06:15 +00:00
commit 7efc7e6b94
2 changed files with 7 additions and 2 deletions

View file

@ -855,13 +855,14 @@ input[type=number][readonly]::-webkit-outer-spin-button {
font-weight: bold; font-weight: bold;
} }
.yourlabs-autocomplete li.autocomplete-header { li.autocomplete-header {
background-color: #FFEF9E; background-color: #FFEF9E;
padding: 3px 5px; padding: 3px 5px;
color: #000; color: #000;
} }
.yourlabs-autocomplete li.autocomplete-value { li.autocomplete-value,
li.autocomplete-new {
cursor: pointer; cursor: pointer;
} }

View file

@ -219,6 +219,10 @@
width:100%; width:100%;
} }
li.autocomplete-value {
cursor: pointer;
}
#account_results .hilight { #account_results .hilight {
background:rgba(200,16,46,0.9); background:rgba(200,16,46,0.9);
color:#fff; color:#fff;