Best Answer

More CSS Games - Hiding the shareable link icon via CSS

  • 17 September 2021
  • 1 reply
  • 111 views

Userlevel 7
Badge +6

Hi folks,

So we are going to leverage some of the deeplink aspects of courses and I wanted to check if anyone has figured out how to hide this one via CSS.

Anyone figure out how to hide these?

That may sound counter-intuitive? But we have some concerns with the chain of custody with these links. Hiding them gives us the benefit of pushing with finess...and using the deeplinks in notifications from Docebo and aspects of the intranet our learning team will own.

icon

Best answer by nick.tosto 17 September 2021, 16:15

View original

1 reply

Userlevel 6
Badge +1

@dklinger I believe this CSS code should hide the Share button:
 

#doc-layout-action-buttons button[aria-label="Get shareable link"]{
display: none;
}

 

Reply