artlantis / phamlp

Automatically exported from code.google.com/p/phamlp
0 stars 0 forks source link

Sass // Plus sign stripped from CSS3 selector #101

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

@mixin nav-boolean {
 ol {
    li {
       input:checked + label { ... }
    }
  }
}

.nav-boolean { @include nav-boolean; }

What is the expected output? What do you see instead?

Expected:
.nav-boolean ol li input:checked + label {

Actual:
.nav-boolean ol li input:checked   label {

What version of the product are you using? On what operating system?
phamlp version 2010-04-16 on Windows XP running WampDeveloper

Please provide any additional information below.
-

Thanks,
Dan

Original issue reported on code.google.com by panoram...@gmail.com on 30 Jun 2011 at 5:45

GoogleCodeExporter commented 9 years ago
This is fixed as of now in https://github.com/richthegeek/phamlp

Original comment by richtheg...@gmail.com on 7 Feb 2012 at 5:04