- 
                Notifications
    
You must be signed in to change notification settings  - Fork 8
 
Open
Description
Problem
In many cases I need to share a pseudo state such as active with multiple selectors.
Intuitively I would make a button:active then share the active state with button bars tabs etc. Am not able to do this with rework-inherit
Steps to reproduce
- create a class
 
.button:active {
  border: 1px solid blue;
}
- extend this class
 
.button--large {
  extend: .button:active;
}
Expected results
Pseudo selector would be extended.
.button--large:active,
.button:active {
  border: 1px solid blue;
}
Actual result
No output is generated for the large variation.
Metadata
Metadata
Assignees
Labels
No labels