diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-01-31 00:07:23 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-01-31 00:07:23 +0100 |
commit | d7059e321f796301c19cb1b9746eb3e27d7480bd (patch) | |
tree | 43f297d4a0646af5948aa3cc06bb836779097e56 /src/main/resources | |
parent | 20224268cfd05aefd935547e44dd938cf6e2e312 (diff) | |
download | kvision-d7059e321f796301c19cb1b9746eb3e27d7480bd.tar.gz kvision-d7059e321f796301c19cb1b9746eb3e27d7480bd.tar.bz2 kvision-d7059e321f796301c19cb1b9746eb3e27d7480bd.zip |
Option to disable Bootstrap CSS
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/js/bootstrap.config.js | 64 | ||||
-rw-r--r-- | src/main/resources/js/bootstrap.config.less | 0 |
2 files changed, 64 insertions, 0 deletions
diff --git a/src/main/resources/js/bootstrap.config.js b/src/main/resources/js/bootstrap.config.js new file mode 100644 index 00000000..906942d1 --- /dev/null +++ b/src/main/resources/js/bootstrap.config.js @@ -0,0 +1,64 @@ +module.exports = { + + // Default for the style loading + styleLoader: 'style-loader!css-loader!less-loader', + + scripts: { + 'transition': true, + 'alert': true, + 'button': true, + 'carousel': true, + 'collapse': true, + 'dropdown': true, + 'modal': true, + 'tooltip': true, + 'popover': true, + 'scrollspy': true, + 'tab': true, + 'affix': true + }, + styles: { + "mixins": false, + + "normalize": false, + "print": false, + + "scaffolding": false, + "type": false, + "code": false, + "grid": false, + "tables": false, + "forms": false, + "buttons": false, + + "component-animations": false, + "glyphicons": false, + "dropdowns": false, + "button-groups": false, + "input-groups": false, + "navs": false, + "navbar": false, + "breadcrumbs": false, + "pagination": false, + "pager": false, + "labels": false, + "badges": false, + "jumbotron": false, + "thumbnails": false, + "alerts": false, + "progress-bars": false, + "media": false, + "list-group": false, + "panels": false, + "wells": false, + "close": false, + + "modals": false, + "tooltip": false, + "popovers": false, + "carousel": false, + + "utilities": false, + "responsive-utilities": false + } +}; diff --git a/src/main/resources/js/bootstrap.config.less b/src/main/resources/js/bootstrap.config.less new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/src/main/resources/js/bootstrap.config.less |