Please make Chart Plots not be selectable by mouse pointer

After Update to FTL, when I somtetimes click on the key of the chart to filter the output, and I click again to see full output again, the whole chart gets selected.

There is already a css-rule to make the colored tiles not selectable:

.small-box {
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */

	/* Rules below not implemented in browsers yet */
	-o-user-select: none;
	user-select: none;
}

So it would be better to use if you could add the .chart selector to this rule.

The Site Feedback category is for feedback on this forums, not the Pi-hole dashboard. I moved it to feature requests. If you have some working code, please also consider making it into a pull request.

I don't know how to do this because i am not worked in github yet.

As I see in code, the stylesheet to change is stored in /style/pi-hole.css.
There should be added the .chart selector to the user-select: none -Rules.

After change the rule should look like this:

.small-box,
.chart {
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */

    /* Rules below not implemented in browsers yet */
-o-user-select: none;
user-select: none;
}

That's all and would solve my issue.
Thx.

Implemented.