Skip to content
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

Improve Tabulator editor text color in Fast theme #6512

Merged
merged 1 commit into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ repos:
rev: v4.0.0-alpha.8
hooks:
- id: prettier
entry: prettier --write --ignore-unknown --no-error-on-unmatched-pattern
types_or: [css]
- repo: https://github.com/shssoichiro/oxipng
rev: v8.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,14 @@
.tabulator-row.tabulator-selectable:hover a {
color: var(--foreground-on-accent-rest);
}
.tabulator-row.tabulator-selectable:hover .tabulator-cell.tabulator-editing input,
.tabulator-row.tabulator-selectable:hover .tabulator-cell.tabulator-editing select {
color: var(--foreground-on-accent-rest);
}
.tabulator-row.tabulator-selected .tabulator-cell.tabulator-editing input,
.tabulator-row.tabulator-selected .tabulator-cell.tabulator-editing select {
color: var(--foreground-on-accent-rest);
}
.tabulator-row.tabulator-row-moving {
border: 1px solid #000;
background: #fff;
Expand Down
Loading