Fandom Developers Wiki
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* General code */
.tabs__caption {
	display: flex;
	list-style: none !important;
	margin: 0 !important;
}
.tabs__caption .active {
	color: var(--theme-link-color);
	border-bottom: solid 3px var(--theme-link-color);
}
.tabs__caption li {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 12px;
	padding: 5px 10px 8px !important;
	padding: 5px;
}
.tabs__caption li:not(.active) {
	cursor: pointer !important;
}
.tabs__content {
	display: none;
}
.tabs__content.active {
	display: block !important;
}

/* Vertical Tabber */
.vertical .tabs__caption {
  float: left;
  display: block;
}
.vertical .tabs__content {
  overflow: hidden;
}
.vertical .tabs__caption li {
	border-bottom: none;
	border-right: 3px solid transparent;
	text-align: right;
}
.vertical .tabs__caption .active {
	border-bottom: none;
	border-right: 3px solid var(--theme-link-color);
}
.vertical .tabs__content.active {
	padding-left: 10px;
}
Advertisement