-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Fix dark theme issues with spy toggle and spy pane #13345
Fix dark theme issues with spy toggle and spy pane #13345
Conversation
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.
My guess, looking at this .less file is that @cjcenizal would probably prefer you do this in the ui_framework itself over here...
https://github.com/elastic/kibana/blob/master/ui_framework/components/icon/_icon.scss
You can use the @include darkTheme
mixin to apply the value. You can see a similar application in the button.scss file.
src/ui/public/styles/dark-theme.less
Outdated
@@ -254,6 +254,14 @@ | |||
// /src/ui/public/visualize/visualize.less | |||
.visualize-show-spy { | |||
border-top-color: @visualize-show-spy-border; | |||
|
|||
.kuiIcon { |
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.
This one specifically.
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.
Ah, good point, and done!
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.
Solid.
* Fix dark theme issues with spy toggle and spy pane * Port dark theme portion of styling kuiIcon into uiFramework library
* Fix dark theme issues with spy toggle and spy pane * Port dark theme portion of styling kuiIcon into uiFramework library
* Fix dark theme issues with spy toggle and spy pane * Port dark theme portion of styling kuiIcon into uiFramework library
Fixes #13325 and #12181
Before:
After: