Perspective symbol modification with stylesheet

Hi,

Would it be possible to delete the following part of a motor symbol with some css code in the stylesheet?
This object has a domId = motorDevice
image
i've try that code to see if i could alter the first child fill value since when anylse the class in chrome this part is the first inside the class. but nothing help
image

thanks in advance for your help

Arnaud

Man that little stub is very pesky... Not sure if this is the best way to do it, but I selected using the svg path, like so:

#motorDevice .motor_motor_details path[d="M102,23h-17v10h17Z"]{
	fill: none;
}

You can exclude the .motor_motor_details class and it still works, but in my mind, a class selector will help narrow down the search of the attribute selector so it may be more efficient, but that's splitting hairs.

2 Likes

That's it, thank you @YF129701.
Just to add something with fill:none; it will make it unvisible but you will have a blank space between the motor and the border
if you wan to delete it just use d:none; instead.

1 Like