Notifications Style
8 |Notification states
34 |61 |
62 | 94 |
├── .babelrc ├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── .postcssrc.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── documentation ├── css │ ├── demo.css │ ├── documentation.css │ └── light-dashboard.css ├── img │ ├── apple-icon.png │ ├── back.jpg │ ├── favicon.png │ └── tim-logo.png └── tutorial-components.html ├── intelij.webpack.js ├── package.json ├── public ├── .gitkeep ├── Dashboard.PNG ├── favicon.png ├── img │ ├── default-avatar.png │ ├── faces │ │ ├── face-0.jpg │ │ ├── face-1.jpg │ │ ├── face-2.jpg │ │ ├── face-3.jpg │ │ ├── face-4.jpg │ │ ├── face-5.jpg │ │ ├── face-6.jpg │ │ ├── face-7.jpg │ │ └── tim_vector.jpe │ ├── favicon.ico │ ├── favicon.png │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ ├── loading-bubbles.svg │ ├── mask.png │ ├── new_logo.png │ ├── sidebar-1.jpg │ ├── sidebar-2.jpg │ ├── sidebar-3.jpg │ ├── sidebar-4.jpg │ ├── sidebar-5.jpg │ ├── tim_80x80.png │ └── vue-logo.png ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.vue ├── assets │ ├── css │ │ └── demo.css │ ├── fonts │ │ ├── nucleo-icons.eot │ │ ├── nucleo-icons.svg │ │ ├── nucleo-icons.ttf │ │ ├── nucleo-icons.woff │ │ └── nucleo-icons.woff2 │ └── sass │ │ ├── lbd │ │ ├── _alerts.scss │ │ ├── _bootstrap-switch.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _chartist.scss │ │ ├── _checkbox-radio-switch.scss │ │ ├── _dropdown.scss │ │ ├── _footers.scss │ │ ├── _inputs.scss │ │ ├── _misc.scss │ │ ├── _mixins.scss │ │ ├── _navbars.scss │ │ ├── _partial-nucleo-icons.scss │ │ ├── _responsive.scss │ │ ├── _sidebar-and-main-panel.scss │ │ ├── _tables.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ ├── mixins │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _chartist.scss │ │ │ ├── _icons.scss │ │ │ ├── _inputs.scss │ │ │ ├── _labels.scss │ │ │ ├── _morphing-buttons.scss │ │ │ ├── _navbars.scss │ │ │ ├── _social-buttons.scss │ │ │ ├── _tabs.scss │ │ │ ├── _transparency.scss │ │ │ └── _vendor-prefixes.scss │ │ └── plugins │ │ │ ├── _animate.scss │ │ │ └── _datetime-picker.scss │ │ └── light-bootstrap-dashboard.scss ├── components │ ├── BaseDropdown.vue │ ├── Cards │ │ ├── Card.vue │ │ ├── ChartCard.vue │ │ └── StatsCard.vue │ ├── Inputs │ │ ├── BaseCheckbox.vue │ │ ├── BaseInput.vue │ │ └── BaseRadio.vue │ ├── NotificationPlugin │ │ ├── Notification.vue │ │ ├── Notifications.vue │ │ └── index.js │ ├── SidebarPlugin │ │ ├── SideBar.vue │ │ ├── SidebarLink.vue │ │ └── index.js │ ├── Table.vue │ └── index.js ├── directives │ └── click-ouside.js ├── globalComponents.js ├── globalDirectives.js ├── layout │ ├── Content.vue │ ├── ContentFooter.vue │ ├── DashboardLayout.vue │ ├── MobileMenu.vue │ └── TopNavbar.vue ├── light-bootstrap-main.js ├── main.js ├── pages │ ├── Icons.vue │ ├── Maps.vue │ ├── Maps │ │ └── API_KEY.js │ ├── NotFoundPage.vue │ ├── Notifications.vue │ ├── Overview.vue │ ├── TableList.vue │ ├── Typography.vue │ ├── Upgrade.vue │ ├── UserProfile.vue │ └── UserProfile │ │ ├── EditProfileForm.vue │ │ └── UserCard.vue ├── registerServiceWorker.js └── routes │ └── routes.js └── vue.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@vue/app", 5 | { 6 | "polyfills": ["es7.object.entries", "es6.promise"] 7 | } 8 | ] 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "extends": [ 4 | "plugin:vue/essential" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Autocloser 2 | on: [issues] 3 | jobs: 4 | autoclose: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - name: Issue auto-closer 8 | uses: roots/issue-closer-action@v1.1 9 | with: 10 | repo-token: ${{ secrets.GITHUB_TOKEN }} 11 | issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the bellow rules:\n\n
\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/vue-light-bootstrap-dashboard\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n\n\n" 12 | issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>) 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | package-lock.json 4 | yarn.lock 5 | dist/ 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | test/unit/coverage 10 | 11 | # Editor directories and files 12 | .idea 13 | *.suo 14 | *.ntvs* 15 | *.njsproj 16 | *.sln 17 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | // to edit target browsers: use "browserslist" field in package.json 6 | "autoprefixer": {} 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [2.1.0] 2023-01-10 4 | 5 | - Update dependencies and devDependencies 6 | - Migrate from `node-sass` to `sass` 7 | - Fix installation issue when running `npm i` 8 | 9 | ## [2.0.0] 2019-02-14 10 | 11 | - Update to Bootstrap 4 12 | - Update to Vue CLI 3 13 | - Several UI fixes & improvements 14 | - Cleanup and simplify code structure 15 | - Add pwa support 16 | 17 | ## [1.0.0] 2017-06-18 18 | 19 | ### Stable Original Release 20 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at joracristi@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | * Fork the repository 2 | * Clone it on your PC 3 | * `npm install` or `yarn install` 4 | * Make changes, commit and open a PR 5 | 6 | ### Notes 7 | * Please don't use jQuery or jQuery based plugins since there are many pure Vue alternatives 8 | * Write unit tests for your custom components. See fgInput.spec and paper-table.spec 9 | 10 | For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). 11 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Cristi Jora 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Vue Light Bootstrap Dashboard](http://vuejs.creative-tim.com/vue-light-bootstrap-dashboard) [![version][version-badge]][changelog] [![license][license-badge]][license] 2 | 3 | > Admin dashboard based on light bootstrap dashboard UI template + vue-router 4 | 5 | This project is a vue version of [Light bootstrap dashboard](https://www.creative-tim.com/product/light-bootstrap-dashboard) 6 | designed for vue js. The dashboard includes Bootstrap 4, vue-router, chartist, google-maps and several other plugins/components. 7 | 8 | Check the [Live Demo here](http://vuejs.creative-tim.com/vue-light-bootstrap-dashboard). 9 | 10 |  11 | 12 | ## :rocket: Getting started 13 | 14 | Vue Light Bootstrap Dashboard is built on top of Bootstrap 4, Vuejs and Vue-router. To get started do the following steps: 15 | 16 | 1. Download the project 17 | 2. Make sure you have node.js (https://nodejs.org/en/) installed 18 | 3. Type `npm install` in the source folder where `package.json` is located 19 | 4. Type `npm run dev` to start the development server 20 | 21 | The repo uses [vue-cli](https://github.com/vuejs/vue-cli) scaffolding which takes care of the development setup with webpack and all the necessary modern tools to make web development faster and easier. 22 | 23 | ## [Documentation](https://demos.creative-tim.com/vue-light-bootstrap-dashboard/documentation/#/buttons) 24 | 25 | ## :cloud: Build Setup 26 | 27 | ### install dependencies 28 | 29 | `npm install` 30 | 31 | ### serve with hot reload at localhost:8000 32 | 33 | `npm run dev` 34 | 35 | ### build for production with minification 36 | 37 | `npm run build` 38 | 39 | ### run unit tests 40 | 41 | `npm run unit` 42 | 43 | ### run and watch unit tests 44 | 45 | `npm run unit:watch` 46 | 47 | ## :clipboard: Contribution guide 48 | 49 | - `npm install` or `yarn install` 50 | - Please don't use jQuery or jQuery based plugins since there are many pure Vue alternatives 51 | 52 | For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). 53 | 54 | [changelog]: ./CHANGELOG.md 55 | [license]: ./LICENSE.md 56 | [version-badge]: https://img.shields.io/badge/version-2.1.0-blue.svg 57 | [license-badge]: https://img.shields.io/badge/license-MIT-blue.svg 58 | -------------------------------------------------------------------------------- /documentation/css/demo.css: -------------------------------------------------------------------------------- 1 | @media (min-width: 992px){ 2 | .typo-line{ 3 | padding-left: 140px; 4 | margin-bottom: 40px; 5 | position: relative; 6 | } 7 | 8 | .typo-line .category{ 9 | transform: translateY(-50%); 10 | top: 50%; 11 | left: 0px; 12 | position: absolute; 13 | } 14 | } 15 | 16 | .icon-section { 17 | margin: 0 0 3em; 18 | clear: both; 19 | overflow: hidden; 20 | } 21 | .icon-container { 22 | width: 240px; 23 | padding: .7em 0; 24 | float: left; 25 | position: relative; 26 | text-align: left; 27 | } 28 | .icon-container [class^="ti-"], 29 | .icon-container [class*=" ti-"] { 30 | color: #000; 31 | position: absolute; 32 | margin-top: 3px; 33 | transition: .3s; 34 | } 35 | .icon-container:hover [class^="ti-"], 36 | .icon-container:hover [class*=" ti-"] { 37 | font-size: 2.2em; 38 | margin-top: -5px; 39 | } 40 | .icon-container:hover .icon-name { 41 | color: #000; 42 | } 43 | .icon-name { 44 | color: #aaa; 45 | margin-left: 35px; 46 | font-size: .8em; 47 | transition: .3s; 48 | } 49 | .icon-container:hover .icon-name { 50 | margin-left: 45px; 51 | } 52 | 53 | .places-buttons .btn{ 54 | margin-bottom: 30px 55 | } 56 | .sidebar .nav > li.active-pro{ 57 | position: absolute; 58 | width: 100%; 59 | bottom: 10px; 60 | } 61 | .sidebar .nav > li.active-pro a{ 62 | background: rgba(255, 255, 255, 0.14); 63 | opacity: 1; 64 | color: #FFFFFF; 65 | } 66 | 67 | .table-upgrade td:nth-child(2), 68 | .table-upgrade td:nth-child(3){ 69 | text-align: center; 70 | } 71 | body.nude{ 72 | background-color: #f4f3ef; 73 | } 74 | -------------------------------------------------------------------------------- /documentation/css/documentation.css: -------------------------------------------------------------------------------- 1 | .tim-row{ 2 | padding-top: 60px; 3 | } 4 | pre.prettyprint{ 5 | background-color: #eee; 6 | border: 0px; 7 | margin-bottom: 0; 8 | margin-top: 20px; 9 | padding: 20px; 10 | text-align: left; 11 | } 12 | .atv, .str{ 13 | color: #05AE0E; 14 | } 15 | .tag, .pln, .kwd{ 16 | color: #3472F7; 17 | } 18 | .atn{ 19 | color: #2C93FF; 20 | } 21 | .pln{ 22 | color: #333; 23 | } 24 | .com{ 25 | color: #999; 26 | } 27 | .space-top{ 28 | margin-top: 50px; 29 | } 30 | .btn-primary .caret{ 31 | border-top-color: #3472F7; 32 | color: #3472F7; 33 | } 34 | .area-line{ 35 | border: 1px solid #999; 36 | border-left: 0; 37 | border-right: 0; 38 | color: #666; 39 | display: block; 40 | margin-top: 20px; 41 | padding: 8px 0; 42 | text-align: center; 43 | } 44 | .area-line a{ 45 | color: #666; 46 | } 47 | .container-fluid{ 48 | padding-right: 15px; 49 | padding-left: 15px; 50 | } 51 | .logo-container .logo{ 52 | overflow: hidden; 53 | border-radius: 50%; 54 | border: 1px solid #333333; 55 | width: 50px; 56 | float: left; 57 | } 58 | .header-wrapper { 59 | position: relative; 60 | height: 100%; 61 | } 62 | 63 | .header-wrapper .navbar { 64 | border-radius: 0; 65 | position: absolute; 66 | width: 100%; 67 | z-index: 3; 68 | } 69 | .header-wrapper .header { 70 | background-color: #ff8f5e; 71 | background-position: center center; 72 | background-size: cover; 73 | height: 100%; 74 | overflow: hidden; 75 | position: absolute; 76 | width: 100%; 77 | z-index: 1; 78 | } 79 | .header-wrapper .header .filter::after { 80 | content: ""; 81 | display: block; 82 | height: 100%; 83 | left: 0; 84 | opacity: 0.77; 85 | position: absolute; 86 | top: 0; 87 | width: 100%; 88 | z-index: 2; 89 | } 90 | .header-wrapper .title-container{ 91 | color: #fff; 92 | position: relative; 93 | top: 30%; 94 | z-index: 3; 95 | 96 | } 97 | .logo-container .brand{ 98 | font-size: 18px; 99 | color: #FFFFFF; 100 | line-height: 20px; 101 | float: left; 102 | margin-left: 10px; 103 | margin-top: 5px; 104 | width: 50px; 105 | height: 50px; 106 | } 107 | .logo-container{ 108 | margin-top: 10px; 109 | margin-left: 15px; 110 | } 111 | .logo-container .logo img{ 112 | width: 100%; 113 | } 114 | .navbar-small .logo-container .brand{ 115 | color: #333333; 116 | } 117 | .fixed-section{ 118 | top: 90px; 119 | max-height: 493px; 120 | overflow: scroll; 121 | border-bottom: 1px solid rgba(220,220,220, .6); 122 | } 123 | 124 | .fixed-section ul{ 125 | padding: 0; 126 | } 127 | 128 | .fixed-section.affix-top{ 129 | margin-top: 90px; 130 | } 131 | 132 | .fixed-section ul li{ 133 | list-style: none; 134 | } 135 | .fixed-section li a{ 136 | font-size: 14px; 137 | padding: 2px; 138 | display: block; 139 | color: #666666; 140 | } 141 | .fixed-section li a.active{ 142 | color: #00bbff; 143 | } 144 | .fixed-section.float{ 145 | position: fixed; 146 | top: 100px; 147 | width: 200px; 148 | margin-top: 0; 149 | } 150 | .copyright { 151 | color: #777777; 152 | padding: 10px 15px; 153 | font-size: 14px; 154 | margin: 15px 3px; 155 | line-height: 20px; 156 | text-align: center; 157 | } 158 | 159 | .table-bigboy .img-container{ 160 | width: 130px; 161 | height: 85px; 162 | } 163 | 164 | .table-bigboy .td-name{ 165 | min-width: 170px; 166 | } 167 | #buttons-row .btn{ 168 | margin-bottom: 15px; 169 | } 170 | 171 | .navbar .navbar-nav > li > a.btn.btn-white, 172 | .navbar .navbar-nav > li > a.btn.btn-white:hover, 173 | .navbar .navbar-nav > li > a.btn.btn-white:focus{ 174 | color: #FFFFFF; 175 | } 176 | 177 | @media (min-width: 992px){ 178 | .navbar { 179 | min-height: 70px; 180 | } 181 | } 182 | 183 | .header-full{ 184 | min-height: 100vh; 185 | height: auto; 186 | max-height: 999px; 187 | } 188 | .filter{ 189 | position: absolute; 190 | left: 0; 191 | right: 0; 192 | top: 0; 193 | bottom: 0; 194 | width: 100%; 195 | height: 100%; 196 | z-index: 0; 197 | 198 | } 199 | .filter:after{ 200 | background: #0a6715; 201 | background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #0ab961 0%, #0a6715 100%) repeat scroll 0 0 / 150% 150%; 202 | height: 100% !important; 203 | } 204 | -------------------------------------------------------------------------------- /documentation/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal9122/docs3-2/bc91de95b1846ec4d7931043eb51ab88855f9239/documentation/img/apple-icon.png -------------------------------------------------------------------------------- /documentation/img/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal9122/docs3-2/bc91de95b1846ec4d7931043eb51ab88855f9239/documentation/img/back.jpg -------------------------------------------------------------------------------- /documentation/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal9122/docs3-2/bc91de95b1846ec4d7931043eb51ab88855f9239/documentation/img/favicon.png -------------------------------------------------------------------------------- /documentation/img/tim-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal9122/docs3-2/bc91de95b1846ec4d7931043eb51ab88855f9239/documentation/img/tim-logo.png -------------------------------------------------------------------------------- /documentation/tutorial-components.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
{{subTitle}}
10 |{{link.name}}
10 |{{column}} | 7 |
---|
{{itemValue(item, column)}} | 14 |
Dashboard
8 |User Profile
12 |Table list
16 |Typography
20 |Icons
24 |Maps
28 |Notifications
32 |Upgrade to PRO
39 |Capacity
12 |Revenue
27 |Errors
42 |Followers
57 |24 Hours performance
74 | 75 | 76 |Last Campaign Performance
94 | 95 | 96 |All products including Taxes
120 | 121 | 122 |Backend development
139 | 140 |Here is a subtitle for this table
12 | 13 |Here is a subtitle for this table
26 | 27 |Here is a subtitle for this table
43 | 44 |Created using Roboto Font Family
10 | 11 |Header 1
Light Bootstrap Table Heading 13 |Header 2
Light Bootstrap Table Heading 17 |Header 3
Light Bootstrap Table Heading 20 |Header 4
Light Bootstrap Table Heading 23 |Header 5
Light Bootstrap Table Heading 26 |Header 6
Light Bootstrap Table Heading 29 |ParagraphLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam. 32 |
33 |Quote
36 |37 |44 |38 | Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam. 39 |
40 | 41 | Steve Jobs, CEO Apple 42 | 43 |
Muted Text
48 |49 | Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet. 50 |
51 |Coloured Text
57 |58 | Text Primary - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 59 |
60 |61 | Text Info - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 62 |
63 |64 | Text Success - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 65 |
66 |67 | Text Warning - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 68 |
69 |70 | Text Danger - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 71 |
72 |Small Tag
Header with small subtitleAre you looking for more components? Please check our Premium Version of Light Bootstrap Dashboard.
10 |16 | | Free | 17 |PRO | 18 |
---|---|---|
Components | 22 |16 | 23 |160+ | 24 |
Plugins | 27 |4 | 28 |17+ | 29 |
Example Pages | 32 |4 | 33 |25+ | 34 |
Documentation | 37 |38 | | 39 | |
SASS Files | 42 |43 | | 44 | |
Login/Register/Lock Pages | 47 |48 | | 49 | |
Premium Support | 52 |53 | | 54 | |
57 | | Free | 58 |Just $49 | 59 |
62 | | 63 | Current Version 64 | | 65 |66 | Upgrade to PRO 67 | | 68 |
"Lamborghini Mercy
14 | Your chick she so thirsty
15 | I'm in that two seat Lambo"
16 |