mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
actionListRows
This commit is contained in:
parent
ff256788e5
commit
c290c3bb47
|
@ -23,6 +23,7 @@ import ActionListRow from './ActionListRow';
|
||||||
import ActionListHeader from './ActionListHeader';
|
import ActionListHeader from './ActionListHeader';
|
||||||
import {
|
import {
|
||||||
actionListCss,
|
actionListCss,
|
||||||
|
actionListRowsCss,
|
||||||
actionListWideCss,
|
actionListWideCss,
|
||||||
} from './utils/createStylingFromTheme';
|
} from './utils/createStylingFromTheme';
|
||||||
|
|
||||||
|
@ -168,7 +169,7 @@ export default function ActionList<A extends Action<string>>({
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
data-testid="actionListRows"
|
data-testid="actionListRows"
|
||||||
{...styling('actionListRows')}
|
css={actionListRowsCss}
|
||||||
ref={setNodeRef}
|
ref={setNodeRef}
|
||||||
>
|
>
|
||||||
<DndContext
|
<DndContext
|
||||||
|
|
|
@ -99,11 +99,9 @@ export const actionListHeaderCss: Interpolation<Theme> = (theme) => ({
|
||||||
borderColor: colorMap(theme).LIST_BORDER_COLOR,
|
borderColor: colorMap(theme).LIST_BORDER_COLOR,
|
||||||
});
|
});
|
||||||
|
|
||||||
const getSheetFromColorMap = (map: ColorMap) => ({
|
export const actionListRowsCss = css({ overflow: 'auto' });
|
||||||
actionListRows: {
|
|
||||||
overflow: 'auto',
|
|
||||||
},
|
|
||||||
|
|
||||||
|
const getSheetFromColorMap = (map: ColorMap) => ({
|
||||||
actionListHeaderSelector: {
|
actionListHeaderSelector: {
|
||||||
display: 'inline-flex',
|
display: 'inline-flex',
|
||||||
'margin-right': '10px',
|
'margin-right': '10px',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user