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

Gestion des propriétés/valeurs #83

Open
NumEricR opened this issue Aug 13, 2015 · 1 comment
Open

Gestion des propriétés/valeurs #83

NumEricR opened this issue Aug 13, 2015 · 1 comment

Comments

@NumEricR
Copy link
Collaborator

Plop !
J'ai fait quelques tests avec 0c3ab7f.

#test {
  color: black;
  .titi { color: white; }
  color: red;
}

donne :

#test {
.titi {
    color: black;
    color: white;
}
}

Donc la dernière instruction est supprimée et la première se retrouve dans le sélecteur imbriqué.

@Darklg
Copy link
Owner

Darklg commented Aug 14, 2015

Ah oui, en effet, je ne gère pas les cas où les sélecteurs imbriqués sont à la racine, uniquement

#test {
& {color: blue;}
.titi {color: red;}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants