Skip to content

Bootstrap 4 stylesheet that implements vertically-oriented navigation tabs.

License

Notifications You must be signed in to change notification settings

tromgy/bootstrap-4-vertical-tabs

Repository files navigation

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";

or (recommended) define your own values for the custom variables, and then @import responsive-vertical-tabs.scss.

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:
Vertical Horizontal Sideways
vertical tab with a long text horizontal tab with a long text vertical 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:

Left Right
left-tabs right-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.

About

Bootstrap 4 stylesheet that implements vertically-oriented navigation tabs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages