7021433185
This PR adds a new {{template-anchor}} component. This component lets you specify a 'href template' in a handlebars like format instead of a normal string href. This template will be interpolated with the contents of a vars="" attribute. Also contains code to add an extra UI Setting to be able to store a template to be used for this anchor in localStorage
23 lines
418 B
SCSS
23 lines
418 B
SCSS
@import './anchors/index';
|
|
%main-content a {
|
|
color: $gray-900;
|
|
}
|
|
a[rel*='external'] {
|
|
@extend %with-exit;
|
|
}
|
|
%main-content label a[rel*='help'] {
|
|
color: $gray-400;
|
|
}
|
|
%main-content a[rel*='help']::after {
|
|
@extend %with-info-circle-outline-icon, %as-pseudo;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
[role='tabpanel'] > p:only-child [rel*='help']::after {
|
|
content: none;
|
|
}
|
|
%main-content p a,
|
|
%main-content dd a {
|
|
@extend %anchor;
|
|
}
|