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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.