Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap

Overview

A premium and open source dashboard template with a responsive and high-quality UI.

A premium and open source dashboard template with a responsive and high-quality UI.

NPM version NPM Downloads Tabler preview License Tabler preview
GitHub stars

Preview

Tabler is fully responsive and compatible with all modern browsers. Thanks to its modern, user-friendly design you can create a fully functional interface that users will love! Choose the layouts and components you need and customize them to make your design consistent and eye-catching. Every component has been created with attention to detail to make your interface beautiful! Show me demo

Tabler preview

Features

We've created this admin panel for everyone who wants to create templates based on our pre-made components. Our mission is to deliver a user-friendly, clear and easy administration panel that can be used by both simple websites and sophisticated systems. The only requirement is basic HTML and CSS (and some Liquid) knowledge — as a reward, you'll be able to manage and visualise different types of data in the easiest possible way!

  • Responsive: With the support for mobile, tablet and desktop displays, it doesn’t matter what device you’re using. Tabler is responsive in all major browsers.
  • Cross Browser: Our theme works perfectly with the latest Chrome, Firefox+, latest Safari, Opera, Edge and mobile browsers. We work hard to to provide continuous support for them.
  • HTML5 & CSS3: We use only modern web technologies, such as HTML5 and CSS3. Our theme includes some subtle CSS3 animations, which will help you attract attention.
  • Clean Code: We followed Bootstrap’s guidelines carefully to make your integration as easy as possible. All code is handwritten and W3C valid.
  • Demo pages: Tabler features over 20 individual pages using various components, which gives you the freedom to choose and combine. All components can vary in color and styling that you can easily modify using Sass. Sky is the limit!
  • Single Page Application versions: Tabler React has React components for Tabler.

Documentation

Documentation is available as a part of Tabler preview: https://preview.tabler.io/docs/

Sponsor Tabler

Sponsor Tabler

Sponsors

Support this project by becoming a sponsor. Your logo will show up in this README with a link to your website. Become a sponsor!

Setup environment

To use our build system and run our documentation locally, you'll need a copy of Tabler's source files. Follow the steps below:

  1. Install Node.js, which we use to manage our dependencies.
  2. Navigate to the root /tabler directory and run npm install to install our local dependencies listed in package.json.
  3. Install Ruby - the recommended version is 2.5.5.
  4. Install Bundler with gem install bundler and finally run bundle install. It will install all Ruby dependencies, such as Jekyll and plugins.

Windows users:

  1. Install Git in C:\Program Files\git\bin directory and run npm config set script-shell "C:\\Program Files\git\bin\bash.exe" to change the default shell.
  2. Install Ruby+Devkit - the recommended version is 2.5.5.
  3. Read guide to get Jekyll up and running without problems.

Once you complete the setup, you'll be able to run the various commands provided from the command line.

Build locally

  1. From the root /tabler directory, run npm run start in the command line.
  2. Open http://localhost:3000 in your browser, and voilà.
  3. Any change in the /src directory will build the application and refresh the page.

Note: Run npm run build for reforms a one off build application without refresh. Open http://localhost:3001 to configure the Web server.

Installation

Tabler is distributed via npm.

npm install --save @tabler/core

CDN support

All files included in @tabler/core npm package are available over a CDN.

Javascript

<script src="https://unpkg.com/@tabler/core@latest/dist/js/tabler.min.js"></script>

Styles

<link rel="stylesheet" href="https://unpkg.com/@tabler/core@latest/dist/css/tabler.min.css">

Feature requests

https://tabler.canny.io/feature-requests

Bugs and feature requests

Found a bug or have a feature request? Please open a new issue.

Creators

Paweł Kuna

Contributors

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers! 🙏 Become a backer

Thanks

Chromatic

Thanks to Chromatic for providing the visual testing platform that helps us review UI changes and catch visual regressions.

License

See the LICENSE file.

Comments
  • There are more than two genders

    There are more than two genders

    Only two binary genders are presented as options:

    screen shot 2018-04-03 at 1 20 15 pm

    Here is the relevant code:

    https://github.com/tabler/tabler/blob/568950f0a4a62ed7b6c50da7365047ca439e185d/src/_includes/cards/form-all-elements.html#L175-L184

    Allowing a third option along with a input would be more inclusive:

    screen shot 2018-04-03 at 1 34 05 pm

    Note: I used the fe fe-more-horizontal icon

    This tends to be represented in data as:

    {
      gender: 'male' | 'female' | 'unspecified',
      genderTitle: string | null,
    }
    

    Which can be presented as:

    let genderStr = user.genderTitle || user.gender
    

    If you are using pronouns in your content, a good way to handle it is:

    const PRONOUNS = {
      male: 'he',
      female: 'she',
      unspecified: 'they',
    };
    
    let pronoun = PRONOUNS[user.gender];
    

    By making this change, you set a good example for the community

    bug help wanted 
    opened by jamiebuilds 28
  • Datepicker for Tabler

    Datepicker for Tabler

    I'm working of new version of Tabler, I am at the stage of choosing a datepicker. Which one do you recommend?

    Requirements:

    • a lot/no dependency
    • customizable
    • many features (datepicker, timepicker, date/timepicker, etc)

    I am asking for suggestions in the comments

    vote 
    opened by codecalm 18
  • Jekyll dependency

    Jekyll dependency

    Hey,

    the Jekyll dependency makes this project very hard to actually use in a real project.

    Are there any plans to make this CSS and HTML available as a standalone version?

    feature request 
    opened by janschloss 15
  • [BUG] Radio button check not centered on HiDPI

    [BUG] Radio button check not centered on HiDPI

    Describe the bug

    When browsing the form elements demo page, the checkmark in the center of the radio button is not perfectly centered.

    It seems too far on the right and to the bottom.

    Device

    • Browser: Chrome v104
    • OS: Windows 11
    • Screen size: 3840 x 2560, 150%

    To reproduce

    Steps to reproduce the behavior:

    1. Go to form elements
    2. See error

    Screenshots

    Screenshot 2022-08-10 141726

    bug 
    opened by tbolon 12
  • [Request] Sketch design file if possible

    [Request] Sketch design file if possible

    In order for developer and designer to collaborate efficiently, I think we want to have a design file in whatever vector format (recommend .sketch). Thanks!

    opened by nhim175 12
  • How to integrate into Ruby on Rails Asset Pipeline

    How to integrate into Ruby on Rails Asset Pipeline

    Can you give any direction on how to integrate Tabler with the Rails Asset Pipeline? Tabler is using requirejs which i ran into some issues with the asset pipeline in rails.

    What js file are absolutely required? I think anyone integrating tabler with any web framework will have the same question actually.

    feature request documentation 
    opened by drale2k 12
  • Fixed global variable for `.card` and `.btn`

    Fixed global variable for `.card` and `.btn`

    Fixed global variable --#{$prefix}card-bg from $dark to $dark-mode-dark. This would also fixed the issue with .btn also, because it effect same underline when switching to dark theme.

    image

    bug 
    opened by wangkanai 11
  • Pure html/css version?

    Pure html/css version?

    Is there any way to obtain this dashboard in pure html/css without the need for everything else required to install this? I love the look of this dashboard but calling it an html dashboard is not exactly correct. HTML does not have ruby requirements.

    documentation v1 
    opened by viraladmin 11
  • npm run serve is not working

    npm run serve is not working

    Showing these Errors:-

    /Library/Ruby/Gems/2.3.0/gems/bundler-1.16.6/lib/bundler/runtime.rb:313:in check_for_activated_spec!': You have already activated public_suffix 3.0.3, but your Gemfile requires public_suffix 3.0.2. Prependingbundle execto your command may solve this. (Gem::LoadError) from /Library/Ruby/Gems/2.3.0/gems/bundler-1.16.6/lib/bundler/runtime.rb:31:inblock in setup' from /Library/Ruby/Gems/2.3.0/gems/bundler-1.16.6/lib/bundler/runtime.rb:26:in map' from /Library/Ruby/Gems/2.3.0/gems/bundler-1.16.6/lib/bundler/runtime.rb:26:insetup' from /Library/Ruby/Gems/2.3.0/gems/bundler-1.16.6/lib/bundler.rb:107:in setup' from /Library/Ruby/Gems/2.3.0/gems/jekyll-3.8.4/lib/jekyll/plugin_manager.rb:50:inrequire_from_bundler' from /Library/Ruby/Gems/2.3.0/gems/jekyll-3.8.4/exe/jekyll:11:in <top (required)>' from /usr/local/bin/jekyll:22:inload' from /usr/local/bin/jekyll:22:in <main>' npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! [email protected] jekyll-serve:jekyll serve --livereload` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the [email protected] jekyll-serve script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

    npm ERR! A complete log of this run can be found in: npm ERR! /Users/junaidchoudhary/.npm/_logs/2018-10-13T08_10_31_638Z-debug.log ERROR: "jekyll-serve" exited with 1. npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! [email protected] serve: gulp build && npm-run-all --parallel gulp-watch jekyll-serve npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the [email protected] serve script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

    npm ERR! A complete log of this run can be found in: npm ERR! /Users/junaidchoudhary/.npm/_logs/2018-10-13T08_10_31_785Z-debug.log

    opened by JustJunaid 11
  • Security measure: fail PR if a lock file was changed

    Security measure: fail PR if a lock file was changed

    There were quite a lot of PRs in the past, which shipped changed lock files.

    Those were mostly introduced by unexperienced contributors, but considering the popularity of Tabler and the amount of potential targets, this could be a real security risk: https://snyk.io/blog/why-npm-lockfiles-can-be-a-security-blindspot-for-injecting-malicious-modules/

    There is a simple way to prevent that, which I am using in all my projects: a workflow that checks the PR for changed lock files and fails directly if a changed lockfile was included. The only persons allowed to push changes for those files are @codecalm and @dependabot (see e.g. #1296).

    The used workflow is: https://github.com/xalvarez/prevent-file-change-action

    What do you think @codecalm about the idea in general?

    ~~This PR is a draft for now, because I am not sure about the required token permissions. I posted a question in the action repo and will update the workflow file accordingly if there are more required.~~

    opened by kevinpapst 10
  • [FEATURE] - settings page with sub sections?

    [FEATURE] - settings page with sub sections?

    is there any plan for settings page ?

    • personal info
    • data & privacy
    • security
    • people & sharing
    • passwords ...
    • payment and subscription...

    @codecalm

    opened by Nejcc 10
  • [BUG] Tabler into Angular

    [BUG] Tabler into Angular

    Sorry for opening this like a BUG, I know that Tabler it is not guilty, but at least I have a bug and need help...

    I started to use tabler into Angular 14/15, basically using the css, instead of pure bootstrap (based on demo). Everything works, except dropdown (probably because of href="#), I tried following all kind of tips and nothing works. Anybody is using tabler into Angular? If yes has solved this problem? Help me please

    I've seen that there was an old repo of a tabler version for Angular, probably the team decided fucus first on the main repo.

    bug 
    opened by abrahampe 0
  • Bump json5 from 2.2.1 to 2.2.3

    Bump json5 from 2.2.1 to 2.2.3

    Bumps json5 from 2.2.1 to 2.2.3.

    Release notes

    Sourced from json5's releases.

    v2.2.3

    v2.2.2

    • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).
    Changelog

    Sourced from json5's changelog.

    v2.2.3 [code, diff]

    v2.2.2 [code, diff]

    • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).
    Commits
    • c3a7524 2.2.3
    • 94fd06d docs: update CHANGELOG for v2.2.3
    • 3b8cebf docs(security): use GitHub security advisories
    • f0fd9e1 docs: publish a security policy
    • 6a91a05 docs(template): bug -> bug report
    • 14f8cb1 2.2.2
    • 10cc7ca docs: update CHANGELOG for v2.2.2
    • 7774c10 fix: add proto to objects and arrays
    • edde30a Readme: slight tweak to intro
    • 97286f8 Improve example in readme
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.
    dependencies javascript 
    opened by dependabot[bot] 1
  • [CONTRIBUTE] Loading Modal

    [CONTRIBUTE] Loading Modal

    I created a new modal that serves as a loading screen, as I could contribute to the project and officially add it to the Tabler package in Modals

    https://preview.tabler.io/modals.html

    Preview

    ezgif com-gif-maker

    opened by humbertleonardo 1
  • bg-light text-dark n dark-moded

    bg-light text-dark n dark-moded

    In the dark-mode, if there is a element with .bg-light AND .text-dark

    ( mine for example is: <a href="#" class="badge rounded-pill bg-light text-dark text-decoration-none">Reset</a> ) than you can't see the text, because bg-light is "dark" in dark-mode. Dark text with dark background is not readable.

    to fix this, i added

    @include dark-mode { .bg-light.text-dark { color: var(--tblr-body-color) !important; } }

    to my own css.

    But i think it is better, if YOU change this.

    bug 
    opened by vogelor 0
  • [BUG] Toggle dark mode position

    [BUG] Toggle dark mode position

    Describe the bug

    bug when i add nav-item class inside dark mode toggle div switch

    sorry for my bad english

    Device

    • Browser [Google Chrome]
    • OS: [Parros Os]
    • Screen size [1366 x 768]

    Screen Records

    https://user-images.githubusercontent.com/100203867/208287920-5e21c95d-0cbf-44c8-ab51-1041d2751d0b.mp4

    bug 
    opened by adilhyz 0
