Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Purpose

My tabs appear white.

Answer

Note

The following code only applies to Composition 3.3.1 and below. It will not work with Composition 4.0.0 and above.

This is the result of the use of Documentation Theme. Steps to remedy:

  1. Go to the space having this problem.

  2. Browse > Space Admin.

  3. Stylesheet > Edit.

  4. Insert the following and save:

Code Block
.panel, #content .panel { 
border: 1px solid #6699CC; 
background-color: white; 
} 

.tab-navigation .tab a { 
border: 1px solid #6699CC; 
background-color: #6699CC; 
color: #FFFFFF; 
} 

.tab-navigation .tab a:hover { 
border: 1px solid #6699CC; 
background-color: #003366; 
color: #FFFFFF; 
} 

ul.tab-navigation .current a { 
border: 1px solid #6699CC; 
background-color: #FFFFFF; 
border-color-bottom: #FFFFFF; 
color: #000000; 
} 

ul.tab-navigation .tab a:hover { 
border: 1px solid #6699CC; 
background-color: #003366; 
color: #FFFFFF; 
}

.deck table.confluenceTable th.confluenceTh, .deck table.confluenceTable td.confluenceTd {
border: 1px solid #CCCCCC;
}

.deck-card {
background-color: white;
border-radius: 5px 5px 5px 5px;
}

.panel {
background-color: white;
}

...