Skip to content

Commit af4f19f

Browse files
authored
fix: remove unused css & small changes (#3599)
1 parent 6d117d1 commit af4f19f

File tree

4 files changed

+3
-20
lines changed

4 files changed

+3
-20
lines changed

src/components/App/ContentWrapper/ContentWrapper.scss

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,3 @@
1212
.content-scroll {
1313
height: 100%;
1414
}
15-
16-
html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar {
17-
background-color: #fff;
18-
}
19-
20-
html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar-corner {
21-
background-color: #fff;
22-
}
23-
24-
html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar-thumb {
25-
border-radius: 0.75rem;
26-
border: 0.125rem solid #fff;
27-
}
28-
29-
html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar-thumb {
30-
background-color: #7b91a8;
31-
}

src/shared/components/GenericList/components.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const DefaultRowRenderer = ({
137137
);
138138

139139
return (
140-
<TableRow type="Active" selected={isSelected}>
140+
<TableRow type="Active" selected={isSelected} navigated={isSelected}>
141141
{cells}
142142
{!!actions.length && actionsCell}
143143
{displayArrow && (

src/shared/components/Spinner/Spinner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { BusyIndicator } from '@ui5/webcomponents-react';
22

33
type SpinnerProps = {
44
ariaLabel?: string;
5-
size?: 'L' | 'M' | 'S';
5+
size?: 'S' | 'M' | 'L';
66
center?: boolean;
77
};
88

tests/integration/tests/cluster/test-navigation-features.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ context('Test navigation features', () => {
4545
cy.contains('ui5-text', 'system:controller:cronjob-controller').click();
4646

4747
cy.getMidColumn()
48-
.contains('ui5-Panel', 'Subjects')
48+
.contains('ui5-panel', 'Subjects')
4949
.contains('ui5-link', 'cronjob-controller')
5050
.click();
5151

0 commit comments

Comments
 (0)