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

Increase color contrast of link in help tour #2010

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
6 changes: 6 additions & 0 deletions lib/osf-components/addon/components/search-page/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,12 @@
margin: 25px 5px 0;
}

.help-description {
a {
color: $color-link-lighter;
}
}

.skip-button {
color: $color-text-white;
overflow: visible;
Expand Down
6 changes: 3 additions & 3 deletions lib/osf-components/addon/components/search-page/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ as |layout|>
<h2 local-class='search-help-header' data-test-help-heading-1>
{{t 'search.search-help.header-1'}}
</h2>
<p data-test-help-body-1>{{t 'search.search-help.body-1' htmlSafe=true}}</p>
<p local-class='help-description' data-test-help-body-1>{{t 'search.search-help.body-1' htmlSafe=true}}</p>
<span local-class='pagination'>
<p local-class='enumeration' data-test-help-enumeration-1>{{t 'search.search-help.index-1'}}</p>
<span local-class='help-button-wrapper'>
Expand Down Expand Up @@ -326,7 +326,7 @@ as |layout|>
<h2 local-class='search-help-header' data-test-help-heading-2>
{{t 'search.search-help.header-2'}}
</h2>
<p data-test-help-body-2>{{t 'search.search-help.body-2'}}</p>
<p local-class='help-description' data-test-help-body-2>{{t 'search.search-help.body-2'}}</p>
<span local-class='pagination'>
<p local-class='enumeration' data-test-help-enumeration-2>{{t 'search.search-help.index-2'}}</p>
<span local-class='help-button-wrapper'>
Expand Down Expand Up @@ -370,7 +370,7 @@ as |layout|>
<h2 local-class='search-help-header' data-test-help-heading-3>
{{t 'search.search-help.header-3'}}
</h2>
<p data-test-help-body-3>{{t 'search.search-help.body-3' htmlSafe=true}}</p>
<p local-class='help-description' data-test-help-body-3>{{t 'search.search-help.body-3' htmlSafe=true}}</p>
<span local-class='pagination'>
<p local-class='enumeration' data-test-help-enumeration-3>{{t 'search.search-help.index-3'}}</p>
<span local-class='help-button-wrapper'>
Expand Down
Loading