I am using sass and found problem. This is an example of what I am trying to do:

.message-error {
    background-color: red;

    p& {
        background-color: yellow
     }
  }

Expected css:

.message-error {
    background-color: red;
}
p.message-error {
    background-color: yellow ;
}

The idea: all elements with .message-error will be red, expect if it is p.message-error. This is not real-life situation, just to show an example.

SASS is not able to compile this, I even tried string concatenation. Is there some plugin that will do exactly the same?

NOTE: I know I can put another css definition like

p.message-error{....}

under, but I would like to avoid that and use one place for all .message-error definitions.

Thanks.

link|improve this question

50% accept rate
Like you said: this is not a real-life situation. Whether you're using CSS or Sass, it's better to do what you know to do. There's no reason to do what you're proposing. If there is, please clarify. – maxbeatty Feb 17 at 7:00
It doesn't escape from real-life too much: what I wanted is to have different layout if message-error is either <p> or <ul>. Example: for <p> element, box would have some background-url image at left side (check Constellation admin template). But if it is <ul>, no sprites. – Zeljko Feb 17 at 18:20
Don't know about sass. But in normal CSS if u want "all elements with .message-error will be red, expect if it is p.message-error" from which I assume that the p.message-error does not need to be yellow either, than we could use the negation pseudo-class selector ".message-error:not(p.message-error)" - Not sure about this. – Jawad Feb 19 at 22:05
feedback

4 Answers

Nathan Weizenbaum (the main developer of Sass) says it will never be supported:

Currently, & is syntactically the same as an element selector, so it can't appear alongside one. I think this helps clarify where it can be used; for example, foo&bar would never be a valid selector (or would perhaps be equivalent to foo& bar or foo &bar). I don't think this use case is strong enough to warrant changing that.

Source: #282 – Element.parent selector

To my knowledge, there is no possible workaround.

link|improve this answer
I found that one too. In fact, it was supported in older version and is supported by Stylus (which I would use but don't know how to install). That's why I was looking for some patch, hack or so. – Zeljko Feb 21 at 0:48
feedback

The best thing to do would be probably this (assuming you have a little more in your .message-error class than just background color.

.message-error {
 background-color: red;
}

p.message-error {
@extend message-error;
background-color: yellow
}

This approach doesn't offer that close grouping, but you can just keep them close to each other.

link|improve this answer
feedback

This cheat might work

 {
     $and: .message-error;
     #{$and} {
        background-color: red;
     }

     p#{$and} {
        background-color: yellow
     }
  }

You may even be able to use $& as your variable name but I'm not 100% sure it won't throw an error.

And SASS has inbuilt scoping, which removes having to worry about the value of $and leaking out to the rest of your stylesheet

Variables are only available within the level of nested selectors where they’re defined. If they’re defined outside of any nested selectors, they’re available everywhere.

link|improve this answer
I had thought about something like this too, but I believe the output of the above (assuming the interpolation works as expected) would actually be .message-error p.message-error {...} whereas with the original attempted use by Zeljko of the parent selector & (had it worked like he wanted) it would not nest, and produce p.message-error {...}. I don't know this for sure, as I am not a SASS expert, but from reading the documentation, it seems I've understood correctly what the output would be for your solution. – ScottS Feb 23 at 10:23
oh yeah... well spotted. I've edited to something else that might work, though less tidy – wheresrhys Feb 23 at 10:34
Thanks guys, but this looks worse than p.message-error{} under .message-error{}. And it is still not nested as I need. I think I will either learn Stylus or create a ticket for SASS. – Zeljko Feb 23 at 18:49
feedback

I think if you want to keep them grouped by parent selector, you might need to add a common parent:

body {
    & .message-error {background-color: red;}
    & p.message-error {background-color: yellow}
}

Of course, body could be replaced with some other common parent, such as #Content or another div name that will contain all the error messages.

UPDATE (Another Idea)

If you leverage @for and lists then it seems like this should work (what I don't know for sure is if the list will allow the . (period).

@for $i from 1 to 3 {
  nth(. p. ul., #{$i})message-error {
    background-color: nth(red yellow cyan, #{$i}));
  }
}

Should compile to something like:

.message-error {
   background-color: red;}
p.message-error {
   background-color: yellow;}
ul.message-error {
   background-color: cyan;}
link|improve this answer
I want them nested, not grouped near-by :) – Zeljko Feb 23 at 18:47
@Zeljko--I came up with another possible solution. I don't know if it meets your needs, but could be a compact way of writing it. – ScottS Feb 23 at 20:49
Thanks, but I really need as I asked in my first post. – Zeljko Feb 24 at 23:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.