Custom CSS to prevent bullets from turning into + on hover

image

image

I admit I’m not the smartest person, but to this day I get confused by the magnifying glass and plus sign, and sit there for a half-second all

I like the functionality as it is, I just don’t want the icon changing any more. The pregnant bullet already tells me it will expand, but the + sign throws me for a split second every time. I can’t explain it. I just want to fix it.

Nevermind I figured it out

.Node-self.is-collapsed.is-parent > .Node-bullet:before {
  content: "\e90c";
}
.AppContainer:not(.is-using-bullet-to-zoom) .Node-self.is-parent.is-collapsed.is-hovering > .Node-bullet:before {
  content: "\e90c";
}
.AppContainer:not(.is-using-bullet-to-zoom) .Node-self.is-parent.is-hovering > .Node-bullet:before {
  content: "\e90c";
}

The trick is see whats blinking in Developer tools then find that div class in the css file in Sources and mess with it.

1 Like