From 3224f7227e6fd4e73146be7f6a750b48464d6972 Mon Sep 17 00:00:00 2001 From: Paul Laros Date: Thu, 25 Feb 2021 20:56:58 +0100 Subject: [PATCH] optimized bundle size, various --- src/js/modules/bootstrap.js | 14 - src/scss/3-components/_alert.scss | 28 +- src/scss/3-components/_buttons.scss | 21 +- src/scss/3-components/_modal.scss | 12 - src/scss/3-components/_progress.scss | 7 - src/scss/3-components/_tables.scss | 74 --- src/scss/app.scss | 33 +- static/charts-chartjs.html | 17 +- static/forms-basic-inputs.html | 17 +- static/forms-layouts.html | 549 ------------------ static/icons-feather.html | 17 +- static/index.html | 49 +- static/maps-google.html | 17 +- static/pages-blank.html | 17 +- static/pages-invoice.html | 17 +- static/pages-profile.html | 21 +- static/pages-settings.html | 17 +- static/tables-bootstrap.html | 800 --------------------------- static/ui-alerts.html | 260 +-------- static/ui-buttons.html | 103 +--- static/ui-cards.html | 90 +-- static/ui-general.html | 275 +-------- static/ui-grid.html | 25 +- static/ui-modals.html | 740 ------------------------- static/ui-typography.html | 17 +- 25 files changed, 109 insertions(+), 3128 deletions(-) delete mode 100644 src/scss/3-components/_modal.scss delete mode 100644 src/scss/3-components/_progress.scss delete mode 100644 static/forms-layouts.html delete mode 100644 static/tables-bootstrap.html delete mode 100644 static/ui-modals.html diff --git a/src/js/modules/bootstrap.js b/src/js/modules/bootstrap.js index 12b962a..6eff55c 100644 --- a/src/js/modules/bootstrap.js +++ b/src/js/modules/bootstrap.js @@ -1,19 +1,5 @@ import * as bootstrap from "bootstrap"; -// Popovers -// Note: Disable this if you're not using Bootstrap's Popovers -const popoverTriggerList = [].slice.call(document.querySelectorAll("[data-bs-toggle=\"popover\"]")) -popoverTriggerList.map((popoverTriggerEl) => { - return new bootstrap.Popover(popoverTriggerEl) -}) - -// Tooltips -// Note: Disable this if you're not using Bootstrap's Tooltips -const tooltipTriggerList = [].slice.call(document.querySelectorAll("[data-bs-toggle=\"tooltip\"]")) -tooltipTriggerList.map((tooltipTriggerEl) => { - return new bootstrap.Tooltip(tooltipTriggerEl) -}) - // Bootstrap // Note: If you want to make bootstrap globally available, e.g. for using `bootstrap.modal` window.bootstrap = bootstrap; \ No newline at end of file diff --git a/src/scss/3-components/_alert.scss b/src/scss/3-components/_alert.scss index 5ce9534..f47ed3f 100644 --- a/src/scss/3-components/_alert.scss +++ b/src/scss/3-components/_alert.scss @@ -1,17 +1,9 @@ .alert { padding: 0; display: flex; - // color: $white; - - .close:hover, - .close:focus { - // color: $white; - opacity: 1; - } } -.alert-outline, -.alert-outline-coloured { +.alert-outline { color: $body-color; background: $white; @@ -19,11 +11,6 @@ border-top-color: $gray-400; } - .close:hover, - .close:focus { - color: $gray-800; - } - .alert-message { @include border-end-radius($alert-border-radius); @include border-start-radius($alert-border-radius); @@ -47,19 +34,6 @@ } } -.alert-outline-coloured { - @each $color, $value in $theme-colors { - &.alert-#{$color} .alert-message { - border-color: $value; - } - } -} - -.alert-icon { - padding: $alert-padding-y $alert-padding-x; - background: rgba(0,0,0,.05); -} - .alert-message { padding: $alert-padding-y $alert-padding-x; width: 100%; diff --git a/src/scss/3-components/_buttons.scss b/src/scss/3-components/_buttons.scss index 7df09db..04cc7b0 100644 --- a/src/scss/3-components/_buttons.scss +++ b/src/scss/3-components/_buttons.scss @@ -1,11 +1,3 @@ -.btn-pill { - border-radius: 10rem; -} - -.btn-square { - border-radius: 0; -} - .btn .feather { width: 14px; height: 14px; @@ -16,11 +8,6 @@ @include button-color($white); @include button-color-hover($white); } - - .btn-outline-#{$color} { - @include button-color-hover($white); - @include button-color-active($white); - } } @each $color, $value in $social-colors { @@ -35,10 +22,4 @@ .btn-white { @include button-color($gray-800); @include button-color-hover($gray-800); -} - -.btn-outline-light, -.btn-outline-white { - @include button-color-hover($gray-800); - @include button-color-active($gray-800); -} +} \ No newline at end of file diff --git a/src/scss/3-components/_modal.scss b/src/scss/3-components/_modal.scss deleted file mode 100644 index 28e4d3e..0000000 --- a/src/scss/3-components/_modal.scss +++ /dev/null @@ -1,12 +0,0 @@ -@each $color, $value in $theme-colors { - .modal-#{$color} { - @include modal-variant($value); - } -} - -.modal-colored { - .modal-header, - .modal-footer { - border-color: rgba(255, 255, 255, 0.33) - } -} diff --git a/src/scss/3-components/_progress.scss b/src/scss/3-components/_progress.scss deleted file mode 100644 index da3aeee..0000000 --- a/src/scss/3-components/_progress.scss +++ /dev/null @@ -1,7 +0,0 @@ -.progress-sm { - height: $progress-height-sm; -} - -.progress-lg { - height: $progress-height-lg; -} diff --git a/src/scss/3-components/_tables.scss b/src/scss/3-components/_tables.scss index b5d1a6d..4957952 100644 --- a/src/scss/3-components/_tables.scss +++ b/src/scss/3-components/_tables.scss @@ -8,80 +8,6 @@ } } -.card { - > .dataTables_wrapper .table.dataTable, - > .table, - > .table-responsive .table, - > .table-responsive-sm .table, - > .table-responsive-md .table, - > .table-responsive-lg .table, - > .table-responsive-xl .table { - border-right: 0; - border-bottom: 0; - border-left: 0; - margin-bottom: 0; - - td:first-child, - th:first-child { - border-left: 0; - padding-left: $spacer*1.25; - } - - td:last-child, - th:last-child { - border-right: 0; - padding-right: $spacer*1.25; - } - - tr:first-child td, - tr:first-child th { - border-top: 0; - } - - tr:last-child td { - border-bottom: 0; - } - } - - .card-header + .table { - border-top: 0; - } -} - -.table-action { - a { - color: $gray-600; - - &:hover { - color: $gray-900; - } - } - - .feather { - width: 18px; - height: 18px; - } -} - .table > tbody > tr > td { vertical-align: middle; -} - -.card > .dataTables_wrapper { - .table.dataTable { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - - .dataTables_info { - padding: 1rem 1.25rem; - } - - .dataTables_paginate { - padding: 0.6rem 1.25rem; - } -} - -.dt-bootstrap4 { - width: calc(100% - 2px); } \ No newline at end of file diff --git a/src/scss/app.scss b/src/scss/app.scss index 2104b75..3710de6 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -1,7 +1,7 @@ /*! * AdminKit v2.1.1 (https://adminkit.io/) - * Copyright 2020 Paul Laros - * Copyright 2020 AdminKit + * Copyright 2021 Paul Laros + * Copyright 2021 AdminKit * Licensed under MIT (https://github.com/adminkit/adminkit/blob/master/LICENSE) */ @@ -10,7 +10,32 @@ @import "1-variables/custom"; // Bootstrap -@import "~bootstrap/scss/bootstrap"; +@import "~bootstrap/scss/functions"; +@import "~bootstrap/scss/variables"; +@import "~bootstrap/scss/mixins"; +@import "~bootstrap/scss/utilities"; +@import "~bootstrap/scss/root"; +@import "~bootstrap/scss/reboot"; +@import "~bootstrap/scss/type"; +@import "~bootstrap/scss/images"; +@import "~bootstrap/scss/containers"; +@import "~bootstrap/scss/grid"; +@import "~bootstrap/scss/tables"; +@import "~bootstrap/scss/forms"; +@import "~bootstrap/scss/buttons"; +@import "~bootstrap/scss/transitions"; +@import "~bootstrap/scss/dropdown"; +@import "~bootstrap/scss/button-group"; +@import "~bootstrap/scss/nav"; +@import "~bootstrap/scss/navbar"; +@import "~bootstrap/scss/card"; +@import "~bootstrap/scss/breadcrumb"; +@import "~bootstrap/scss/badge"; +@import "~bootstrap/scss/alert"; +@import "~bootstrap/scss/list-group"; +@import "~bootstrap/scss/close"; +@import "~bootstrap/scss/helpers"; +@import "~bootstrap/scss/utilities/api"; // Theme mixins @import "2-mixins/button"; @@ -32,9 +57,7 @@ @import "3-components/hamburger"; @import "3-components/list-group"; @import "3-components/main"; -@import "3-components/modal"; @import "3-components/navbar"; -@import "3-components/progress"; @import "3-components/reboot"; @import "3-components/sidebar"; @import "3-components/sizing"; diff --git a/static/charts-chartjs.html b/static/charts-chartjs.html index 1ae82da..e0ea669 100644 --- a/static/charts-chartjs.html +++ b/static/charts-chartjs.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
diff --git a/static/forms-basic-inputs.html b/static/forms-basic-inputs.html index 17dec8b..f9e1bdf 100644 --- a/static/forms-basic-inputs.html +++ b/static/forms-basic-inputs.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
diff --git a/static/forms-layouts.html b/static/forms-layouts.html deleted file mode 100644 index f375b42..0000000 --- a/static/forms-layouts.html +++ /dev/null @@ -1,549 +0,0 @@ - - - - - - - - - - - - - - - Form Layouts | AdminKit Demo - - - - - - -
- - -
- - -
-
- -

