Skip to content
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

♻️ refactor(*): selecteur not combiné [DS-3589] #786

Merged
merged 2 commits into from
Nov 9, 2023

Conversation

keryanS
Copy link
Contributor

@keryanS keryanS commented Sep 11, 2023

  • Remplacement des selecteurs :not(.selecteurA, .selecteurB) par :not(.selecteurA):not(.selecteurB) dans le js des composants : accordion, navigation, sidemenu, translate, transcription
  • La séparation par des virgules est une fonctionnalité assez récente qui n’est pas si bien supportée que ça sur d’anciennes versions de plusieurs navigateurs (firefox, safari, edge…)

@keryanS keryanS added this to the 1.11.0 milestone Sep 11, 2023
@keryanS keryanS self-assigned this Sep 11, 2023
@keryanS keryanS changed the title refactor(*): selecteur not combiné [DS-3589] ♻️ refactor(*): selecteur not combiné [DS-3589] Sep 15, 2023
@@ -5,7 +5,7 @@ const COLLAPSE = api.internals.ns.selector('collapse');

export const TranscriptionSelector = {
TRANSCRIPTION: TRANSCRIPTION,
COLLAPSE: `${TRANSCRIPTION} > ${COLLAPSE}, ${TRANSCRIPTION} > *:not(${TRANSCRIPTION}, ${COLLAPSE}) > ${COLLAPSE}, ${TRANSCRIPTION} > *:not(${TRANSCRIPTION}, ${COLLAPSE}) > *:not(${TRANSCRIPTION}, ${COLLAPSE}) > ${COLLAPSE}`,
COLLAPSE: `${TRANSCRIPTION} > ${COLLAPSE}, ${TRANSCRIPTION} > *:not(${TRANSCRIPTION}:not(${COLLAPSE}) > ${COLLAPSE}, ${TRANSCRIPTION} > *:not(${TRANSCRIPTION}):not(${COLLAPSE}) > *:not(${TRANSCRIPTION}):not(${COLLAPSE}) > ${COLLAPSE}`,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bonjour, je crois qu'il manque une ) juste avant :not sur le premiere sélecteur corrigé :

*:not(${TRANSCRIPTION}):not(${COLLAPSE})
à la place de
*:not(${TRANSCRIPTION}:not(${COLLAPSE})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
correctif Quelque chose ne fonctionne pas maj 1.10.1 Prêt
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants