Socket
Socket
Sign inDemoInstall

bootstrap-4-vertical-tabs

Package Overview
Dependencies
3
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bootstrap-4-vertical-tabs

Responsive vertical tabs navigation component for Bootstrap 4


Version published
Weekly downloads
5
decreased by-16.67%
Maintainers
1
Install size
5.37 MB
Created
Weekly downloads
 

Readme

Source

Responsive Vertical Navigation Tabs for Boostrap 4

Build Status

New! 💥

If you use Bootstrap 5, a new package is available for that: bootstrap-5-vertical-tabs

A stylesheet that implements vertically-oriented navigation tabs with Bootstrap 4.

screenshot

This package was inspired by the original bootstrap vertical tabs.

However, that package does not work with Bootstrap 4.

Installation

This package depends on Bootstrap 4, so it is assumed that you already have it installed and/or included in your HTML.

You can use this package either by directly embedding its pre-built stylesheet in your HTML after the boostrap styles like this:

<link
    rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/bootstrap-4-vertical-tabs@1.0.6/dist/b4vtabs.min.css"
    integrity="9nf7vjTEqs0CUpWVZcqp16sbMg+W077uMBNDUJGjS/bMOjJ9h7zqTlGEd2NEqSTa"
    crossorigin="anonymous"
  />

or (recommended) install and build it yourself:

npm install bootstrap-4-vertical-tabs node-sass node-sass-import --save-dev

Building

This assumes that you use SCSS stylesheets.

1. In your stylesheet either:

@import "bootstrap-4-vertical-tabs/scss/custom-variables";
@import "bootstrap-4-vertical-tabs/scss/responsive-vertical-tabs";

It requires the following variables to be defined:

  • $vertical-tabs-min - this value specifies the minimum view width for display of vertical tabs, below this width vertical tabs turn into regular horizontal tabs:
horizontal tabs at medium view width
  • $horizontal-tabs-min - if the view is narrower than this value, horizontal tabs turn into nav-pills-like buttons:
nav-pills at narrow view width
  • $fixed-tab-size - specify this based on the expected text length to be displayed on the tabs. A (long) text that (always) fits into a vertical tab, will get ellipsis-ed when it doesn't fit into horizontal or sideways tabs:
VerticalHorizontalSideways
vertical tab with a long texthorizontal tab with a long textvertical sideways tab with a long text

changing the value of this variable can allow you to control if and how tab captions might be truncated. The recommended values are between 4 and 12 rem.

  • $left-tabs-text-align and $right-tabs-text-align - these specify the text alignment for vertical left/right tabs. When tabs are displayed as horizontal or nav-pills, the text is always center-aligned.

Check the custom-variables.scss stylesheet for the default values.

2. Compile with node-sass

npx node-sass --importer node_modules/node-sass-import <input>.scss <output>.css

Usage

There are 3 classes defined in the stylesheet which should be applied to the element having nav-tabs bootstrap class: left-tabs, right-tabs, and sideways-tabs:

LeftRight
left-tabsright-tabs
sideways-tabs (with left-tabs)sideways-tabs (with right-tabs)

The index.html file in the dist directory illustrates all four styles.

You can also see the live demo.

Keywords

FAQs

Last updated on 05 Mar 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc