Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed: Issue 2030 - Link examples changed #2056

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

$vf-link--color: #3b6fb6;
$vf-link--hover-color: #193f90;
$vf-link--visited-color: #734595;
$vf-link--visited-color: #563D82;
$vf-link--decoration: underline;
4 changes: 4 additions & 0 deletions components/vf-link/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.0.2

* Changes to link examples.[Tracking issue](https://github.com/visual-framework/vf-core/issues/2030)

### 2.0.1

* Fixed: Fixed space issue to make the 'default' variant example look like a link (#1895)
Expand Down
6 changes: 2 additions & 4 deletions components/vf-link/vf-link--example.njk
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
<!-- Primary -->
<a href="{{link_href}}" class="vf-link">A text link</a><br/>
<!-- Primary Hover -->
<a href="{{link_href}}" class="vf-link vf-link--hover">A text link with :hover</a><br/>
<a href="{{link_href}}" class="vf-link vf-link--hover"><u>A text link on hover</u></a><br/>
<!-- Primary Visited -->
<a href="{{link_href}}" class="vf-link vf-link--visited">A text link with :visited</a><br/>
<!-- Primary Disabled -->
<a href="{{link_href}}" class="vf-link" disabled>A text link that is disabled</a><br/>
<a href="{{link_href}}" class="vf-link vf-link--visited">A visited text link</a><br/>

<p class="vf-u-margin__bottom--0 vf-text-body vf-text-body--2">This is an example of using <a href="{{link_href}}">inline links</a> when you are using the <code>.vf-content</code> container.</p>
</div>
Loading