Sometimes it's hard to read a lot of data in a table. Is there a way to alternate the row color to something like default white and a really light grey?
For that the best way could be apply CSS to global. Insert this:
table.confluenceTable td.confluenceTd.highlight-grey { background-color: #909090; }
we have created our own UI plugin, which basically overwrites some of the default CSS.
cheap but powerfull. Might work for you too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here's how...UPVOTE to get more traction on this feature request:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the Table Plus Macro. See Styling Table Rows.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I realize this would work, but it feels wrong to me that the creator or the commercial product would be blatantly advertising it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I disagree, I think most people on this forum appreciate ideas for solving their problems with whatever is available (built-in, free, or commercial) and they can choose to ignore commercial solutions if they want. More-over a lot of people who already own the add-on find out about features they may not be aware of.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, confluence cloud doesn't allow you to set custom CSS. But, if you want to at least see it in your browser, you could run the following command in your javascript console:
$("tr:nth-child(even)").css({"background": "rgb(250,250,250)"});
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually, Confluence Cloud now sort of lets you set CSS globally. If you change the Global/Space Look and Feel, you can insert the following in the header/footer:
{css}.confluenceTable tr:nth-child(2n+3) {background: rgb(250,250,250)}{css}
This will also work in Confluence Server if you have the Content Formatting Macros installed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.