Skip to content

Instantly share code, notes, and snippets.

@kalinchernev
Created October 12, 2015 10:29
Show Gist options
  • Save kalinchernev/16d29eb69ad2b471d834 to your computer and use it in GitHub Desktop.
Save kalinchernev/16d29eb69ad2b471d834 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$internal_links_patterns: 'beta.ec.europa.eu' 'devcloud.acquia-sites.com' 'webgate.ec.europa.eu';
@mixin internal-icon($patterns) {
@each $url in $patterns {
&:not([href*="#{$url}"]) {
@content
};
}
}
a {
@include internal-icon($internal_links_patterns) {
color: white;
}
}
a:not([href*="beta.ec.europa.eu"]) {
color: white;
}
a:not([href*="devcloud.acquia-sites.com"]) {
color: white;
}
a:not([href*="webgate.ec.europa.eu"]) {
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment