Skip to content

Commit

Permalink
fix: remove unused css & small changes (#3599)
Browse files Browse the repository at this point in the history
  • Loading branch information
OliwiaGowor authored Jan 17, 2025
1 parent 6d117d1 commit af4f19f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 20 deletions.
17 changes: 0 additions & 17 deletions src/components/App/ContentWrapper/ContentWrapper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,3 @@
.content-scroll {
height: 100%;
}

html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar {
background-color: #fff;
}

html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar-corner {
background-color: #fff;
}

html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar-thumb {
border-radius: 0.75rem;
border: 0.125rem solid #fff;
}

html.sap-desktop:not(.sapUiNativeScrollbars) ::-webkit-scrollbar-thumb {
background-color: #7b91a8;
}
2 changes: 1 addition & 1 deletion src/shared/components/GenericList/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const DefaultRowRenderer = ({
);

return (
<TableRow type="Active" selected={isSelected}>
<TableRow type="Active" selected={isSelected} navigated={isSelected}>
{cells}
{!!actions.length && actionsCell}
{displayArrow && (
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Spinner/Spinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { BusyIndicator } from '@ui5/webcomponents-react';

type SpinnerProps = {
ariaLabel?: string;
size?: 'L' | 'M' | 'S';
size?: 'S' | 'M' | 'L';
center?: boolean;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ context('Test navigation features', () => {
cy.contains('ui5-text', 'system:controller:cronjob-controller').click();

cy.getMidColumn()
.contains('ui5-Panel', 'Subjects')
.contains('ui5-panel', 'Subjects')
.contains('ui5-link', 'cronjob-controller')
.click();

Expand Down

0 comments on commit af4f19f

Please sign in to comment.