Skip to content
Open
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
2 changes: 1 addition & 1 deletion packages/module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
},
"devDependencies": {
"@octokit/rest": "^18.0.0",
"@patternfly/documentation-framework": "6.8.2",
"@patternfly/documentation-framework": "6.28.9",
"@patternfly/patternfly": "^6.1.0",
"@patternfly/patternfly-a11y": "^4.3.1",
"@patternfly/react-code-editor": "^6.1.0",
Expand Down
4 changes: 3 additions & 1 deletion packages/module/patternfly-docs/patternfly-docs.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
module.exports = {
sideNavItems: [{ section: 'extensions' }],
topNavItems: [],
port: 8006
port: 8006,
hasThemeSwitcher: true,
hasHighContrastSwitcher: true
};
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,26 @@

&:hover {
background-color: var(--pf-t--global--background--color--action--plain--hover);
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lboehling @thatblindgeye I didn't add the hover background, just the outline. Git blame points to a change by @nicolethoen - anyone know why this was added?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is this issue that might handle this: #88

Copy link
Member Author

@srambach srambach Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So it looks like maybe it was applied to the filter side panel by accident and was only meant to be the vertical tabs?
#73 comments talk about a hover background on vertical tabs but it was also applied to the filter side panel, perhaps erroneously?

position: relative;

&::after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-width: var(--pf-t--global--border--width--high-contrast--regular);
border-style: solid;
border-color: transparent;
border-radius: inherit;
pointer-events: none;
}

&::after {
border-color: var(--pf-t--global--border--color--high-contrast);
}
}

.pf-v6-c-check__label {
min-height: var(--pf-t--global--spacer--md);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,30 @@
width: 100%;
word-break: break-word;
border-radius: var(--pf-t--global--border--radius--small);
position: relative;

&::after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-width: var(--pf-t--global--border--width--high-contrast--regular);
border-style: solid;
border-color: transparent;
border-radius: inherit;
pointer-events: none;
}

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

&::after {
border-color: var(--pf-t--global--border--color--high-contrast);
}
}

&.no-wrap {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading