Created
May 6, 2014 09:50
-
-
Save georgecrawford/11557516 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.6) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
%highlight-focus-state { | |
box-shadow: red; | |
} | |
%highlight-focus-state-webkit { | |
outline: blue; | |
} | |
.tab-ui { | |
.edition__right-cols:focus ul { | |
@extend %highlight-focus-state; | |
.platform-chrome & { | |
@extend %highlight-focus-state-webkit; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tab-ui .edition__right-cols:focus ul { | |
box-shadow: red; | |
} | |
.platform-chrome .tab-ui .edition__right-cols:focus ul { | |
outline: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment