-
Notifications
You must be signed in to change notification settings - Fork 28
Improve table styles #2197
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 table styles #2197
Conversation
* add vscode prefix to `--checkbox-border` * keep cell spinners and unselected circles the same bg color as cells
sroy3
left a comment
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.
Should we change the border to be the same as the row background as well?
Apologies, I'm not sure what border you're referring to? |
Oh, I see what you're saying! I'll need to rethink this solution a bit more. Now that I'm looking at things a second time, I just noticed that our checkboxes are not visible on the default theme on hover as well: We may need to rethink our hover background colors again 😅 |
* top sticky exp column from losing opacity on hover * properly fix colors on spinners and bullets
|
I think things like this should be fixed, folks. Unless I'm missing something and it's an actual edge case (e.g. there are places in VS Code with this theme where it breaks the interface). I'm not sure why is it happening btw. @julieg18 could you give a bit more details. What variable do we use for background that causes this? In what case (hover, active, etc?) |
The PR does indeed fix this bug if I wasn't clear before (I'll go ahead and add an extra video, showcasing this)! Here's how things look now: As for why it's happening, the variable we are using for row hover is called I fixed the issue by keeping the background of the column the same color as the table (a color that is never transparent) and used an absolute |
|
Good, thanks @julieg18 ! |
| $watermark-color: var(--vscode-descriptionForeground); | ||
|
|
||
| $border-color: var(--checkbox-border); | ||
| $border-color: var(--vscode-checkbox-border); |
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.
There is at least one more of these in this file. --button-primary-background
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.
Weird, that variable actually doesn't have a vscode prefixed version 🤔
|
Code Climate has analyzed commit 093905a and detected 0 issues on this pull request. The test coverage on the diff in this pull request is 100.0% (85% is the threshold). This pull request will bring the total coverage in the repository to 96.7% (0.0% change). View more on Code Climate. |
Fixed! |






1/2
main<- this <- #2198--checkbox-bordervariableExample of cell spinners and unselected circles
Screen.Recording.2022-08-16.at.11.02.58.AM.mov
Example of now fully opaque experiment column
Screen.Recording.2022-08-16.at.12.55.31.PM.mov
Followup to #2133