Closed raphaelcastaneda closed 1 year ago
The dashboard plugin applies the theme accent color to the stroke and fill attributes of svg text. This <style> declaration is marked as !important, so it overrides other styles and plugins.
stroke
fill
svg text
<style>
!important
In particular, this conflict affects the graph produced by https://plugins.octoprint.org/plugins/plotlytempgraph/
This PR simply adds a scope (the top level dashboardContainer) to the css selector so it applies only to this plugin's html.
dashboardContainer
The dashboard plugin applies the theme accent color to the
stroke
andfill
attributes ofsvg text
. This<style>
declaration is marked as!important
, so it overrides other styles and plugins.In particular, this conflict affects the graph produced by https://plugins.octoprint.org/plugins/plotlytempgraph/
This PR simply adds a scope (the top level
dashboardContainer
) to the css selector so it applies only to this plugin's html.