Skip to content

Commit c7d3c1e

Browse files
authored
Fleet UI: Fix some unreleased bugs for 4.75 (#34098) (#34192)
1 parent 4e539e5 commit c7d3c1e

File tree

7 files changed

+28
-9
lines changed

7 files changed

+28
-9
lines changed

frontend/components/top_nav/SiteTopNav/_styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
display: flex;
3030
align-items: center;
3131
gap: $pad-small;
32-
color: $core-fleet-white;
32+
color: $ui-fleet-black-75;
3333
font-weight: $regular;
3434
font-size: $xxx-small;
3535
cursor: default;

frontend/pages/ManageControlsPage/OSSettings/cards/CustomSettings/_styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
display: none;
1111
}
1212
:hover:not(.component__tooltip-wrapper__tip-text):not(.custom-link--tooltip-link) {
13-
background-color: $ui-fleet-black-10;
13+
background-color: $ui-off-white;
1414
.list-item__labels {
1515
display: none;
1616
}

frontend/pages/ManageControlsPage/OSSettings/cards/CustomSettings/components/ProfileListItem/_styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
&--count {
3030
align-self: center;
3131
color: $ui-fleet-black-75;
32+
font-size: $x-small; // Remove when global default font is implemented
3233
}
3334
}
3435

frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareInstallerCard/InstallerDetailsWidget/_styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
display: flex;
2121
gap: $pad-xsmall;
2222
font-size: $xx-small;
23+
align-items: center;
2324
}
2425

2526
&__sha256 {

frontend/pages/admin/IntegrationsPage/cards/MdmSettings/AppleBusinessManagerPage/components/AppleBusinessManagerTable/AppleBusinessManagerTableConfig.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,13 @@ export const generateTableConfig = (
167167
<GitOpsModeTooltipWrapper
168168
position="left"
169169
renderChildren={(disableChildren) => (
170-
<div className={disableChildren ? "disabled-by-gitops-mode" : ""}>
170+
<div
171+
className={
172+
disableChildren
173+
? "disabled-by-gitops-mode abm-actions-wrapper"
174+
: "abm-actions-wrapper"
175+
}
176+
>
171177
<ActionsDropdown
172178
options={generateActions()}
173179
onChange={(value: string) =>

frontend/pages/admin/IntegrationsPage/cards/MdmSettings/AppleBusinessManagerPage/components/AppleBusinessManagerTable/_styles.scss

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,44 @@
11
.apple-business-manager-table {
2-
32
.data-table-block .data-table {
43
td.apple_id__cell {
54
max-width: 180px;
65
}
76

8-
td.macos_team__cell, td.ios_team__cell, td.ipados_team__cell {
7+
td.macos_team__cell,
8+
td.ios_team__cell,
9+
td.ipados_team__cell {
910
max-width: 150px;
1011
}
11-
}
1212

13+
td.actions__cell {
14+
.abm-actions-wrapper {
15+
display: flex;
16+
align-items: center;
17+
}
18+
}
19+
}
1320

1421
// The desired behavior is to hide the header and team cell one by one
1522
// as the viewport gets smaller. This is achieved by using the max-width
1623
// media query with the breakpoint values taken from when the table content
1724
// starts to overflow.
1825
@media (max-width: $break-lg) {
19-
.ipados_team__header, .ipados_team__cell {
26+
.ipados_team__header,
27+
.ipados_team__cell {
2028
display: none;
2129
}
2230
}
2331

2432
@media (max-width: 1230px) {
25-
.ios_team__header, .ios_team__cell {
33+
.ios_team__header,
34+
.ios_team__cell {
2635
display: none;
2736
}
2837
}
2938

3039
@media (max-width: $break-md) {
31-
.macos_team__header, .macos_team__cell {
40+
.macos_team__header,
41+
.macos_team__cell {
3242
display: none;
3343
}
3444
}

frontend/pages/hosts/details/cards/HostSummary/_styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@
1616

1717
.data-set dd {
1818
overflow: initial;
19+
gap: $pad-xsmall; // Future iteration: Consider global gap to for data sets
1920
}
2021
}

0 commit comments

Comments
 (0)