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

Compatibilité LESS #82

Open
NumEricR opened this issue Jun 6, 2015 · 1 comment
Open

Compatibilité LESS #82

NumEricR opened this issue Jun 6, 2015 · 1 comment

Comments

@NumEricR
Copy link
Collaborator

NumEricR commented Jun 6, 2015

Après quelques tests je constate qu'en gros CSSLisible n'est pas compatible LESS. :(
Voilà un compte-rendu :

Nested rules

Il manque 1 indentation sur chaque ligne

#test {
.test {
    color: @color;
    @color: #fff;
}
}
Mixin

.bordered; n'est pas indenté

.bordered {
    border-top: dotted 1px black;
    border-bottom: solid 2px black;
}
.post a {
.bordered;
    color: red;
}
Import

Il manque une indentation et une ligne est ajoutée sous l'import

.bordered {
@import "test.less";
    border-bottom: solid 2px black;
}
Extend

Ajout d'un espace avant "extend"

nav ul {
  &:extend(.inline);
  background: blue;
}
.inline {
  color: red;
}
Variables

Les variables passent dans le sélecteur !

@nice-blue: #5B83AD;
@light-blue: @nice-blue + #111;
#header {
  color: @light-blue;
}
@Darklg
Copy link
Owner

Darklg commented Aug 14, 2015

J'ai commencé pour les nested rules, pour le reste je vais voir au cas par cas !

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