Form Layouts

- -
-
-
-
-
Basic form
-
Default Bootstrap form layout.
-
-
-
-
- - -
-
- - -
-
- - -
-
- - - Example block-level help text here. -
-
- -
- -
-
-
-
-
-
-
-
Horizontal form
-
Horizontal Bootstrap layout.
-
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
- - - -
-
-
-
- -
- -
-
-
-
- -
-
-
-
-
-
- -
-
-
-
Form row
-
Bootstrap column layout.
-
-
-
-
-
- - -
-
- - -
-
-
- - -
-
- - -
-
-
- - -
-
- - -
-
- - -
-
-
- -
- -
-
-
-
- -
-
-
-
Inline form
-
Single horizontal row.
-
-
-
-
- - -
- -
- -
-
@
- -
-
- -
-
- - -
-
- -
- -
-
-
-
-
-
- -
-
- - -
-
- - - - - - \ No newline at end of file diff --git a/static/icons-feather.html b/static/icons-feather.html index fb154ea..066d35d 100644 --- a/static/icons-feather.html +++ b/static/icons-feather.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
diff --git a/static/index.html b/static/index.html index e315136..cb3466a 100644 --- a/static/index.html +++ b/static/index.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
@@ -479,57 +470,57 @@ Project Apollo - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 Done Vanessa Tucker Project Fireball - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 Cancelled William Harris Project Hades - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 Done Sharon Lessman Project Nitro - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 In progress Vanessa Tucker Project Phoenix - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 Done William Harris Project X - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 Done Sharon Lessman Project Romeo - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 Done Christina Mason Project Wombat - 01/01/2020 - 31/06/2020 + 01/01/2021 + 31/06/2021 In progress William Harris diff --git a/static/maps-google.html b/static/maps-google.html index 0085633..387ad47 100644 --- a/static/maps-google.html +++ b/static/maps-google.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
diff --git a/static/pages-blank.html b/static/pages-blank.html index 7d24b1e..f27f6ab 100644 --- a/static/pages-blank.html +++ b/static/pages-blank.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
diff --git a/static/pages-invoice.html b/static/pages-invoice.html index 68cecf0..4295c12 100644 --- a/static/pages-invoice.html +++ b/static/pages-invoice.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
diff --git a/static/pages-profile.html b/static/pages-profile.html index d2c5f45..c83ee90 100644 --- a/static/pages-profile.html +++ b/static/pages-profile.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
@@ -478,7 +469,9 @@
- Load more +
+ Load more +
diff --git a/static/pages-settings.html b/static/pages-settings.html index 357b62d..a5bf664 100644 --- a/static/pages-settings.html +++ b/static/pages-settings.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
diff --git a/static/tables-bootstrap.html b/static/tables-bootstrap.html deleted file mode 100644 index 9bdab11..0000000 --- a/static/tables-bootstrap.html +++ /dev/null @@ -1,800 +0,0 @@ - - - - - - - - - - - - - - - Tables | AdminKit Demo - - - - - - -
- - -
- - -
-
- -

