From Dark and Darker Wiki

< Template:TabToggle

(Adding opacity to TabToggle borders.)
(Testing opacity.)
 
Line 1: Line 1:
.tab{
.tab{
color: rgba(231,159,52,0.5);
color: rgba(231,159,52,0.1);
margin:2px 2px 2px 2px;
margin:2px 2px 2px 2px;
border-radius: 5px !important;
border-radius: 5px !important;

Latest revision as of 03:43, 18 September 2024

.tab{
	color: rgba(231,159,52,0.1);
	margin:2px 2px 2px 2px;
	border-radius: 5px !important;
	border: 1px solid white !important;
	padding:2px 2px;
	user-select:none;
}

.tab:hover,
.tab:focus{
	color: rgb(241,185,62);
	text-decoration: underline;
}

.selected-tab{
	color: rgb(241,185,62);
	box-shadow: 0px 0px 10px rgb(241,185,62);
}

/* [[Category:Template stylesheets]] */