Skip to content
2 changes: 1 addition & 1 deletion dist/bootstrap4/components/alert.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/core-styles.base.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/core-styles.bootstrap4.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/elements/links.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/lib/_imports/bootstrap4/components/alert.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}

.alert-primary {
@mixin message--type-info---message--scope-section;
@mixin message--scope-global;
}
.alert-secondary {
@mixin message--type-extra---message--scope-section;
Expand Down
11 changes: 8 additions & 3 deletions src/lib/_imports/elements/links.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,20 @@
@import url("../tools/selectors.css");
@import url('../tools/x-link.css');

a:where(:not(:--c-button, :--c-card)) {
@custom-selector :--exempt-link
:--c-button,
:--c-card,
.alert-link;

a:where(:not(:--exempt-link)) {
@mixin link;
}
a:where(:not([href])) {
@mixin link--disabled;
}
a:where(:not(:--c-button, :--c-card)):hover {
a:where(:not(:--exempt-link)):hover {
@mixin link--hover;
}
a:where(:not(:--c-button, :--c-card)):active {
a:where(:not(:--exempt-link)):active {
@mixin link--active;
}