Tables

- -
-
-
-
-
Basic Table
-
Using the most basic table markup, here’s how .table-based tables look in Bootstrap.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NamePhone NumberDate of BirthActions
Vanessa Tucker864-348-0485June 21, 1961 - - -
William Harris914-939-2458May 15, 1948 - - -
Sharon Lessman704-993-5435September 14, 1965 - - -
Christina Mason765-382-8195April 2, 1971 - - -
Robin Schneiders202-672-1407October 12, 1966 - - -
-
-
- -
-
-
-
Striped Rows
-
Use .table-striped to add zebra-striping to any table row within the <tbody>.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NamePhone NumberDate of BirthActions
Vanessa Tucker864-348-0485June 21, 1961 - - -
William Harris914-939-2458May 15, 1948 - - -
Sharon Lessman704-993-5435September 14, 1965 - - -
Christina Mason765-382-8195April 2, 1971 - - -
Robin Schneiders202-672-1407October 12, 1966 - - -
-
-
- -
-
-
-
Condensed Table
-
Add .table-sm to make tables more compact by cutting cell padding in half.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Operation SystemUsersShare
Windows8.23240%
Mac OS3.32220%
Linux4.23234%
FreeBSD1.12112%
Chrome OS1.33115%
Android2.30120%
iOS1.16214%
Windows Phone5627%
Other1.18114%
-
-
- -
-
-
-
Hoverable Rows
-
Add .table-hover to enable a hover state on table rows within a <tbody>.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NamePhone NumberDate of Birth
- Avatar Vanessa Tucker - 864-348-0485June 21, 1961
- Avatar William Harris - 914-939-2458May 15, 1948
- Avatar Sharon Lessman - 704-993-5435September 14, 1965
- Avatar Christina Mason - 765-382-8195April 2, 1971
-
-
- -
-
-
-
Bordered Table
-
Add .table-bordered for borders on all sides of the table and cells.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NamePhone NumberDate of BirthActions
Vanessa Tucker864-348-0485June 21, 1961 - - -
William Harris914-939-2458May 15, 1948 - - -
Sharon Lessman704-993-5435September 14, 1965 - - -
Christina Mason765-382-8195April 2, 1971 - - -
Robin Schneiders202-672-1407October 12, 1966 - - -
-
-
- -
-
-
-
Contextual Classes
-
Use contextual classes to color table rows or individual cells.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NamePhone NumberDate of BirthActions
Vanessa Tucker864-348-0485June 21, 1961 - - -
William Harris914-939-2458May 15, 1948 - - -
Sharon Lessman704-993-5435September 14, 1965 - - -
Christina Mason765-382-8195April 2, 1971 - - -
Robin Schneiders202-672-1407October 12, 1966 - - -
-
-
- -
-
-
-
Always responsive
-
Across every breakpoint, use .table-responsive for horizontally scrolling tables.
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#HeadingHeadingHeadingHeadingHeadingHeadingHeadingHeadingHeading
1CellCellCellCellCellCellCellCellCell
2CellCellCellCellCellCellCellCellCell
3CellCellCellCellCellCellCellCellCell
-
-
-
-
- -
-
- - -
-
- - - - - - \ No newline at end of file diff --git a/static/ui-alerts.html b/static/ui-alerts.html index 82b8dff..1a40b03 100644 --- a/static/ui-alerts.html +++ b/static/ui-alerts.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
@@ -366,207 +357,6 @@ -
-
-
-
Icon alerts
-
Alerts with icon and background color.
-
-
-
- - - - - - -
-
-
-
- -
-
-
-
Outline alerts
-
Alerts with contextual icon background.
-
-
-
- - - - - - -
-
-
-
- -
-
-
-
Colored outline alerts
-
Alerts with contextual outline color.
-
-
-
- - - - - - -
-
-
-
-
@@ -602,48 +392,6 @@
- -
-
-
-
Alerts with buttons
-
Alerts with actions.
-
-
-
- -
- -
- -
-
-
-
diff --git a/static/ui-buttons.html b/static/ui-buttons.html index 91b2800..ef98d8d 100644 --- a/static/ui-buttons.html +++ b/static/ui-buttons.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
@@ -342,90 +333,7 @@ - -
-
-
-
Rounded Buttons
-
Rounded Bootstrap buttons.
-
-
-
- - - - - - -
-
- - - - - - -
-
-
-
- -
-
-
-
Outline Buttons
-
Buttons without background color.
-
-
-
- - - - - - -
-
- - - - - - -
-
-
-
- -
-
-
-
Square Buttons
-
Buttons without border radius.
-
-
-
- - - - - - -
-
- - - - - - -
-
-
-
- -
Button Sizes
@@ -439,9 +347,7 @@
- -
Button Dropdown
@@ -672,7 +578,6 @@
- diff --git a/static/ui-cards.html b/static/ui-cards.html index 4915259..84fd161 100644 --- a/static/ui-cards.html +++ b/static/ui-cards.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
@@ -395,79 +386,6 @@ - -
-
-
- -
-
-
-
-
Card with tabs
-

Some quick example text to build on the card title and make up the bulk of the card's content.

- Go somewhere -
-
-
Card with tabs
-

Some quick example text to build on the card title and make up the bulk of the card's content.

- Go somewhere -
-
-
Card with tabs
-

Some quick example text to build on the card title and make up the bulk of the card's content.

- Go somewhere -
-
-
-
-
-
-
-
- -
-
-
-
-
Card with pills
-

Some quick example text to build on the card title and make up the bulk of the card's content.

- Go somewhere -
-
-
Card with pills
-

Some quick example text to build on the card title and make up the bulk of the card's content.

- Go somewhere -
-
-
Card with pills
-

Some quick example text to build on the card title and make up the bulk of the card's content.

- Go somewhere -
-
-
-
-
diff --git a/static/ui-general.html b/static/ui-general.html index 6bf0cdf..aa1e65e 100644 --- a/static/ui-general.html +++ b/static/ui-general.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
@@ -318,60 +309,6 @@
-
-
- -
-
- Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. - Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch - et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat - craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. -
-
-
-
- -
-
- Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. - Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch - et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat - craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. -
-
-
-
- -
-
- Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. - Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch - et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat - craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. -
-
-
-
-
Breadcrumbs
@@ -412,32 +349,6 @@
- -
-
-
Popovers
-
Examples for adding Bootstrap popovers.
-
-
- - - - -
-
- -
-
-
Tooltips
-
Examples for adding custom Bootstrap tooltips.
-
-
- - - - -
-
@@ -528,184 +439,6 @@
- - - - - -
-
-
Pagination
-
Examples for showing pagination.
-
-
- - - -
-
- -
-
-
Progress Bars
-
Examples for using Bootstrap custom progress bars.
-
-
-
-
Default
-
- -
-
Striped
-
- -
-
Animated
-
- -
-
Stacked
-
15%
-
30%
-
20%
-
-
-
- -
-
-
Spinners
-
Indicate the loading state of a component with Bootstrap spinners.
-
-
- -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- -
- -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
- Loading... -
-
diff --git a/static/ui-grid.html b/static/ui-grid.html index ff26ef8..619ad44 100644 --- a/static/ui-grid.html +++ b/static/ui-grid.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +
@@ -331,7 +322,6 @@ -
@@ -349,7 +339,6 @@
-
@@ -374,7 +363,6 @@
-
@@ -406,7 +394,6 @@
-
@@ -452,7 +439,6 @@
-
@@ -540,7 +526,6 @@
-
@@ -558,7 +543,6 @@
-
@@ -583,7 +567,6 @@
- diff --git a/static/ui-modals.html b/static/ui-modals.html deleted file mode 100644 index 21fc2d9..0000000 --- a/static/ui-modals.html +++ /dev/null @@ -1,740 +0,0 @@ - - - - - - - - - - - - - - - Modals | AdminKit Demo - - - - - - -
- - -
- - -
-
- -

