-
Notifications
You must be signed in to change notification settings - Fork 529
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
834a0a2
commit 9d2ae92
Showing
6 changed files
with
84 additions
and
72 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
packages/suite-base/src/components/ExtensionsSettings/Index.style.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// SPDX-FileCopyrightText: Copyright (C) 2023-2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)<[email protected]> | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
import { makeStyles } from "tss-react/mui"; | ||
|
||
export const useStyles = makeStyles()((theme) => ({ | ||
listItemButton: { | ||
"&:hover": { color: theme.palette.primary.main }, | ||
}, | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// SPDX-FileCopyrightText: Copyright (C) 2023-2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)<[email protected]> | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
import { makeStyles } from "tss-react/mui"; | ||
|
||
export const useStyles = makeStyles()((theme) => ({ | ||
filterStartAdornment: { | ||
display: "flex", | ||
}, | ||
filterBar: { | ||
top: 0, | ||
zIndex: theme.zIndex.appBar, | ||
padding: theme.spacing(0.5), | ||
position: "sticky", | ||
backgroundColor: theme.palette.background.paper, | ||
}, | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
packages/suite-base/src/components/TopicList/TopicList.style.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// SPDX-FileCopyrightText: Copyright (C) 2023-2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)<[email protected]> | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
import { makeStyles } from "tss-react/mui"; | ||
|
||
export const useStyles = makeStyles()((theme) => ({ | ||
root: { | ||
width: "100%", | ||
height: "100%", | ||
overflow: "hidden", | ||
display: "flex", | ||
flexDirection: "column", | ||
containerType: "inline-size", | ||
}, | ||
filterBar: { | ||
top: 0, | ||
zIndex: theme.zIndex.appBar, | ||
padding: theme.spacing(0.5), | ||
position: "sticky", | ||
backgroundColor: theme.palette.background.paper, | ||
}, | ||
skeletonText: { | ||
marginTop: theme.spacing(0.5), | ||
marginBottom: theme.spacing(0.5), | ||
}, | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters