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

[QOLSVC-635] restrict 'inline-block' styling to prevent side effects #749

Merged
merged 1 commit into from
Feb 1, 2023
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
5 changes: 0 additions & 5 deletions src/assets/_project/_blocks/components/link/_qg-link.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@
outline: 3px solid #0096d6;
outline-offset: 2px;
}
// workaround for Firefox border issue on multiline links,
// https://www.drupal.org/project/drupal/issues/3016658
&:not(.pagination a, .graph a) {
display: inline-block;
}
}
@content;
}
Expand Down
3 changes: 3 additions & 0 deletions src/assets/_project/_blocks/layout/_pagemodels/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
float: left;
}
a {
// workaround for Firefox border issue on multiline links,
// https://www.drupal.org/project/drupal/issues/3016658
display: inline-block;
&:not(:hover){
text-decoration-line: none !important;
}
Expand Down