Modals

- -
-
-
-
-
Default modal
-
Default Bootstrap modal.
-
-
-

Use Bootstrap’s JavaScript modal plugin to add dialogs to your site for lightboxes, user notifications, or completely custom content.

- - - - - - - - - - - - - - - - - -
-
-
- -
-
-
-
Colored modal
-
Colored Bootstrap modal.
-
-
-

Use Bootstrap’s JavaScript modal plugin to add dialogs to your site for lightboxes, user notifications, or completely custom content.

- - - - - - - - - - - - - - - - - -
-
-
- -
-
-
-
Centered modal
-
Vertically centered modal.
-
-
-

Use Bootstrap’s JavaScript modal plugin to add dialogs to your site for lightboxes, user notifications, or completely custom content.

- - - - - - - - - - - - - - - - - -
-
-
- -
-
-
-
Modal sizes
-
These sizes kick in at certain breakpoints to avoid scrollbars on smaller viewports.
-
-
-

Use Bootstrap’s JavaScript modal plugin to add dialogs to your site for lightboxes, user notifications, or completely custom content.

- - - - - - - - - - - - - -
-
-
-
- -
-
- - -
-
- - - - - - \ No newline at end of file diff --git a/static/ui-typography.html b/static/ui-typography.html index 7624005..d0ce485 100644 --- a/static/ui-typography.html +++ b/static/ui-typography.html @@ -84,7 +84,6 @@ - @@ -96,18 +95,8 @@ - - @@ -134,7 +123,9 @@
Are you looking for more components? Check out our premium version.
- Upgrade to Pro +
+ Upgrade to Pro +