Remove Edit Control Region Arrows
Hi,
In order to keep our viewer simple, I have removed the Edit Control Region from a number of the tools, through the toolbar editor. This is fine, except that the remaining tools still have the little pointer when selected. How can I remove this?
Version 4.10.0 & 2.11.0

Thanks
Carl
0
-
Hello Carl,
I was trying to figure out how to change the color of that arrow for months! I finally figured it out just a month or two ago. If you insert the code below in the Desktop CSS file for that site, it should make the arrow transparent so that it looks like it's not there..toolbar-item.transient-active:after { border-left-color: #ffffff00; } .toolbar-item.transient-active:before { border-left-color: #ffffff00; }Hope this helps!
Denise0 -
Hi Denise,
Thank you! That has done the trick.
Carl0 -
Curses, I spoke to soon. I've just realised that, although this worked in Chrome, the arrows are still visible in IE11. Any ideas?
Thanks.0 -
Carl,
You're right! The developer tools are so handy in Chrome that I sometimes forget to test in other browsers! I played around with it some more, and the following code works for me in Chrome, IE, and Edge. For some reason IE and Edge don't seem to like hex values for transparency.
.toolbar-item.transient-active:before {
border-left-color: rgba(136, 183, 213, 0);
}
.toolbar-item.transient-active:after {
border-left-color: rgba(136, 183, 213, 0);
}
Hope this helps!
Denise0 -
Hi Denise,
You're a genius. Thanks again.
Carl0
Du måste logga in om du vill lämna en kommentar.
Kommentarer
5 kommentarer