aboutsummaryrefslogtreecommitdiff
path: root/scss/helpers
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2023-01-03 22:23:46 -0800
committerGitHub <[email protected]>2023-01-03 22:23:46 -0800
commitd70b5db2e0aee9ea9a7255d28395278876bf53ba (patch)
treefdb7aba2fd46c77feada9c601b8967f6e91fa409 /scss/helpers
parent89f9ffc212e61eef78422843200275904e2a7c44 (diff)
downloadbootstrap-d70b5db2e0aee9ea9a7255d28395278876bf53ba.tar.xz
bootstrap-d70b5db2e0aee9ea9a7255d28395278876bf53ba.zip
Add new link utilities, icon link helper, and update colored link helpers (#37762)
* Add new link utilities, update colored link helpers * Remove commented out code * Fixes * Remove examples changes * Fixes and copy * Fix icon-link instances on homepage * Bump bundlewatch * Fix node-sass issue for rgba() function bug * More bundlewatch * One more time after merge * Add callout for a11y * Hover and focus-visible * Add a11y callouts * Remove duplicate for now * More code review feedback
Diffstat (limited to 'scss/helpers')
-rw-r--r--scss/helpers/_colored-links.scss10
-rw-r--r--scss/helpers/_icon-link.scss24
2 files changed, 32 insertions, 2 deletions
diff --git a/scss/helpers/_colored-links.scss b/scss/helpers/_colored-links.scss
index 0e03039bb..06c8ce412 100644
--- a/scss/helpers/_colored-links.scss
+++ b/scss/helpers/_colored-links.scss
@@ -1,11 +1,17 @@
+// stylelint-disable function-name-case
+
+// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
@each $color, $value in $theme-colors {
.link-#{$color} {
- color: $value if($enable-important-utilities, !important, null);
+ --#{$prefix}link-color-rgb: #{to-rgb($value)};
+ text-decoration-color: RGBA(to-rgb($value), var(--#{$prefix}link-underline-opacity, 1));
@if $link-shade-percentage != 0 {
&:hover,
&:focus {
- color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)) if($enable-important-utilities, !important, null);
+ $hover-color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage));
+ --#{$prefix}link-color-rgb: #{to-rgb($hover-color)};
+ text-decoration-color: RGBA(to-rgb($hover-color), var(--#{$prefix}link-underline-opacity, 1));
}
}
}
diff --git a/scss/helpers/_icon-link.scss b/scss/helpers/_icon-link.scss
new file mode 100644
index 000000000..712dd02c7
--- /dev/null
+++ b/scss/helpers/_icon-link.scss
@@ -0,0 +1,24 @@
+.icon-link {
+ display: inline-flex;
+ gap: .375rem;
+ align-items: center;
+ text-decoration-color: rgba(var(--#{$prefix}link-color-rgb), var(--#{$prefix}link-opacity, .5));
+ text-underline-offset: .5rem;
+ backface-visibility: hidden;
+
+ > .bi {
+ flex-shrink: 0;
+ width: 1em;
+ height: 1em;
+ @include transition(.2s ease-in-out transform);
+ }
+}
+
+.icon-link-hover {
+ &:hover,
+ &:focus-visible {
+ > .bi {
+ transform: var(--#{$prefix}icon-link-transform, translate3d(.25em, 0, 0));
+ }
+ }
+}