Skip to content

Commit

Permalink
Merge pull request #75 from patternfly/tab-decorations
Browse files Browse the repository at this point in the history
fix(vertical tabs): text-decoration off
  • Loading branch information
nicolethoen authored Jan 16, 2025
2 parents 330e740 + 92a6c37 commit 7738f40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
}
.ws-react-e-vertical-tabs .vertical-tabs-pf-tab > a {
color: var(--pf-t--global--text--color--regular);
text-decoration: none;
display: inline-block;
font-size: var(--pf-t--global--font--size--body--default);
padding-block: var(--pf-t--global--spacer--xs);
Expand All @@ -30,7 +31,6 @@
margin-inline-start: var(--pf-t--global--spacer--md);
}
.ws-react-e-vertical-tabs .vertical-tabs-pf-tab > a:hover, .ws-react-e-vertical-tabs .vertical-tabs-pf-tab > a:focus {
color: var(--pf-t--global--text--color--regular);
background-color: var(--pf-t--global--background--color--action--plain--hover);
text-decoration: none;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

> a {
color: var( --pf-t--global--text--color--regular);
text-decoration: none;
display: inline-block;
font-size: 13px;
padding: 3px 6px 3px 15px;
Expand All @@ -23,7 +24,7 @@

&:hover,
&:focus {
color: var(--pf-t--global--text--color--brand--hover);
background-color: var(--pf-t--global--background--color--action--plain--hover);
text-decoration: none;
}

Expand Down

0 comments on commit 7738f40

Please sign in to comment.