Skip to content
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
2 changes: 1 addition & 1 deletion packages/react-core/src/components/Compass/Compass.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const Compass: React.FunctionComponent<CompassProps> = ({

if (hasDrawer) {
return (
<Drawer {...drawerProps}>
<Drawer isPill {...drawerProps}>
<DrawerContent panelContent={drawerContent}>
<DrawerContentBody>{compassContent}</DrawerContentBody>
</DrawerContent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const CompassContent: React.FunctionComponent<CompassContentProps> = ({

if (hasDrawer) {
return (
<Drawer {...drawerProps}>
<Drawer isPill {...drawerProps}>
<DrawerContent panelContent={drawerContent}>{compassContent}</DrawerContent>
</Drawer>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exports[`Matches the snapshot with basic layout 1`] = `
exports[`Matches the snapshot with drawer 1`] = `
<DocumentFragment>
<div
class="pf-v6-c-drawer pf-m-expanded"
class="pf-v6-c-drawer pf-m-expanded pf-m-pill"
>
<div
class="pf-v6-c-drawer__main"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`Matches the snapshot with drawer 1`] = `
<DocumentFragment>
<div
class="pf-v6-c-drawer pf-m-expanded"
class="pf-v6-c-drawer pf-m-expanded pf-m-pill"
>
<div
class="pf-v6-c-drawer__main"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
#ws-react-p-compass-basic [class*="pf-v6-c-compass"] {
#ws-react-a-compass-basic [class*="pf-v6-c-compass"] {
position: relative;
}

#ws-react-p-compass-basic [class*="pf-v6-c-compass"]::after {
#ws-react-a-compass-basic [class*="pf-v6-c-compass"]::after {
content: "";
position: absolute;
inset: 0;
border: var(--pf-t--global--border--width--regular) dashed var(--pf-t--global--border--color--default);
pointer-events: none;
}

#ws-react-p-compass-with-alternate-footer [class*="pf-v6-c-compass"] {
#ws-react-a-compass-with-alternate-footer [class*="pf-v6-c-compass"] {
position: relative;
}

#ws-react-p-compass-with-alternate-footer [class*="pf-v6-c-compass"]:not([class*="footer"])::after {
#ws-react-a-compass-with-alternate-footer [class*="pf-v6-c-compass"]:not([class*="footer"])::after {
content: "";
position: absolute;
inset: 0;
Expand Down
Loading