-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Fix. Quickgrid PropertyColumn Align property doesn't work with Align.Right #62707
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
Changes from 1 commit
7508ab0
39c3263
dc46169
0225c91
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 |
|---|---|---|
|
|
@@ -51,11 +51,6 @@ th ::deep .col-options-button { | |
| z-index: 1; | ||
| } | ||
|
|
||
| .col-justify-end .col-options { | ||
| left: unset; | ||
| right: 0; | ||
| } | ||
|
|
||
| .col-width-draghandle { | ||
| position: absolute; | ||
| top: 0; | ||
|
|
@@ -76,10 +71,32 @@ td.col-justify-center { | |
| text-align: center; | ||
| } | ||
|
|
||
| .col-justify-end .col-options { | ||
| left: unset; | ||
| right: 0; | ||
| } | ||
|
|
||
| td.col-justify-end { | ||
| text-align: right; | ||
| } | ||
|
|
||
| .col-justify-start .col-options { | ||
| left: 0; | ||
| right: unset; | ||
| } | ||
|
|
||
| td.col-justify-start { | ||
| text-align: left; | ||
|
Member
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. Shouldn't this use
Contributor
Author
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. We use in .col-justify-end { text-align: right }. So I just did this class by the same pattern as an existing class.
Member
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. hmm. Maybe I'm not fully understanding how this works. But the |
||
| } | ||
|
|
||
| td.col-justify-right { | ||
| text-align: right; | ||
| } | ||
|
|
||
| td.col-justify-left { | ||
| text-align: left; | ||
| } | ||
ilonatommy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| /* Unfortunately we can't use the :dir pseudoselector due to lack of browser support. Instead we have to rely on | ||
| the developer setting <html dir="rtl"> to detect if we're in RTL mode. */ | ||
| html[dir=rtl] td.col-justify-end { | ||
|
|
@@ -91,6 +108,10 @@ html[dir=rtl] .col-options { | |
| right: 0; | ||
| } | ||
|
|
||
| html[dir=rtl] td.col-justify-start { | ||
| text-align: right; | ||
| } | ||
|
|
||
| html[dir=rtl] .col-justify-end .col-options { | ||
| right: unset; | ||
| left: 0; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.