Skip to content

Commit ec955b4

Browse files
committed
hosts: Updated to PF6 styling
1 parent bc619eb commit ec955b4

File tree

3 files changed

+37
-32
lines changed

3 files changed

+37
-32
lines changed

pkg/shell/hosts.tsx

+19-13
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ import { split_connection_string } from "./machines/machines";
4040
import { add_host, edit_host, connect_host } from "./hosts_dialog.jsx";
4141

4242
import { ShellState } from "./state";
43+
import { Icon } from "@patternfly/react-core";
4344

4445
const _ = cockpit.gettext;
4546

@@ -243,24 +244,29 @@ export class CockpitHosts extends React.Component {
243244
return (
244245
<div className="ct-switcher">
245246
<div className="pf-v6-c-select pf-m-dark">
246-
<button onClick={this.toggleMenu} id="host-toggle" aria-labelledby="host-toggle" aria-expanded={(this.state.opened ? "true" : "false")} aria-haspopup="listbox" type="button" className="ct-nav-toggle pf-v6-c-select__toggle pf-m-plain">
247-
<span className="pf-v6-c-select__toggle-wrapper desktop_v">
248-
<span className="pf-v6-c-select__toggle-text">
249-
<HostLine user={user} host={label} />
247+
<button onClick={this.toggleMenu} id="host-toggle" aria-labelledby="host-toggle" aria-expanded={(this.state.opened ? "true" : "false")} aria-haspopup="listbox" type="button" className="ct-nav-toggle pf-v6-c-select__toggle pf-v6-c-menu-toggle pf-m-plain">
248+
<span className="pf-v6-c-button__text desktop_v">
249+
<span className="pf-v6-c-select__toggle-wrapper">
250+
<span className="pf-v6-c-select__toggle-text">
251+
<HostLine user={user} host={label} />
252+
</span>
250253
</span>
251254
</span>
252-
<CaretUpIcon
253-
className={`pf-v6-c-select__toggle-arrow mobile_v pf-v6-c-icon pf-m-lg ${this.state.opened ? 'clicked' : ''}`}
254-
aria-hidden="true"
255-
/>
255+
<Icon size="xl" className="mobile_v">
256+
<CaretUpIcon
257+
className={`pf-v6-c-select__toggle-arrow ${this.state.opened ? 'clicked' : ''}`}
258+
aria-hidden="true"
259+
/>
260+
</Icon>
256261
<span className="pf-v6-c-select__toggle-wrapper mobile_v">
257262
{_("Host")}
258263
</span>
259-
<CaretDownIcon
260-
className={`pf-v6-c-select__toggle-arrow desktop_v pf-v6-c-icon ${this.state.opened ? 'clicked' : ''}`}
261-
aria-hidden="true"
262-
/>
263-
264+
<Icon size="xl" className="desktop_v">
265+
<CaretDownIcon
266+
className={`pf-v6-c-select__toggle-arrow ${this.state.opened ? 'clicked' : ''}`}
267+
aria-hidden="true"
268+
/>
269+
</Icon>
264270
</button>
265271
</div>
266272

pkg/shell/nav.scss

+11-7
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,9 @@ $desktop: $phone + 1px;
219219
}
220220

221221
.header {
222-
border-inline-start: 1px solid var(--pf-v5-global--BackgroundColor--dark-100);
223-
background: linear-gradient(to right, var(--pf-v5-global--BackgroundColor--dark-100) -1rem, var(--pf-v5-global--BackgroundColor--dark-300) 1rem);
222+
// border-inline-start: 1px solid var(--pf-v5-global--BackgroundColor--dark-100);
223+
// background: linear-gradient(to right, var(--pf-v5-global--BackgroundColor--dark-100) -1rem, var(--pf-v5-global--BackgroundColor--dark-300) 1rem);
224+
background-color: var(--pf-t--global--background--color--tertiary--default);
224225

225226
.credential-unlocked {
226227
/* AAA contrast: simulate #a1a1a1 on #151515 */
@@ -235,7 +236,7 @@ $desktop: $phone + 1px;
235236
// }
236237

237238
.ct-switcher {
238-
background-color: var(--pf-t--global--background--color--control--default);
239+
background-color: var(--pf-t--global--background--color--secondary--default);
239240
.pf-v6-c-select__toggle-wrapper {
240241
display: flex;
241242
}
@@ -379,6 +380,7 @@ $desktop: $phone + 1px;
379380

380381
> .pf-v6-c-select {
381382
block-size: 100%;
383+
padding: 0;
382384

383385
.pf-v6-c-select__toggle-text {
384386
text-align: start;
@@ -627,7 +629,7 @@ $desktop: $phone + 1px;
627629
// Rework navigation toggles in desktop and (especially) mobile modes
628630
.super-user-indicator > button,
629631
.ct-nav-toggle:not(.pf-v6-c-menu) {
630-
color: var(--pf-v5-global--Color--light-100) !important;
632+
// color: var(--pf-v5-global--Color--light-100) !important;
631633
background: transparent !important;
632634
// The normal margin to the right of the select dropdown makes them look uncentered in the masthead.
633635
// https://github.com/patternfly/patternfly/issues/6632
@@ -640,7 +642,7 @@ $desktop: $phone + 1px;
640642
&:hover, &:active, &.active, &.interact, &[aria-expanded="true"] {
641643
text-decoration: none;
642644
// approximate --pf-v5-global--BackgroundColor--dark-400, but with opacity
643-
background: rgb(249 252 255 / 32%) !important;
645+
background: var(--pf-t--global--background--color--secondary--hover) !important;
644646

645647
.hostname {
646648
text-decoration: underline;
@@ -733,8 +735,10 @@ $desktop: $phone + 1px;
733735
// Mobile sizes
734736
@media (max-width: $phone) {
735737
#host-toggle,
736-
#nav-system-item,
737-
button.ct-nav-toggle {
738+
button.ct-nav-toggle,
739+
#nav-system-item > .pf-v6-c-button__text {
740+
// Remove gap between text and icon
741+
--pf-v6-c-menu-toggle--Gap: 0;
738742
// Stretch to navbar
739743
block-size: 100%;
740744
// Don't stretch to fill content; make optimal width same as height

pkg/shell/shell.scss

+7-12
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@
2727
@import "@patternfly/patternfly/components/Icon/icon.css";
2828

2929
:root {
30-
--ct-color-host-accent: var(--pf-v5-global--active-color--100);
31-
--ct-topnav-background: var(--pf-v5-global--BackgroundColor--dark-100);
30+
--ct-color-host-accent: var(--pf-t--global--color--brand--default);
31+
--ct-topnav-background: var(--pf-t--global--background--color--secondary--default);
3232
}
3333

3434
#shell {
3535
block-size: 100%;
3636
}
3737

38-
.pf-v6-theme-dark {
39-
--ct-topnav-background: var(--pf-v5-global--BackgroundColor--dark-200);
40-
}
38+
// .pf-v6-theme-dark {
39+
// --ct-topnav-background: var(--pf-v5-global--BackgroundColor--dark-200);
40+
// }
4141

4242
/* Hacks on top for now */
4343

@@ -126,7 +126,7 @@ $desktop: $phone + 1px;
126126
// (including the accent line)
127127

128128
.pf-v6-c-masthead {
129-
--pf-v5-c-masthead--BackgroundColor: transparent;
129+
--pf-v6-c-masthead--BackgroundColor: transparent;
130130
}
131131

132132
.pf-v6-c-toolbar {
@@ -168,7 +168,7 @@ $desktop: $phone + 1px;
168168

169169
// Remove excess padding from masthead in mobile
170170
.pf-v6-c-masthead {
171-
--pf-v5-c-masthead--inset: 0;
171+
--pf-v6-c-masthead--inset: 0;
172172
}
173173
}
174174

@@ -193,11 +193,6 @@ $desktop: $phone + 1px;
193193
> .header {
194194
// Shadow to the left, Line on top, Base color (with subtle glow)
195195
background: linear-gradient(
196-
to right,
197-
var(--ct-topnav-background) -1rem,
198-
transparent 1rem
199-
),
200-
linear-gradient(
201196
to bottom,
202197
var(--ct-color-host-accent),
203198
var(--ct-color-host-accent) 0.1875rem,

0 commit comments

Comments
 (0)