Releases(v1.0.0-beta16)
  • v1.0.0-beta16(Nov 12, 2022)

    • changelog update (6baa4561)
    • changelog update (dd4f3d80)
    • New photogrid component (#1338) (4ff4feb0)
    • fix #1348: Make job listing responsive for smaller devices (#1353) (8a2437da)
    • fix #1357: buttons group not active (#1358) (5da22ec4)
    • #1352: fix deprecation warning (#1359) (7a9702a9)
    • fix #1180: number input with form-control-sm looks weird (#1360) (6a3affaf)
    • fix #1328: color input should show different color for inner check symbol on white ellipse (#1362) (cb2821aa)
    • fix #1355 - missing font sizes (d8ad848e)
    • Merge branch 'dev' of https://github.com/tabler/tabler into dev (1e9f8f12)
    • update icons to v1.111.0 (24a7451e)
    • Update card-image.html (#1351) (b59e6f95)
    • Dependencies update (#1350) (33dbbd81)
    • fail PR if a lock file was changed (#1344) (153500f0)
    • Update SECURITY.md (b2d19ac4)
    • Create SECURITY.md (cf73d433)
    • Steps improvements (#1347) (56ccf952)
    • update icons to v1.110.0 (a06c8edb)
    • homepage navbar fix (e4e8f7d1)
    • fix #1262 - .bg-opacity-xx class is not functioning properly (1c824c2b)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta15(Nov 1, 2022)

    • changelog update (003410db)
    • update icons to v1.109.0 (c1dfcfe7)
    • tom-select border fix (2c73859b)
    • fix tom-select (da469ac1)
    • index.html menu fixes (3809eeeb)
    • exclude playgrounds from build (#1342) (4e8fbec2)
    • update jekyll (8ae0434b)
    • fix: facebook color update (e59e62e6)
    • navbar aria fix (87ae6921)
    • fix #808 - fix navbar-menu and sidebar-menu has the same id (52fb5d8a)
    • fix #1335 - missing color variables usage in alert and btn-ghost-* (911e6871)
    • Merge branch 'main' of https://github.com/tabler/tabler into dev (b5d8ecf8)
    • Merge branch 'dev' of https://github.com/tabler/tabler into dev (ff199c30)
    • update icons to v1.108.0 (ab0587cf)
    • Merge remote-tracking branch 'origin/main' (65b0ad77)
    • vercel config fix (fd10fb14)
    • vercel config fix (cfb5bc1b)
    • vercel config fix (9cdc8aec)
    • vercel config fix (9e745c91)
    • vercel config fix (98df8891)
    • New badges page (#1331) (45738329)
    • <kbd> styling (#1329) (0fbdb9a3)
    • new bundlewatch action, remove unused actions (#1330) (0cf94835)
    • move border style to css variables (fcf850c3)
    • update icons to v1.107.0 (e6964e73)
    • added missing forms (ffa1aa0a)
    • colors fix (57e3b27b)
    • btn-actions fixes (f91a7722)
    • replace $text-muted to css variable (9122eca0)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta14(Oct 20, 2022)

    • changelog update (ff505c1a)
    • package version in footer (f74eb22c)
    • revert build (7d532506)
    • preview-dev env (3c41a6bb)
    • package version in footer (72d1eb51)
    • Merge branch 'main' of https://github.com/tabler/tabler into dev (abff1085)
    • jekyll upgrade (4d025e6d)
    • fix card tabs in dark mode (0df61323)
    • Dark mode fixes (#1322) (1a3c2084)
    • development-activity fix (65bf5274)
    • fix vector maps border color in dark mode (57ae3581)
    • list-group-transparent active bg fix (88282b4e)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta13(Oct 18, 2022)

    • update changelog (e47b01eb)
    • update changelog (be964d8a)
    • fix #1301 - code snippets in docs look bad in dark mode (9ae94a8b)
    • different default link color for dark mode #1305 (30374da1)
    • popover dark fix (2eab5e90)
    • remove $border-color-dark (416b26f3)
    • button color fixes (f180e041)
    • form-imagecheck fix (1c813dba)
    • form-imagecheck fix (0be63b82)
    • navbar logo fix (f6c50349)
    • card ribbons config move to variables (5c7567bb)
    • remove unused tags (ade3bf44)
    • Corrects the spelling of New Zealand (#1318) (5d85218a)
    • update icons to v1.105.0 (2efd180f)
    • Merge remote-tracking branch 'origin/dev' into dev (999a13ca)
    • docs hightlight fixes, dark mode improvements (76b7dbf6)
    • new tracking component (#1317) (eab83edf)
    • navbar border fix (426dd0a9)
    • dark mode active fix (c99846e2)
    • update icons to v1.104.0 (73fda94d)
    • dark mode fixes, fonts unify, colors unify (#1314) (bb15f480)
    • using globalThis instead of window (#1315) (d34b8c5e)
    • update icons to v1.103.0 (f3edb02b)
    • fix #1210 - lastmod not generated for pages in sitemap.xml (3f862a8c)
    • card border fix in dark mode (2e4b9c70)
    • fix #895 - background color overwrites background image (70bdafa0)
    • fix #1302 - wrong card header in dark mode (375c12d1)
    • fix #1303 - wrong color when hovering over "selectgroup" in dark mode (0d6cebc5)
    • fix #1308 - bad coloring in table in dark mode (d83dbfb8)
    • jobs fixes (ca1c6f26)
    • fix #1273 - datepicker background color broken (592eca2b)
    • radio button version of image check (#1298) (80f8673a)
    • update dependencies (#1297) (2bb68e60)
    • Bump vm2 from 3.9.9 to 3.9.11 (#1296) (e803efbb)
    • $prefix hard coded layout/_dark.scss (#1293) (2fc5414b)
    • fix: remove css that overrides dark theme color (#1295) (c219ea5f)
    • Merge remote-tracking branch 'origin/dev' into dev (26ba36b7)
    • fix #1275 remove last border-right on progress bar (44c69ff7)
    • dark mode improvements (#1287) (c794f422)
    • update icons to v1.100.0 (0633274a)
    • Resolved issue 1276 (#1281) (a92f12e6)
    • fixed dropdown issue on tables issue #1249 (#1269) (07b0292e)
    • Merge remote-tracking branch 'origin/dev' into dev (6ca8788b)
    • Merge branch 'main' of https://github.com/tabler/tabler into dev (d89522ec)
    • analytic fix (4dbe4662)
    • disable sentry (37277efe)
    • stats fix (edc29162)
    • update Bootstrap to 5.2.1, update dependencies (#1266) (3987eec6)
    • Allow Bootstrap 5.2.* (#1265) (b71023c6)
    • Switch to dart-sass (#1264) (8821080b)
    • fix #1261: broken offcanvas bg (dc25943b)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta12(Sep 19, 2022)

    • changelog update (e5f30bf8)
    • Use :host in selectors to support Web Components (#1258) (01b3cbfa)
    • form-check empty space fix (d010382b)
    • Merge branch 'dev' of https://github.com/tabler/tabler into dev (3aca920e)
    • update icons to v1.96.0 (c66849d5)
    • Job listing page (#1256) (ec692ba7)
    • changelog (#1255) (b29c5867)
    • headings unify, borders unify (#1254) (f2ce1d92)
    • Merge remote-tracking branch 'origin/dev' into dev (b7db449d)
    • Fixed global variable for .card and .btn (#1229) (0b849b92)
    • fix core.scss includes (f82e0ca3)
    • card-bg fix, create bg-surface (46f0a96a)
    • Merge branch 'dev' into card (9d411eb8)
    • Merge pull request #2 from wangkanai/wangkanai-Card-patch-1 (8bcd9eb8)
    • Update _variables.scss (29d9f1c6)
    • Sign in with cover (#1247) (5ff24130)
    • shadows unify (#1246) (060c08d1)
    • update icons to v1.95.1 (#1245) (a1ef74f0)
    • Resolved the issue- radio button check not centered on HiDPI (#1239) (b0969840)
    • fix: Regular expression denial of service in scss-tokenizer (00b820c1)
    • bundlewatch config update (5cb10e2d)
    • code formatting (3a0ec640)
    • disable vector maps on development (54b4aa22)
    • Toggle TinyMCE dark mode and skin based on the set tabler theme (#1241) (ffde2b5b)
    • Fix code sample in the customize tabler docs (#1243) (68b12c5e)
    • Remove the odd left border on toasts (#1244) (61189691)
    • avatar shadow fix (aa136e7b)
    • debug off (6d368573)
    • improve CSS variables (#1232) (8d6898ed)
    • Merge remote-tracking branch 'origin/dev' into dev (6762afdb)
    • hr fix (5349dd86)
    • sign-in page with illustration (#1236) (529b0f44)
    • settings page redesign (#1235) (0b518b86)
    • settings page redesign (#1234) (366b860b)
    • update icons to v1.93.0 (4941bfa5)
    • $border-color-transparent not defined (ff2ddf4f)
    • fixed card bg & color in default light mode (aba1e03b)
    • Merge remote-tracking branch 'origin/card' into card (bb92c7f9)
    • fixed card bg & color for light & dark mode (df06dcae)
    • Merge branch 'dev' into card (82830448)
    • move SCSS variables to CSS variables (#1214) (b4a078f3)
    • update dependencies (#1231) (fa4afb01)
    • update icons to v1.91.0 (#1230) (86db6b1f)
    • Merge branch 'main' of https://github.com/tabler/tabler into dev (1dc4fc16)
    • fixed dark mode card text color swap the element (0832bd1d)
    • fixed dark mode card text color (c6bee662)
    • testing the same effect on .btn (a797f6c7)
    • fixed ``--#{$prefix}card-bg` is undefined (d420752c)
    • add variable reflecting bootstrap card variables (74ff4bba)
    • comment our ``.card` for testing results (18256454)
    • add --#{$prefix}card-bg: var(--#{$prefix}card-bg); to .card (e9ea6994)
    • Fixed .card global variable card-bg: from $dark to $dark-mode-darken (88755f9e)
    • Fix ApexChart heatmap initialization on the charts docs page (#1152) (e738cc47)
    • update icons to v1.91.0 (#1218) (459460de)
    • fix typo in cards.md (#1217) (c455b39c)
    • Merge remote-tracking branch 'origin/dev' into dev (6099d216)
    • small variable fixes, change space-y component (22cd9e39)
    • Update README.md (8737ca34)
    • change avatar (b3ff7e7d)
    • headers weight fix (45fe4fbc)
    • card-footer fix (3df35427)
    • card table fix (da734f63)
    • update icons to v1.86.0 (2f35cc51)
    • logs header (f290897e)
    • logs.html page (b04a92f4)
    • new progressbg component (#1213) (edbf1d74)
    • Added Dockerfile with alpine base (#1211) (1ad0d6ee)
    • Update Tabler Icons to v1.84.0 (#1212) (a72bad19)
    • update dependencies, update Tabler Icons to v1.83.1 (#1208) (d58d3aa1)
    • Fix form elements demo page radio buttons (#1198) (620b210f)
    • fix transparent hover background in pagination (#1203) (ea1d973d)
    • Use dark table variant colors in dark mode (#1200) (96dac4eb)
    • Fix flashing white when dark theme is enabled (#1176) (c4a6a869)
    • Delete Button.stories.js (d1180f3f)
    • Merge branch 'main' of https://github.com/tabler/tabler into dev (a78a8804)
    • Inter iconfont (#1189) (baa9912b)
    • Add icon pulse/tada/rotate animations (#1183) (41697cab)
    • Remove Google Analytics from preview (#1190) (c83dcdac)
    • Replace gulp-minify with gulp-terser (#1191) (322e5144)
    • update changelog (4dff0e73)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta11(Aug 5, 2022)

    • update dependencies, update tabler icons to v1.72 (#1182) (0b76efb9)
    • Updating spelling (#1179) (07ab826f)
    • docs: switch unpkg to jsdelivr (#1165) (3768b245)
    • Fixes Issue #1149. Vertical nav overflow. (#1151) (e45d7801)
    • Update datatables.html (#1159) (b9dd4140)
    • Fix GitHub action badge (#1175) (c88a025d)
    • Required form label for horizontal forms (#1161) (dc8cad14)
    • Fix rendering of modal examples on docs page (#1171) (03f5b506)
    • Fix the responsiveness of the pricing table page (#1174) (8f6753cb)
    • Switch active and default colors of list groups (#1160) (2a04bb9d)
    • Make development activity chart full width on tablets (#1153) (35653e58)
    • Fix noUiSlider initialization on the range slider demo page (#1150) (1d591a49)
    • make the datatables preview page functional (#1154) (6b888f6e)
    • added popover docs page (#1157) (708c70bd)
    • update icons to v1.72 (bd9c6d64)
    • update icons to v1.70 (6da79a1f)
    • update icons to v1.69 (1ef95c76)
    • Merge remote-tracking branch 'origin/main' (526fce8d)
    • prefix fixes (59c2c646)
    • Dropzone (#1139) (6b377412)
    • Lightbox (#1144) (d7935bae)
    • copy libs fix (2c55d58c)
    • package.json fix (280b4ecc)
    • Tinymce (#1143) (58d0dfa9)
    • Inline player (#1138) (a0530b50)
    • Bump actions/checkout from 2 to 3 (#1141) (5de51df8)
    • Bump actions/setup-node from 2 to 3 (#1142) (d4680b41)
    • Bump github/codeql-action from 1 to 2 (#1140) (ffecde78)
    • chore: Included githubactions in the dependabot config (#1132) (1d4f0fd4)
    • fix: #1125 incorrect chart display in the mobile version (4cfab173)
    • chore: Set permissions for GitHub actions (#1130) (2586877e)
    • update Bootstrap to 5.2.0-beta1 (#1131) (8f3bcbd7)
    • Fix list readme (#1128) (85e63a54)
    • add settings page (#1106) (e94eacbb)
    • added optgroup form examples (#1108) (cf77c7f6)
    • dependencies update (#1120) (f12a41a8)
    • Bump minimist from 1.2.5 to 1.2.6 (#1107) (5576c619)
    • Delete preview.yml (79e9d9d4)
    • fix #1119 - Pricing Table on Dark Mode doesn't change separator text (9a16a6cb)
    • improve "run it locally" docs for first time contributors (#1109) (809fa2bc)
    • Update recommended version of Ruby in README.md (#1115) (7c08f5af)
    • new: Pricing table (#1117) (62532090)
    • new: Datagrid compontent (#1118) (3872d484)
    • update icons to 1.68.0 (8fac4440)
    • Fix #1082: Make sure text-$color overwrites bg-$color (#1086) (a21fed25)
    • changelog (a1020cfd)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta10(Apr 29, 2022)

    • dependencies fix (f7e9eb0a)
    • menu fix (b400a6fa)
    • Datatables (#1114) (abaef833)
    • sponsor project link (6a1f8ff5)
    • update icons to v1.67 (06ce100b)
    • update icons to v1.67 (464dad79)
    • update icons to v1.66 (cc80669f)
    • Merge remote-tracking branch 'origin/main' (783104c5)
    • small ui improvements (b061e171)
    • Fix #1024: Fix Tom-select in dark mode (#1098) (d4097c48)
    • update dependencies (#1104) (7d2f51aa)
    • update tabler icons to 1.63 (1b0acc7c)
    • Merge remote-tracking branch 'origin/main' (6579c8b7)
    • carousel fix (fa3f774c)
    • carousel fix (d945cfb8)
    • Merge remote-tracking branch 'origin/main' (4ef5d48a)
    • menu rebuild (b6ed4290)
    • New carousel indicators: dots, vertical, thumbs (#1101) (278fe7bb)
    • Replace !important modifier with more specific selectors ... (#1100) (6680ef92)
    • Merge branch 'dev' of https://github.com/tabler/tabler (0b41d83d)
    • Update icons to 1.59.0 (8a1fb840)
    • Fix noUiSlider from breaking by loading to early (#1099) (875846e3)
    • Fix toasts in dark-mode being to bright (#1091) (bb14c268)
    • Fix #975: Add header example for breadcrumbs in docs (#1095) (05ae0b14)
    • Fix #1079: Fix select being blank when using tab to highlight field (#1085) (27c8cd2b)
    • vercel init (692027e9)
    • faq header fix (7454f02b)
    • new FAQ page (#978) (afe17a1f)
    • Merge remote-tracking branch 'origin/main' (ec3908a5)
    • update columns count in Extra menu (05c8a5a8)
    • dependencies update (#1064) (551a07fc)
    • changelog update (aa5a6192)
    • changelog update (c0ee4081)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta9(Feb 26, 2022)

    • List group item colors in light and dark modes (#1061) (93984d2e)
    • new tasks dashboard (#1062) (40930a94)
    • comment (80a36bf6)
    • fix: #1059 - upload button in form element in dark view has problem (7f1b829d)
    • fix: #1052 - card background icon is practically invisible (114f0f6c)
    • background fix (7c1b0111)
    • Remove Inter font and use default font system stack (#1048) (1b81926c)
    • homepage map fix (25568ba7)
    • fix: #1018 - vector map not working (8acc19d7)
    • fix: #1035 - wrong background color of hovered list group items in dark mode (858140d7)
    • Merge remote-tracking branch 'origin/main' (f2053646)
    • dependencies update (ab2b8e8b)
    • add font-display: swap; to improve font loading (#1027) (9e4310b6)
    • boxed layout bg (2f5de7b6)
    • add build badge to readme (000ccb8e)
    • boxed layout bg (2bb32c27)
    • Boxed layout (#1022) (3126bc5e)
    • changelog update (4910a7ef)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta8(Feb 5, 2022)

    • update dependencies (#1021) (0d128fb0)
    • Merge branch 'main' of https://github.com/tabler/tabler (6de42da5)
    • feat: New vector maps demos (#1020) (761df6a3)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta7(Feb 5, 2022)

    • fix: mapbox maps demo fixes (593794f3)
    • fix: #1019 - project-overview.html link not working (a08f46ee)
    • fix: #1010 (41f56f09)
    • uptime monitor mobile fixes (ffd7412c)
    • navbar dark fix (a38c98d2)
    • Card with bottom tabs has incorrect border radius fix: #1010 (946077aa)
    • menu badges fixes: #1014 (01b1c489)
    • tabler icons link (1b6ce20a)
    • Merge branch 'main' of https://github.com/tabler/tabler into dev (88646188)
    • Fix vertical alignment of empty badge elements (#1008) (2c0a34d9)
    • autoloading webfonts #1004 (8c95968f)
    • Cards fixes, new demos (#1007) (c51f311d)
    • ruby dependencies update (adbcd475)
    • debug off (26e19944)
    • fix rtl fixes: #1005 (a4922f59)
    • Update card-actions.html (74985f8d)
    • Update preview.yml (63f76815)
    • Update demo.js for code improvements (#1002) (1d6368a1)
    • new card action demos (#1003) (95ac87e0)
    • Fix #1000 theme-dark border-color incorrect for input validation (#1001) (61e4809d)
    • fix update map on resize (7da08bc6)
    • fix wide cards overflow in row-card class (f4b4eb5c)
    • missing div navbar fix (1dbe8c10)
    • update dependencies, fixes in changelog.html (d00994de)
    • changelog update (9fc3435a)
    • menu icon rollback (6cddaa60)
    • docs improvement (5609e72c)
    • homepage banner (5b15b30a)
    • icons tooltip fix (7ce9df44)
    • icons menu (8f65c207)
    • icons banner (23b6ac42)
    • replace vadge with status-dot in navbar-notifications.html (29f16ac1)
    • markdown fixes (384004fb)
    • Merge remote-tracking branch 'origin/dev' into dev (ba33924b)
    • cards fixes (3e351047)
    • fixed overlap header button colors (#999) (533ef365)
    • Fix #971: Add example of notifications list (#997) (7eff8101)
    • map tooltip fixes (10811fd5)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta6(Jan 18, 2022)

    • homepage tablet fixes (813b515d)
    • Vector maps (#995) (4cda36c9)
    • Update dependencies (#996) (116800c6)
    • New statuses (#965) (a9075f67)
    • Change skeletons to Bootstrap placeholders (#991) (388adaec)
    • change breadcrumb dividers to css variables (7fa5f500)
    • package-lock.json update (88fb6315)
    • pricing cards fixes (ac382120)
    • bug #973 fw-..., .fs-... is missed (#987) (d9f21d50)
    • avatar class fix (8eb9d18d)
    • fix #973 revert font size and font weight classes (26e54027)
    • fix #973 badge fixes (e432599f)
    • Fix #903 litepicker with date range not having correct border (#980) (8ce323fd)
    • Update _colors.scss (#985) (b6c309c7)
    • page wrapper fix (b91315b5)
    • fix #900 is-invalid-lite class is not working under was-validated form class (#964) (4a2fa8cc)
    • update @tabler/icons to version 1.48 (ca96d745)
    • fix #960 - Badges not honoring font sizes (#961) (8151b829)
    • fix #959 node-sass does not properly compile nested media queries (#963) (fb4042ee)
    • github icon dark-mode fix (7869982c)
    • Disable chromatic (#962) (f6bf459f)
    • Update _mixins.scss (#956) (5a9ae94e)
    • Update package dependencies to newest version (#955) (02c45fc0)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta5(Dec 7, 2021)

    • Dark mode improvements (#950) (45268ff5)
    • Fix pre rule dark mode styling (#951) (1018977e)
    • Add more cursors (#947) (bbcc070e)
    • Fix #892: Media queries need to be nested when negating (a9e1336c)
    • Fix text body not overruling dark mode properly (#944) (3d986ee0)
    • update @tabler/icons to newest version (5a4d9261)
    • update tabler-icons to newest version (a99b6fcc)
    • package-lock.json rebuild (f5d8a830)
    • Delete config.yml (7c2c687e)
    • [Suggestion] Move optional dependencies to peerDependencies (#924) (6e90f1be)
    • Moved deployment to Github Actions (#934) (c2d09a5e)
    • table border fixes (7f9be24f)
    • antialiased fix (5ebe20e1)
    • jekyll generated date in footer fix #932 (886c137a)
    • update @tabler/icons to v1.42 (59fbe1b7)
    • storybook addon moved to devDependencies (88e80be5)
    • Dev chromatic (#931) (6df5e556)
    • font-size revert (b49d23fb)
    • Google 'Inter' font revert (d93d3e56)
    • dist new version (bdd20941)
    • bundlewatch init (994908c2)
    • colors unify (6e5c4021)
    • Merge pull request #926 from tabler/dev-tom-select (492649e5)
    • update tom-select to newer version (7d826037)
    • Merge branch 'dev' of https://github.com/tabler/tabler into oyejorge/dev (d22cdac3)
    • Merge pull request #925 from tabler/dev-colors (d073863a)
    • Merge pull request #857 from rjd22/make-lists-styling-uniform (0b465988)
    • Merge pull request #856 from rjd22/darken-inputs-in-dark-mode (d03e18dd)
    • Merge pull request #855 from rjd22/patch-1 (16a7bea1)
    • new colors unify (bca8e2be)
    • Merge pull request #923 from tacman/patch-1 (2ce3657c)
    • fix 'parts' path (cd853d18)
    • fix: input bg fix (cb3140e9)
    • Merge pull request #921 from tabler/dev-transitions (c6cc82f4)
    • Merge pull request #831 from tabler/dev-window-bootstrap (31d5e00d)
    • fix: transitions unify to use @media: prefers-reduced-motion (d1e2282b)
    • fix: fix avatar background in dark mode #785 (52fe2d73)
    • Merge pull request #853 from tabler/dev-navbar-fixes (ad4f9924)
    • Merge branch 'dev' of https://github.com/tabler/tabler into dev-navbar-fixes (d4ada599)
    • Filter important alerts from dark mode fix (07c4f474)
    • Lists we're not styled uniformly list-groups being different (9c34d2e0)
    • Make input borders in dark mode a darker (28da256f)
    • Fix dark mode not being applied to alerts (47ac4bba)
    • Merge branch 'dev' into dev-navbar-fixes (a2ae5c11)
    • remove console log (38e73757)
    • upgrade bootstrap to v5.0, fix #826 dropdown on sidebar closes on any click, fix #852 submenu does not open (191ea5b4)
    • [dev-window-bootstrap] bring back window.bootstrap for umd, add esm build without it, add some package.json export fields (e5bff385)
    • Merge branch 'dev' into dev (8dd401f3)
    • escape() instead of String() to prevent XSS and ensure correct formatting (f4930013)
    • switch to smaller tom-select.base.min.js since no plugins are being used (17c16277)
    • remove choices.js from package.json (f94150c5)
    • clean-up, remove choices (e91dbbf0)
    • Merge branch 'tom-select' into dev (978abc8a)
    • Merge remote-tracking branch 'upstream/dev' into dev (eb6402eb)
    • tom-select 1.4, css updates, hide search, customProperties (26236f04)
    • add tom-select per tabler/tabler#625 (785dae91)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta4(Oct 24, 2021)

    • Merge pull request #899 from karolzlot/patch-1 (36dae12e)
    • Merge pull request #891 from Script47/patch-1 (eb341975)
    • misspelling fix (adf27e17)
    • Merge pull request #920 from tabler/dev-offcanvas (bf16005c)
    • Merge branch 'dev' of https://github.com/tabler/tabler into dev-offcanvas (dfffc811)
    • upgrade node version to 14 (778cc29b)
    • rename tabler-core.scss to core.scss (19743b79)
    • Merge remote-tracking branch 'origin/dev' into dev (cb6c5f59)
    • fix: misspelling in documentation (d8b3c334)
    • Merge pull request #875 from jezemery/patch-1 (c12fc6c1)
    • #913 new offcanvas menu (e25bb148)
    • update dependencies, build new dist (ef1154be)
    • Merge remote-tracking branch 'origin/dev' into dev (de64c2d8)
    • bootstrap upgrade to 5.1, dependencies upgrade, ui fixes (3d6cbe85)
    • Added link to documentation in readme (364b5ea6)
    • Bitbucker -> Bitbucket (c3242cd5)
    • Update badges.html (20ad7924)
    • downgrade yargs to support older node (0046a149)
    • downgrade yargs to support older node (db5d6a5f)
    • #775 fix litepicker not initializing (db02d149)
    • fix nouislider import in dev (0eedc9b2)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta3(May 8, 2021)

    • Merge remote-tracking branch 'origin/dev' into dev (4e6fa41f)
    • Update Bootstrap to v5, update dependencies (77d6bea2)
    • Merge pull request #845 from migolo/patch-1 (5928bd2a)
    • Merge pull request #768 from kilab-dev/open-tabs-from-url (327bab29)
    • Update _colors.scss (b237f78c)
    • Merge pull request #833 from tabler/dev-fix-rounded-pill (f061239b)
    • change $border-radius-pill variable (f16d4516)
    • Tab activator as separated function (7806af21)
    • Merge branch 'dev' of https://github.com/tabler/tabler into open-tabs-from-url (0f2124fd)
    • Create codeql-analysis.yml (303ace17)
    • Badge vertical align fix #827 (fbf53b71)
    • Space fix (e8d76372)
    • Open specific tab from hyperlink (ee34b1fc)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta2(Mar 28, 2021)

    • dependencies update (2d0a81c8)
    • li marker fix (6b854df3)
    • page wrapper, nav fixes (b305f270)
    • page wrapper fix (2c3b3e34)
    • scripts optimize, remove capture_once (fbd88bbf)
    • container fix (b2a0266b)
    • content to page-wrapper rename (16744074)
    • page-body fixes (7e40b95a)
    • page container optimize (1217bd73)
    • page containers, page avatars (c7cba005)
    • no-container param (a7f645a6)
    • bootstrap update (76b70d2a)
    • svg icon link (f93df2f0)
    • avatar icon fix (f784abb8)
    • colors, badges, cards fixes (d199d4d0)
    • layout navbar fix (86e6fb17)
    • navbar vertical right fix (07d58dde)
    • inline icon (ee12babd)
    • typography (e893c46a)
    • border-radius fix (0b6621c2)
    • sponsors button (d67b664a)
    • remove unused layouts (5cc64487)
    • activity fix (5acc8d73)
    • alert fixes, card header fixes (2329cf57)
    • card header fixes, linkedin color (4ec2bff5)
    • ribbon fix (ad3bc735)
    • grid fixes, form switch lg (2594cad0)
    • avatar list fix (c4fe7f0b)
    • dependencies update (ad4573eb)
    • card with light footer (77226159)
    • github button (58db3300)
    • page headers (9acd29eb)
    • browser support docs (bcfd8f0d)
    • charts label fixes (15429456)
    • charts docs (b1af6143)
    • card cap footer fix (1ba76551)
    • dependencies update (650b15b6)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-beta(Feb 17, 2021)

    • changelog (f6c235e3)
    • flags fix (6cece1ea)
    • icons docs (429c8e83)
    • form demos (92462957)
    • tabler plugins (300c2256)
    • docs rebiuld (0c0d3441)
    • Merge remote-tracking branch 'origin/dev' into dev (21c1ae3b)
    • dependencies update (76806576)
    • Update LICENSE (629e129b)
    • navbar-brand-image fix (dace4f80)
    • dependencies update (006b1d93)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.24(Feb 11, 2021)

    • bootstrap update (53809dc6)
    • form select fixes (c436e490)
    • select fixes (65a68348)
    • custom selects (acc31ea0)
    • choices js styling (92b349f7)
    • choices.js init (a83b4bc9)
    • Update README.md (cd91b833)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.23(Feb 9, 2021)

    • rollup replace fix (f49eb848)
    • new datepicker (9f107202)
    • Merge pull request #779 from rjd22/patch-1 (7a97b942)
    • move bootstrap to core of tabler (77d1ae1a)
    • dependencies update (2e8191cd)
    • interactions docs (695ad785)
    • border fixes (7a69e8f6)
    • border radius refactor (b3fd7ebb)
    • tabler icons url (2356a3e4)
    • tabler icons url (31a1781b)
    • icons fix (38f99626)
    • icons update (48670c2c)
    • Merge remote-tracking branch 'origin/dev' into dev (b6a1d9d3)
    • dependencies update (ad5194a5)
    • Make lite validation also work properly for form select (f0864a5a)
    • Merge pull request #777 from tabler/dev-form-helpers (31007d3e)
    • Merge pull request #778 from tabler/dev-toasts-initialization (c8ad7243)
    • Update README.md (e5841fa5)
    • Update README.md (e61c1171)
    • Update README.md (6a005cf2)
    • Update README.md (ab4e223e)
    • Update README.md (d89d1521)
    • [dev-toasts-initialization] initialize toasts on app start (5e1f480c)
    • [dev-form-helpers] fix data-content and data-html attributes (0a4d4ed9)
    • icon in button min-width fix (201a967d)
    • remove selectize (afb9111a)
    • Merge remote-tracking branch 'origin/dev' into dev (2379606e)
    • favicon.ico replace (057d0871)
    • Merge pull request #770 from kilab-dev/dark-theme-fixes (fba06019)
    • Merge pull request #774 from tabler/dev-jquery-remove (2a1ea76b)
    • Remove unused widgets (3bd078d6)
    • Remove jQuery dependencies (0624af8b)
    • Some dark theme fixes (c6070021)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.22(Jan 12, 2021)

    • dependencies update (0a7eb885)
    • users fixes (4c046bbb)
    • Merge pull request #755 from gfx3/dev (0e49011c)
    • Update tabler.js (3cc5c57c)
    • Update tabler.js (f8619765)
    • Tooltip and popover placement fix (ccde6615)
    • users cards (30603f7b)
    • Merge pull request #750 from kilab-dev/dark-cards-fixes (674f4863)
    • Merge pull request #751 from kilab-dev/checkbox-label-required (f90aa8d0)
    • Merge pull request #748 from activ45/patch-1 (3b999b7c)
    • Added asterisk sign to checkbox element label with .required class (ebe61bfb)
    • Fixes cards in dark theme mode (8d5481f8)
    • Update tabler.js (201db3ee)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.21(Dec 19, 2020)

    social-demo

    • page headers demo (1ae93a9e)
    • page menu fixes (fa7f870a)
    • new page headers (9888183e)
    • users list (b8ae6be9)
    • card tabs fix (96636009)
    • Merge pull request #739 from enricodias/dev (aec7fb5f)
    • form elements mobile fixes (3d9a5207)
    • mobile vertical scrollbar fix (a1153aae)
    • add borderless card id (e6c09ab0)
    • add borderless cards examples (a3eb6744)
    • fix card-active when card border is 0 (5b5571f9)
    • better card-stacked with borderless cards (e1691bc7)
    • make border-0 apply to all child cards (5c0bff07)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.20(Dec 19, 2020)

    social-demo3

    • bootstrap upgrade (17ec2c39)
    • lists fix (effcff4c)
    • margin fixes (bdcb3b2f)
    • accordion tage title fix (7e515aa1)
    • bootstrap accordion #736 (0298c613)
    • modal improvements (e737b9b2)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.19(Dec 16, 2020)

    Screenshot 2020-12-17 at 00 26 25
    • important alerts (ecfe3efc)
    • bootstrap alerts redesign (dfd1e8b4)
    • rtl mode (ef132812)
    • heatmap development rendering speed fix (d2526c2a)
    • heatmap disable random data generator (ad7c1bc6)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.18(Dec 16, 2020)

    • dependencies update (7e2d096a)
    • calendar menu fix #738 (475935b7)
    • animated dots loader (1fb2cd15)
    • Merge pull request #737 from enricodias/dev (57575c37)
    • Merge pull request #1 from tabler/dev (d4732aa7)
    • enforce $card-border-width on cards (3b6458f4)
    • tabler icons update, dependencies update (6cba4883)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.17(Dec 8, 2020)

    • bootstrap upgrade to newest version (7ff3549c)
    • Merge pull request #732 from tabler/rtl-utils (57508c04)
    • new bootstrap 5 margin and padding utils (ee0e7fcb)
    • new bootstrap 5 margin and padding utils (5589a71f)
    • bootstrap dropdowns fixes (c72e7806)
    • disable critical css (8059a68c)
    • disable sentry (8507e662)
    • css base fix (4ea37166)
    • purge css fix (f8eaddf4)
    • critical css test (069c0ef9)
    • css optimize (722a332b)
    • purge css fix (4d8891d7)
    • homepage charts fixesbootstrap upgrade (eb93e6d9)
    • Merge branches 'dev' and 'dev-purgecss' of https://github.com/tabler/tabler into dev (b5ceaca0)
    • Merge pull request #728 from cedric-anne/patch-1 (519386cc)
    • demo purge css (b59e0742)
    • Permit installation using pnpm (00b052a7)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.16(Dec 3, 2020)

    • homepage charts fixes (c2558cc3)
    • interface colors (d3a8cb07)
    • colors fixes (32d7e0e1)
    • alerts fixes (bdf49955)
    • js fixes (17c0fc25)
    • js void fix (a6288b4c)
    • homepage optimize (79f70236)
    • images optimize (523de80a)
    • homepage aria fixes (806b119a)
    • tasks label (728b032c)
    • error page fixes (81720ec9)
    • sentry init (12c3503a)
    • newest bootstrap data-XXX => data-bs-XXX fixes (a1abd45f)
    • newest bootstrap data-XXX => data-bs-XXX fixes (22e5fcb7)
    • Merge branch 'dev' of https://github.com/tabler/tabler into dev (5455cbd6)
    • fix chart sparkline for percentage (f5a461ee)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.14(Nov 21, 2020)

    • bootstrap update, charts fixes (b0b70bcd)
    • select2 fixes (f00c4faa)
    • icon fixes (cbf94888)
    • card header fix (74e8e208)
    • svg fix (6c0d8f7b)
    • icons title (09a0ea58)
    • fix #722 (f1f56bee)
    • Merge pull request #716 from tabler/dev-npm-cdn-info (c976ee95)
    • separate css and js includes (bebab5bd)
    • add usage page in getting started guide, add readme npm and CDN installation guide (dde02732)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.13(Nov 15, 2020)

    • Merge pull request #715 from tabler/dev-package-rename (13729d4b)
    • package rename (2675d28a)
    • Merge pull request #714 from tabler/dev-sparkline (ab2e44c3)
    • small fixes (3ab7200f)
    • peity remove (5f298310)
    • fix #712 (78c4e6dd)
    • form elements fixes (1924310e)
    • variables rename, dropdown menu min-width (c8b74c9b)
    • dropdown menu items unnecessary divs (a18b4d41)
    • dropdown menu columns rebuild (43dc0581)
    • tabler vendors (08a12605)
    • single pages (e22eb52c)
    • license (a64dc02e)
    • wizard (8cd54e9c)
    • seo fixes (887e23af)
    • fix #137 (60723e62)
    • ribbons, container classes (223a69ec)
    • invoice fixes (71d76c23)
    • widgets fixes (d7514fbe)
    • preview css fixes (fa6ff747)
    • tabler-icons fixes (483182f5)
    • tabler-icons upgate, bootstrap update (74df267f)
    • missing files fixes (a6d37db5)
    • sitemap fix (a7d90607)
    • sitemap (8cb51f80)
    • sitemap (9f342786)
    • ribbon fixes (6262c262)
    • image preview (31cfbd25)
    • 404 page (0cccfa3a)
    • seo fix (cf2241c2)
    • preview-dev -> preview (d47077de)
    • analytics tag (6c8567c6)
    • site build fixes (cb0f68bc)
    • small logo fix (af7d9d66)
    • icons svg highlight (8667f809)
    • input number fixes (0f671cb2)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.12(Nov 9, 2020)

    • floating inputs demo (f04b0841)
    • bootstrap upgrade, remove btn-block, bootstrap 5 fixes (f464c60c)
    • invoice fixes, print fixes (bc8cde68)
    • icon fix (f0f7c113)
    • icons fixes (05713e7b)
    • Merge remote-tracking branch 'origin/dev' into dev (0b012d54)
    • iconfont fixes (88af16fb)
    • iconfont fixes (145b2183)
    • homepage fix (52dd843e)
    • activity fixes (43fd43de)
    • homepage charts (ab38d62d)
    • homepage activity (871ec8b4)
    • menu fixes, cleanup (06125409)
    • code cleanup (f76ac3c2)
    • Merge branch 'gryevns-modal-anchor-alignment' into dev (64741eed)
    • Merge branch 'modal-anchor-alignment' of https://github.com/gryevns/tabler into gryevns-modal-anchor-alignment (30440004)
    • Merge branch 'danswiser-dev' into dev (b80459bc)
    • resolve conflicts (e1f20ad1)
    • Merge branch 'dev' of https://github.com/tabler/tabler into danswiser-dev (3cc1dc45)
    • Merge branch 'dev' of https://github.com/danswiser/tabler-1 into danswiser-dev (b0fde34e)
    • Merge pull request #681 from rajan-31/first_contribution (1c11fbcd)
    • Merge branch 'dev' into first_contribution (d8f7d64e)
    • cross-spawn #705 (6c5b3bd3)
    • cross-spawn #705 (8be915e1)
    • tabler-icons upgrade (08449c33)
    • pre font smoothing (0acc7ee9)
    • playground init (52a2ff97)
    • Readme: status changes2 (6730be41)
    • Readme: status Changes (97478b06)
    • Avatar badge sizes (3a50f893)
    • Remove vertical-align for alert anchor elements (e20cc712)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0-alpha.11(Nov 7, 2020)

  • v1.0.0-alpha.10(Nov 5, 2020)

A shop homepage Bootstrap HTML template created by Start Bootstrap

Start Bootstrap - Shop Homepage Shop Homepage is a basic HTML online store homepage template for Bootstrap created by Start Bootstrap. Preview View Li

Start Bootstrap 390 Jan 1, 2023
A Bootstrap HTML business homepage template created by Start Bootstrap

Start Bootstrap - Business Frontpage Business Frontpage is a basic business website template for Bootstrap created by Start Bootstrap. Preview View Li

Start Bootstrap 181 Nov 28, 2022
A Bootstrap HTML homepage template with feature boxes - created by Start Bootstrap

Start Bootstrap - Heroic Features Heroic Features is a multipurpose HTML template for Bootstrap created by Start Bootstrap. Preview View Live Preview

Start Bootstrap 160 Nov 27, 2022
Now UI Kit Bootstrap 4 - Designed by Invision. Coded by Creative Tim

Now UI Kit Now UI Kit is a responsive Bootstrap 4 kit provided for free by Invision and Creative Tim. It is a beautiful cross-platform UI kit featurin

Creative Tim 1.7k Jan 7, 2023
A responsive, Bootstrap landing page template created by Start Bootstrap

Start Bootstrap - Landing Page Landing Page is a multipurpose landing page template for Bootstrap created by Start Bootstrap. Preview View Live Previe

Start Bootstrap 1.4k Jan 3, 2023
Bootstrap-print-css - Print Stylesheet for Bootstrap 5

Bootstrap Print CSS ??️ Bootstrap 5 no longer includes custom CSS for printing - with the CSS in this project you can add it back. Note: This should i

Christian Oliff 35 Dec 13, 2022
Light-switch-bootstrap - Dark mode toggle for Bootstrap 5

?? Light Switch for Bootstrap 5 Basic Bootstrap 5 custom checkbox to use night mode in your web site. Under the hood Switching to dark mode is done by

Han 35 Jan 2, 2023
FREE Bootstrap Landing Page Template for Developers and Startups

Theme Details & Demo Details: https://themes.3rdwavemedia.com/bootstrap-templates/startup/appkit-landing-free-bootstrap-theme-for-developers-and-start

Xiaoying Riley 158 Nov 30, 2022
AngularJS SPA Template for Visual Studio is a project skeleton for a simple single-page web application (SPA) built with AngularJS, Bootstrap, and ASP.NET (MVC, Web Api, SignalR).

AngularJS SPA Template for Visual Studio This project is a skeleton for a simple single-page web application (SPA) built on top of the: AngularJS 1.2.

Kriasoft 105 Jun 18, 2022
CSS Boilerplate / Starter Kit: Collection of best-practice CSS selectors

Natural Selection Natural Selection is a CSS framework without any styling at all. It is just a collection of selectors that can be used to define glo

FrontAid CMS 104 Dec 8, 2022
This project is for those who are new to open-source and looking for make their first contribution

First Contribution This project is for those who are new to open-source and looking for make their first contribution. Follow the steps below :- If yo

Heritage Institute of Technology 2025 122 Jan 4, 2023
Themes for Bootstrap

Bootswatch A collection of open source themes for Bootstrap View Bootswatch themes » Report bug · Request feature · Blog Usage There are a few differe

Thomas Park 13.9k Jan 2, 2023
Jekyll Bootstrap theme

Landing Page Jekyll theme Jekyll theme based on landing-page bootstrap theme How to use Place a image in /img/services/ Create posts to display your s

Shane Weng 412 Dec 3, 2022
A web app landing page theme created by Start Bootstrap

Start Bootstrap - New Age New Age is a web app landing page theme for Bootstrap created by Start Bootstrap. Preview View Live Preview Status Download

Start Bootstrap 996 Dec 26, 2022
An Ember-flavoured Bootstrap 4.x eco-system

ui-bootstrap Adds a complete Ember Bootstrap 4.x eco-system THIS IS CURRENTLY A WORK IN PROGRESS ... it works but it will be "ready" pretty soon Insta

LifeGadget 12 Jan 25, 2021
A small codebase to simulate environment of a real software engineering job built using html/css/js

How to setup your development environment? Before you can begin, you will need git, node, and a text editor. If you are running Windows, we recommend

JobSimulator 89 Dec 21, 2022
Break free from CSS prefix hell!

-prefix-free Break free from CSS prefix hell! Project homepage A script that lets you use only unprefixed CSS properties everywhere. It works behind t

Lea Verou 3.8k Dec 19, 2022
Free responsive one page portfolio template

Portfolio one page template - ARCHIVED Flat and responsive website template, designed and coded by Maxim Orlov. Demo: http://website-templates.github.

Website templates 164 Jan 2, 2023
📱 Free to use static generated website template for your mobile app

Mobile App Landing Page Template ?? Free to use static generated landing page template for your mobile app ?? Features Mobile App Landing Page Templat

Sandoche ADITTANE 467 Dec 30, 2022