Zum Hauptinhalt gehen

Remove Edit Control Region Arrows

Kommentare

5 Kommentare

  • Denise Beckham
    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!

     

    Denise
    0
  • Permanently deleted user
    Hi Denise,

     

    Thank you! That has done the trick.

     

    Carl
    0
  • Permanently deleted user
    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
  • Denise Beckham
    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!

     

    Denise
    0
  • Permanently deleted user
    Hi Denise,

     

    You're a genius. Thanks again.

     

    Carl
    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.