HEX
Server: Apache
System: Linux shared178.accountservergroup.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User: somesolu (2995)
PHP: 8.2.33
Disabled: NONE
Upload Files
File: /home3/somesolu/public_html/wp-content/themes/pillar/style/css/less_framework/tabs.less
// MARKUP:
//
// <ul class="tabs">
//   <li class="active || not">
//     <div class="tab__title">
//       ...
//     </div>
//     <div class="tab__content">
//       ...
//     </div>
//   </li>
// </ul>
//
// MODIFIERS:
// .active - place this class on the tab you want initially to be open.

.tabs{
	display: block;
	margin-bottom: 0;
	
	> li{
		display: inline-block;
		opacity: .5;
		.transition(0.3s,ease);
		.disable-select;
	}
	> .active, &:hover{
		opacity: 1;
	}
	.tab__title{
		cursor: pointer;
		&:not(.btn){
			padding: @tab-title-padding;
		}
	}
	li:first-child{
		.tab__title{
			&:not(.btn){
				padding-left: 0;
			}	
		}
	}	
	.tab__content{
		display: none;
	}
}

.tabs-content{
	margin-top: 1em;
	li > .tab__content{
		display: none;
	}
	> .active{
		> .tab__content{
			display: block;
		}
	}
}