//
// Component: Tab
//
// ========================================================================


// Variables
// ========================================================================

//
// New
//

@tab-box-shadow:                                none;


// Component
// ========================================================================

.hook-tab() when not (@tab-box-shadow = none) {

    &::before {
        box-shadow: @tab-box-shadow;
    }

}


// Items
// ========================================================================

.hook-tab-item() {}

.hook-tab-item-hover() {}

.hook-tab-item-active() {}

.hook-tab-item-disabled() {}


// Position modifiers
// ========================================================================

.hook-tab-bottom() {}

.hook-tab-bottom-item() {}

.hook-tab-left() {}

.hook-tab-left-item() {}

.hook-tab-right() {}

.hook-tab-right-item() {}


// Miscellaneous
// ========================================================================

.hook-tab-misc() {}


// Inverse
// ========================================================================

@inverse-tab-box-shadow:                        none;

.hook-inverse-tab() when not (@tab-box-shadow = none) {

    &::before { box-shadow: @inverse-tab-box-shadow; }

}

.hook-inverse-tab-item() {}
.hook-inverse-tab-item-hover() {}
.hook-inverse-tab-item-active() {}
.hook-inverse-tab-item-disabled() {}
