-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use SearchComponent
on bouquets & données page
#584
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for ecospheres ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for meteo-france ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@at-github Le contenu de PR a l'air beaucoup plus conséquent que sa description. Tu es sûr que c'est bon ? |
J'ai l'impression que la base branch devrait être celle de la home. |
Elle comprend toute la branche de la home, je mets en draft |
@at-github tu peux juste switcher la base branch de la PR, non ? |
ae67067
to
118493a
Compare
J'ai rebase sur |
Comportement quand on appuie sur Entrée dans le champ de recherche : Avant
Maintenant
=> revenir au comportement existant me parait le mieux, sauf si meilleure idée. |
adbcf30
to
a544d4e
Compare
Je n'arrive pas à reproduire sur chrome (linux), j'espère qu'il ne me faut pas un mac quand même |
Ça vient de Pour harmoniser le focus: .fr-search-bar:focus-within {
outline: 2px solid #0a76f6;
outline-offset: -2px;
}
.fr-search-bar input:focus {
outline: none;
} Il y a un autre problème: avec Si on garde le comportement actuel (recherche à la volée sans attendre de submit), il ne faut pas utiliser |
Petite galère avec |
@@ -149,11 +149,12 @@ watch( | |||
</div> | |||
</div> | |||
<div class="fr-col-md-12 fr-mb-2w"> | |||
<DsfrSearchBar | |||
<SearchComponent |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comme commenté, pas certain que la DsfrSearchBar
soit adaptée ici.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Désolé @narduin je suis peut être à côté des mes pompes. Mais j'ai remplacé justement DsfrSearchBar
par un autre composant. Est-ce que j’interprète mal ton retour ?
@@ -254,11 +254,12 @@ onMounted(() => { | |||
</p> | |||
|
|||
<div class="fr-col-md-12 fr-mb-2w"> | |||
<DsfrSearchBar | |||
<SearchComponent |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
idem: pas certain que la DsfrSearchBar
soit adaptée ici.
Tu peux ajouter une surcharge directement dans le Par exemple: :where(.dataset-list-page, .bouquet-list-page) .fr-search-bar:focus-within {
outline: 2px solid #0a76f6;
outline-offset: -2px;
}
:where(.dataset-list-page, .bouquet-list-page) .fr-search-bar input:focus {
outline: none;
} |
Idem, ça n'a pas l'air d'être pris en compte. Je cherche déjà à changer la couleur de bordure qui est noire (quasiment) par défaut. Et mes selecteurs font défaut… |
update relevant components
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix: ecolabdata/ecospheres#407