-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
port-changes - frozen columns #1
base: main
Are you sure you want to change the base?
Changes from 8 commits
75851b7
4244830
042ac99
6cef148
b431e54
249c111
72028d5
2ab2c16
a58c40f
6049589
b8ae53f
876a7e0
7867829
2220b8c
0a53eaf
1f41abc
209c687
af5477b
64a1ef2
f132378
ea384f7
d070667
bd3df0b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,9 +45,11 @@ const root = css` | |
--rdg-selection-color: #66afe9; | ||
--rdg-font-size: 14px; | ||
--rdg-cell-frozen-box-shadow: 2px 0 5px -2px rgba(136, 136, 136, 0.3); | ||
--rdg-cell-right-frozen-box-shadow: -2px 0 5px -2px rgba(136, 136, 136, 0.3); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just check if we can override it in the frontend app, so we can apply theming if needed (needed for dark theme already) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've checked and we can, you can take a look at |
||
&:dir(rtl) { | ||
--rdg-cell-frozen-box-shadow: -2px 0 5px -2px rgba(136, 136, 136, 0.3); | ||
--rdg-cell-right-frozen-box-shadow: 2px 0 5px -2px rgba(136, 136, 136, 0.3); | ||
} | ||
display: grid; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ export function stopPropagation(event: React.SyntheticEvent) { | |
|
||
export function scrollIntoView(element: Maybe<Element>) { | ||
element?.scrollIntoView({ inline: 'nearest', block: 'nearest' }); | ||
// element?.scrollIntoView({ inline: 'center', block: 'nearest' }); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Clean |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's do duplication of 2/4 (so let's use 4px or 6px here)