How do I make the "last edited by" line fade-out like it does on the Atlassian pages?

Kevin Morris May 27, 2015

Atlassian fade-out the 'last edited by' section and show them when you hover the mouse under the title. Is there a way I can make it like that for my pages in Confluence Cloud?

 

Thanks,

Kevin

1 answer

1 accepted

1 vote
Answer accepted
Stephen Deutsch
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 28, 2015

Unfortunately, Confluence Cloud until now only supports custom CSS on a page-by-page basis (i.e. using the CSS Stylesheet macro in a page).  If you want, you could include this by using the following CSS:

.page-metadata 
{
  opacity            : 0;
  transition         : opacity .25s ease-in-out;
  -moz-transition    : opacity .25s ease-in-out;
  -webkit-transition : opacity .25s ease-in-out;
}

.page-metadata:hover 
{
  opacity       : 1.0;
}

If you were really determined to add it to all pages (or for a whole space space), you could use the API to add it to multiple pages, but that seems a bit like overkill.

Kevin Morris May 28, 2015

You beautiful beast thank you!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events