├── images ├── .keep ├── .gitkeep ├── .DS_Store ├── avatars │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 2.jpg │ ├── 20.jpg │ ├── 21.jpg │ ├── 22.jpg │ ├── 23.jpg │ ├── 24.jpg │ ├── 25.jpg │ ├── 26.jpg │ ├── 27.jpg │ ├── 28.jpg │ ├── 29.jpg │ ├── 3.jpg │ ├── 30.jpg │ ├── 31.jpg │ ├── 32.jpg │ ├── 33.jpg │ ├── 34.jpg │ ├── 35.jpg │ ├── 36.jpg │ ├── 37.jpg │ ├── 38.jpg │ ├── 39.jpg │ ├── 4.jpg │ ├── 40.jpg │ ├── 41.jpg │ ├── 42.jpg │ ├── 43.jpg │ ├── 44.jpg │ ├── 45.jpg │ ├── 46.jpg │ ├── 47.jpg │ ├── 48.jpg │ ├── 49.jpg │ ├── 5.jpg │ ├── 50.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ └── .DS_Store ├── airframe-white-logo-only.svg └── airframe-logo-only.svg ├── _includes ├── modal-filter │ ├── li-modal-filter.html │ ├── input-filter.html │ └── navbar-filter.html ├── .DS_Store ├── auth │ └── footer.html ├── tasks │ ├── subtask │ │ ├── table-subtasks.html │ │ ├── files.html │ │ └── file.html │ ├── dropdown-priority.html │ ├── offcanvas-task-view.html │ ├── dropdown-status.html │ ├── dropdown-bulk.html │ ├── dropdown-options.html │ └── modal-create-tag.html ├── settings │ ├── header-settings.html │ ├── tr-pending.html │ └── pills-settings.html ├── V2 │ ├── dropdown-layout.html │ ├── header-small.html │ ├── collapse-group-grid.html │ ├── tr-group.html │ ├── table-tasks.html │ ├── card-image.html │ ├── list-tasks.html │ └── table-tasks-group.html ├── toasts │ ├── toast-saved.html │ └── toast-removed.html ├── modals │ ├── button-close-modal.html │ ├── modal-create-team.html │ └── modal-danger.html ├── badge │ └── badge-lg.html ├── layouts │ ├── navbar-transparent.html │ └── dropdown-profile.html └── empty-placeholder.html ├── .DS_Store ├── css ├── .DS_Store ├── helpers │ ├── _clearfix.scss │ ├── _text-truncation.scss │ ├── _visually-hidden.scss │ ├── _vr.scss │ ├── _stretched-link.scss │ ├── _stacks.scss │ ├── _focus-ring.scss │ ├── _color-bg.scss │ ├── _ratio.scss │ ├── _icon-link.scss │ ├── _position.scss │ └── _colored-links.scss ├── tests │ ├── .DS_Store │ ├── mixins │ │ ├── _media-query-color-mode-full.test.scss │ │ └── _color-modes.test.scss │ ├── sass-true │ │ ├── register.js │ │ └── runner.js │ ├── jasmine.js │ └── utilities │ │ └── _api.test.scss ├── mixins │ ├── _clearfix.scss │ ├── _lists.scss │ ├── _color-scheme.scss │ ├── _text-truncate.scss │ ├── _resize.scss │ ├── _banner.scss │ ├── _backdrop.scss │ ├── _pagination.scss │ ├── _container.scss │ ├── _image.scss │ ├── _box-shadow.scss │ ├── _color-mode.scss │ ├── _reset-text.scss │ ├── _alert.scss │ ├── _deprecate.scss │ ├── _list-group.scss │ ├── _transition.scss │ ├── _table-variants.scss │ ├── _visually-hidden.scss │ ├── _caret.scss │ ├── _gradients.scss │ └── _border-radius.scss ├── bootstrap-reboot.scss ├── forms │ ├── _form-text.scss │ ├── _validation.scss │ ├── _labels.scss │ ├── _form-select.scss │ ├── _floating-labels.scss │ └── _form-range.scss ├── _forms.scss ├── _helpers.scss ├── bootstrap-utilities.scss ├── _transitions.scss ├── _grid.scss ├── _mixins.scss ├── _placeholders.scss ├── bootstrap.scss ├── _badge.scss ├── _images.scss ├── _containers.scss ├── bootstrap-grid.scss ├── cheatsheet.css ├── _breadcrumb.scss ├── utilities │ └── _api.scss ├── _type.scss ├── _close.scss ├── _progress.scss ├── _alert.scss ├── _spinners.scss └── _toasts.scss ├── js ├── .DS_Store ├── cheatsheet.js └── color-modes.js ├── _data ├── priorityTasks.yml ├── statusColor.yml ├── days.yml ├── statusTasks.yml ├── tagsColors.yml ├── months.yml ├── years.yml ├── colors.yml ├── tagsTitles.yml ├── modalSelectUsers.yml ├── percents.yml ├── numbers.yml ├── firstName.yml ├── landscapes.yml ├── priorityby.yml ├── lastName.yml ├── filterby.yml ├── modalUsers.yml ├── statusby.yml ├── names.yml ├── users.yml ├── emails.yml ├── tagby.yml ├── projectsTitles.yml ├── tableTask.yml ├── badgesProjects.yml └── avatars.yml ├── fonts ├── .DS_Store └── bootstrap │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── Gemfile ├── favicon ├── favicon.ico ├── favicon-16x16.png ├── favicon-32x32.png ├── mstile-150x150.png ├── apple-touch-icon.png ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── browserconfig.xml ├── head.html └── site.webmanifest ├── tasks ├── grid │ ├── .DS_Store │ ├── drawer │ │ └── index.html │ └── index.html ├── table │ ├── group │ │ └── index.html │ ├── drawer │ │ └── index.html │ └── index.html ├── list │ ├── table │ │ ├── index.html │ │ ├── group │ │ │ ├── index.html │ │ │ └── details │ │ │ │ └── index.html │ │ └── details │ │ │ └── index.html │ ├── grid │ │ ├── index.html │ │ └── group │ │ │ ├── index.html │ │ │ └── details │ │ │ └── index.html │ ├── empty │ │ └── index.html │ └── list │ │ └── index.html ├── empty.html └── empty │ └── index.html ├── .gitignore ├── index.html ├── _config.yml ├── 404.html ├── projects ├── empty.html ├── grid │ └── index.html └── table │ └── index.html ├── forgot-password ├── forgot-password-reset.html ├── forgot-password-check.html ├── forgot-password.html └── forgot-password-set.html ├── _layouts ├── sidebar.html └── page.html ├── tests.html ├── Gemfile.lock ├── login.html ├── signup.html ├── settings └── password.html └── README.md /images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/modal-filter/li-modal-filter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/.DS_Store -------------------------------------------------------------------------------- /css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/css/.DS_Store -------------------------------------------------------------------------------- /css/helpers/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/js/.DS_Store -------------------------------------------------------------------------------- /_data/priorityTasks.yml: -------------------------------------------------------------------------------- 1 | - "danger" 2 | - "warning" 3 | - "primary" 4 | - "secondary" -------------------------------------------------------------------------------- /_data/statusColor.yml: -------------------------------------------------------------------------------- 1 | - "secondary" 2 | - "success" 3 | - "danger" 4 | - "warning" -------------------------------------------------------------------------------- /fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/fonts/.DS_Store -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'jekyll' 4 | gem "webrick", "~> 1.7" 5 | -------------------------------------------------------------------------------- /_data/days.yml: -------------------------------------------------------------------------------- 1 | - "Mon" 2 | - "Tue" 3 | - "Wed" 4 | - "Thu" 5 | - "Fri" 6 | - "Sat" 7 | - "Sun" -------------------------------------------------------------------------------- /_includes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/_includes/.DS_Store -------------------------------------------------------------------------------- /css/tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/css/tests/.DS_Store -------------------------------------------------------------------------------- /favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/favicon/favicon.ico -------------------------------------------------------------------------------- /images/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/1.jpg -------------------------------------------------------------------------------- /images/avatars/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/10.jpg -------------------------------------------------------------------------------- /images/avatars/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/11.jpg -------------------------------------------------------------------------------- /images/avatars/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/12.jpg -------------------------------------------------------------------------------- /images/avatars/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/13.jpg -------------------------------------------------------------------------------- /images/avatars/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/14.jpg -------------------------------------------------------------------------------- /images/avatars/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/15.jpg -------------------------------------------------------------------------------- /images/avatars/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/16.jpg -------------------------------------------------------------------------------- /images/avatars/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/17.jpg -------------------------------------------------------------------------------- /images/avatars/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/18.jpg -------------------------------------------------------------------------------- /images/avatars/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/19.jpg -------------------------------------------------------------------------------- /images/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/2.jpg -------------------------------------------------------------------------------- /images/avatars/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/20.jpg -------------------------------------------------------------------------------- /images/avatars/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/21.jpg -------------------------------------------------------------------------------- /images/avatars/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/22.jpg -------------------------------------------------------------------------------- /images/avatars/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/23.jpg -------------------------------------------------------------------------------- /images/avatars/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/24.jpg -------------------------------------------------------------------------------- /images/avatars/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/25.jpg -------------------------------------------------------------------------------- /images/avatars/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/26.jpg -------------------------------------------------------------------------------- /images/avatars/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/27.jpg -------------------------------------------------------------------------------- /images/avatars/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/28.jpg -------------------------------------------------------------------------------- /images/avatars/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/29.jpg -------------------------------------------------------------------------------- /images/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/3.jpg -------------------------------------------------------------------------------- /images/avatars/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/30.jpg -------------------------------------------------------------------------------- /images/avatars/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/31.jpg -------------------------------------------------------------------------------- /images/avatars/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/32.jpg -------------------------------------------------------------------------------- /images/avatars/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/33.jpg -------------------------------------------------------------------------------- /images/avatars/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/34.jpg -------------------------------------------------------------------------------- /images/avatars/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/35.jpg -------------------------------------------------------------------------------- /images/avatars/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/36.jpg -------------------------------------------------------------------------------- /images/avatars/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/37.jpg -------------------------------------------------------------------------------- /images/avatars/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/38.jpg -------------------------------------------------------------------------------- /images/avatars/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/39.jpg -------------------------------------------------------------------------------- /images/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/4.jpg -------------------------------------------------------------------------------- /images/avatars/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/40.jpg -------------------------------------------------------------------------------- /images/avatars/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/41.jpg -------------------------------------------------------------------------------- /images/avatars/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/42.jpg -------------------------------------------------------------------------------- /images/avatars/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/43.jpg -------------------------------------------------------------------------------- /images/avatars/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/44.jpg -------------------------------------------------------------------------------- /images/avatars/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/45.jpg -------------------------------------------------------------------------------- /images/avatars/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/46.jpg -------------------------------------------------------------------------------- /images/avatars/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/47.jpg -------------------------------------------------------------------------------- /images/avatars/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/48.jpg -------------------------------------------------------------------------------- /images/avatars/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/49.jpg -------------------------------------------------------------------------------- /images/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/5.jpg -------------------------------------------------------------------------------- /images/avatars/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/50.jpg -------------------------------------------------------------------------------- /images/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/6.jpg -------------------------------------------------------------------------------- /images/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/7.jpg -------------------------------------------------------------------------------- /images/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/8.jpg -------------------------------------------------------------------------------- /images/avatars/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/9.jpg -------------------------------------------------------------------------------- /tasks/grid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/tasks/grid/.DS_Store -------------------------------------------------------------------------------- /favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /images/avatars/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/images/avatars/.DS_Store -------------------------------------------------------------------------------- /_data/statusTasks.yml: -------------------------------------------------------------------------------- 1 | - icon: history 2 | color: secondary 3 | 4 | - icon: finished 5 | color: success -------------------------------------------------------------------------------- /favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /_data/tagsColors.yml: -------------------------------------------------------------------------------- 1 | - "secondary" 2 | - "success" 3 | - "danger" 4 | - "warning" 5 | - "primary" 6 | - "info" -------------------------------------------------------------------------------- /favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /css/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Text truncation 3 | // 4 | 5 | .text-truncate { 6 | @include text-truncate(); 7 | } 8 | -------------------------------------------------------------------------------- /fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0wczar/airframe/HEAD/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /_data/months.yml: -------------------------------------------------------------------------------- 1 | - "Jan" 2 | - "Feb" 3 | - "Mar" 4 | - "Apr" 5 | - "May" 6 | - "Jun" 7 | - "Jul" 8 | - "Aug" 9 | - "Sep" 10 | - "Oct" 11 | - "Nov" 12 | - "Dec" -------------------------------------------------------------------------------- /_data/years.yml: -------------------------------------------------------------------------------- 1 | - "2021" 2 | - "2020" 3 | - "2019" 4 | - "2018" 5 | - "2017" 6 | - "2016" 7 | - "2015" 8 | - "2014" 9 | - "2013" 10 | - "2012" 11 | - "2011" 12 | - "2010" -------------------------------------------------------------------------------- /_includes/auth/footer.html: -------------------------------------------------------------------------------- 1 | C) 2021 All Rights Reserved. Designed and implemented by www.webkom.co -------------------------------------------------------------------------------- /_data/colors.yml: -------------------------------------------------------------------------------- 1 | - "primary" 2 | - "secondary" 3 | - "success" 4 | - "danger" 5 | - "warning" 6 | - "info" 7 | - "indigo" 8 | - "purple" 9 | - "pink" 10 | - "orange" 11 | - "teal" 12 | - "cyan" -------------------------------------------------------------------------------- /css/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /css/helpers/_vr.scss: -------------------------------------------------------------------------------- 1 | .vr { 2 | display: inline-block; 3 | align-self: stretch; 4 | width: $vr-border-width; 5 | min-height: 1em; 6 | background-color: currentcolor; 7 | opacity: $hr-opacity; 8 | } 9 | -------------------------------------------------------------------------------- /css/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start clearfix 2 | @mixin clearfix() { 3 | &::after { 4 | display: block; 5 | clear: both; 6 | content: ""; 7 | } 8 | } 9 | // scss-docs-end clearfix 10 | -------------------------------------------------------------------------------- /css/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /css/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /_data/tagsTitles.yml: -------------------------------------------------------------------------------- 1 | - "UX" 2 | - "UI" 3 | - "Database" 4 | - "Live" 5 | - "V2" 6 | - "Javascript" 7 | - "Testings" 8 | - "HTML" 9 | - "CSS" 10 | - "Animation" 11 | - "React" 12 | - "Vue" 13 | - "Angular" 14 | - "Marketing" -------------------------------------------------------------------------------- /css/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /_data/modalSelectUsers.yml: -------------------------------------------------------------------------------- 1 | - title: 2 | 3 | - title: 4 | 5 | - title: 6 | 7 | - title: 8 | 9 | - title: 10 | 11 | - title: 12 | 13 | - title: 14 | 15 | - title: 16 | 17 | - title: 18 | 19 | - title: 20 | 21 | - title: -------------------------------------------------------------------------------- /_data/percents.yml: -------------------------------------------------------------------------------- 1 | - "5" 2 | - "10" 3 | - "15" 4 | - "20" 5 | - "25" 6 | - "30" 7 | - "35" 8 | - "40" 9 | - "45" 10 | - "50" 11 | - "55" 12 | - "60" 13 | - "65" 14 | - "70" 15 | - "75" 16 | - "80" 17 | - "85" 18 | - "90" 19 | - "95" -------------------------------------------------------------------------------- /css/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /css/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Reboot); 3 | 4 | @import "functions"; 5 | @import "variables"; 6 | @import "variables-dark"; 7 | @import "maps"; 8 | @import "mixins"; 9 | @import "root"; 10 | @import "reboot"; 11 | -------------------------------------------------------------------------------- /css/mixins/_banner.scss: -------------------------------------------------------------------------------- 1 | @mixin bsBanner($file) { 2 | /*! 3 | * Bootstrap #{$file} v5.3.2 (https://getbootstrap.com/) 4 | * Copyright 2011-2023 The Bootstrap Authors 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | } 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_site/ 2 | _site/ 3 | _site 4 | /_site 5 | /_site/css/ 6 | _site/css/ 7 | /_site/css 8 | /.sass-cache/ 9 | .sass-cache/ 10 | .sass-cache 11 | vendor 12 | vendor/ 13 | /vendor 14 | Gemfile.lock 15 | _site/index.html 16 | _site/css/styles.css 17 | _site/css/styles.css.map 18 | -------------------------------------------------------------------------------- /css/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #ffffff 7 | 8 | 9 | -------------------------------------------------------------------------------- /css/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /css/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /css/tests/mixins/_media-query-color-mode-full.test.scss: -------------------------------------------------------------------------------- 1 | $color-mode-type: media-query; 2 | 3 | @import "../../bootstrap"; 4 | 5 | @include describe("global $color-mode-type: media-query") { 6 | @include it("compiles entirely Bootstrap CSS with media-query color mode") { // stylelint-disable-line block-no-empty 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /_data/numbers.yml: -------------------------------------------------------------------------------- 1 | - "1" 2 | - "2" 3 | - "3" 4 | - "4" 5 | - "5" 6 | - "6" 7 | - "7" 8 | - "8" 9 | - "9" 10 | - "10" 11 | - "11" 12 | - "12" 13 | - "13" 14 | - "14" 15 | - "15" 16 | - "16" 17 | - "17" 18 | - "18" 19 | - "19" 20 | - "20" 21 | - "21" 22 | - "22" 23 | - "23" 24 | - "24" 25 | - "25" 26 | - "26" 27 | - "27" 28 | - "28" -------------------------------------------------------------------------------- /css/helpers/_stacks.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start stacks 2 | .hstack { 3 | display: flex; 4 | flex-direction: row; 5 | align-items: center; 6 | align-self: stretch; 7 | } 8 | 9 | .vstack { 10 | display: flex; 11 | flex: 1 1 auto; 12 | flex-direction: column; 13 | align-self: stretch; 14 | } 15 | // scss-docs-end stacks 16 | -------------------------------------------------------------------------------- /tasks/table/group/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Table Tasks Group' 4 | listTableTasksGroup: 1 5 | grpApplyTableTasksGroup: 1 6 | layoutTableTasksGroup: 1 7 | grpNotify: 1 8 | offcanvasTasksListTableGroupDetails: 1 9 | --- 10 |
11 | {% include V2/table-tasks-group.html %} 12 |
-------------------------------------------------------------------------------- /_data/firstName.yml: -------------------------------------------------------------------------------- 1 | - "Randi" 2 | - "Julien" 3 | - "Mittie" 4 | - "Dawn" 5 | - "Celestino" 6 | - "Grace" 7 | - "Liza" 8 | - "Lauretta" 9 | - "Furman" 10 | - "Dan" 11 | - "Noble" 12 | - "Nedra" 13 | - "Tressie" 14 | - "Markus" 15 | - "Isabell" 16 | - "Kendra " 17 | - "Greta" 18 | - "Abby" 19 | - "Henriette" 20 | - "Olen" 21 | - "June" 22 | -------------------------------------------------------------------------------- /_data/landscapes.yml: -------------------------------------------------------------------------------- 1 | - "https://jakubpolomski.com/wp-content/gallery/switzerland/grindelwald-switzerland-landscape-120700ALP0989.jpg" 2 | - "https://images.theoutbound.com/uploads/1409240279880/pzozm86m91ux47vi/03460ef5b7c07b97816071b2194d0b42?w=900&fit=crop&dpr=2" 3 | - "https://www.wanderlustchloe.com/wp-content/uploads/2022/07/landscapes-in-Italy.jpg" -------------------------------------------------------------------------------- /_data/priorityby.yml: -------------------------------------------------------------------------------- 1 | - title: Important 2 | iconColor: text-danger 3 | rightIcon: 4 | 5 | - title: High 6 | iconColor: text-warning 7 | rightIcon: fa-check 8 | class: active 9 | 10 | - title: Normal 11 | iconColor: text-primary 12 | rightIcon: 13 | 14 | - title: Low 15 | iconColor: text-muted 16 | rightIcon: 17 | class: -------------------------------------------------------------------------------- /tasks/table/drawer/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Tasks Table Drawer' 4 | fullScreenListTableTasks: 1 5 | grpApplyTableTasks: 1 6 | layoutTableTasks: 1 7 | offcanvasTaskViewShow: 1 8 | offcanvasTasksTableDrawer: 1 9 | --- 10 |
11 | {% include V2/table-tasks.html %} 12 |
-------------------------------------------------------------------------------- /_data/lastName.yml: -------------------------------------------------------------------------------- 1 | - "Metz" 2 | - "Klocko" 3 | - "Feest" 4 | - "Ankunding" 5 | - "Wuckert" 6 | - "Halvorson" 7 | - "Bechtelar" 8 | - "Lehner" 9 | - "Block" 10 | - "Kirlin" 11 | - "Luettgen" 12 | - "Rempel" 13 | - "Dickinson" 14 | - "Legros" 15 | - "Fritsch" 16 | - "Predovic" 17 | - "Quigley I" 18 | - "Cremin" 19 | - "Grant" 20 | - "O'Reilly" 21 | - "Ullrich" -------------------------------------------------------------------------------- /_data/filterby.yml: -------------------------------------------------------------------------------- 1 | - title: Filter by Status... 2 | subtitle: 87 Filters 3 | modalLink: modalStatus 4 | rightBadge: 2 5 | 6 | - title: Filter by Priority... 7 | subtitle: 5 Filters 8 | modalLink: modalPriority 9 | 10 | - title: Filter by Assignee... 11 | subtitle: 12 Filters 12 | modalLink: modalAssignee 13 | 14 | - title: Filter by Tags... 15 | subtitle: 9 Filters 16 | modalLink: modalTags -------------------------------------------------------------------------------- /_data/modalUsers.yml: -------------------------------------------------------------------------------- 1 | - title: Filter by Status... 2 | subtitle: 87 Filters 3 | modalLink: modalStatus 4 | rightBadge: 2 5 | 6 | - title: Filter by Priority... 7 | subtitle: 5 Filters 8 | modalLink: modalPriority 9 | 10 | - title: Filter by Assignee... 11 | subtitle: 12 Filters 12 | modalLink: modalAssignee 13 | 14 | - title: Filter by Tags... 15 | subtitle: 9 Filters 16 | modalLink: modalTags -------------------------------------------------------------------------------- /css/mixins/_backdrop.scss: -------------------------------------------------------------------------------- 1 | // Shared between modals and offcanvases 2 | @mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) { 3 | position: fixed; 4 | top: 0; 5 | left: 0; 6 | z-index: $zindex; 7 | width: 100vw; 8 | height: 100vh; 9 | background-color: $backdrop-bg; 10 | 11 | // Fade for backdrop 12 | &.fade { opacity: 0; } 13 | &.show { opacity: $backdrop-opacity; } 14 | } 15 | -------------------------------------------------------------------------------- /tasks/table/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Tasks Table' 4 | offcanvasTasksTableDrawer: 1 5 | fullScreenListTableTasks: 1 6 | grpApplyTableTasks: 1 7 | layoutTableTasks: 1 8 | modalDangerTasksEmpty: 1 9 | navbarBreadcrumb: true 10 | navbarLink: Projects 11 | navbarTitle: 'Tasks' 12 | --- 13 |
14 | {% include V2/table-tasks.html %} 15 |
-------------------------------------------------------------------------------- /css/_helpers.scss: -------------------------------------------------------------------------------- 1 | @import "helpers/clearfix"; 2 | @import "helpers/color-bg"; 3 | @import "helpers/colored-links"; 4 | @import "helpers/focus-ring"; 5 | @import "helpers/icon-link"; 6 | @import "helpers/ratio"; 7 | @import "helpers/position"; 8 | @import "helpers/stacks"; 9 | @import "helpers/visually-hidden"; 10 | @import "helpers/stretched-link"; 11 | @import "helpers/text-truncation"; 12 | @import "helpers/vr"; 13 | -------------------------------------------------------------------------------- /css/bootstrap-utilities.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Utilities); 3 | 4 | // Configuration 5 | @import "functions"; 6 | @import "variables"; 7 | @import "variables-dark"; 8 | @import "maps"; 9 | @import "mixins"; 10 | @import "utilities"; 11 | 12 | // Layout & components 13 | @import "root"; 14 | 15 | // Helpers 16 | @import "helpers"; 17 | 18 | // Utilities 19 | @import "utilities/api"; 20 | -------------------------------------------------------------------------------- /css/helpers/_focus-ring.scss: -------------------------------------------------------------------------------- 1 | .focus-ring:focus { 2 | outline: 0; 3 | // By default, there is no `--bs-focus-ring-x`, `--bs-focus-ring-y`, or `--bs-focus-ring-blur`, but we provide CSS variables with fallbacks to initial `0` values 4 | box-shadow: var(--#{$prefix}focus-ring-x, 0) var(--#{$prefix}focus-ring-y, 0) var(--#{$prefix}focus-ring-blur, 0) var(--#{$prefix}focus-ring-width) var(--#{$prefix}focus-ring-color); 5 | } 6 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Airframe v1.2 6 | 9 | 10 | 11 | Go to /projects/table/ Projects Empty 12 | -------------------------------------------------------------------------------- /css/helpers/_color-bg.scss: -------------------------------------------------------------------------------- 1 | // All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251 2 | @each $color, $value in $theme-colors { 3 | .text-bg-#{$color} { 4 | color: color-contrast($value) if($enable-important-utilities, !important, null); 5 | background-color: RGBA(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /_includes/tasks/subtask/table-subtasks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include tasks/subtask/tr-subtask.html 5 | avatar4="" 6 | %} 7 | {% include tasks/subtask/tr-subtask.html 8 | avatar3="" 9 | %} 10 | {% include tasks/subtask/tr-subtask.html 11 | avatar2="" 12 | %} 13 | 14 |
15 | -------------------------------------------------------------------------------- /tasks/list/table/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'List Table Tasks' 4 | fullScreenTableTasks: 1 5 | grpApplyListTableTasks: 1 6 | layoutListTableTasks: 1 7 | linkTasksListTable: 1 8 | modalDangerTasksListEmpty: 1 9 | navbarBack: 1 10 | navbarTitle: 'Tasks' 11 | --- 12 |
13 | {% include empty-placeholder.html clickProject="" %} 14 |
-------------------------------------------------------------------------------- /css/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | // scss-docs-start pagination-mixin 4 | @mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) { 5 | --#{$prefix}pagination-padding-x: #{$padding-x}; 6 | --#{$prefix}pagination-padding-y: #{$padding-y}; 7 | @include rfs($font-size, --#{$prefix}pagination-font-size); 8 | --#{$prefix}pagination-border-radius: #{$border-radius}; 9 | } 10 | // scss-docs-end pagination-mixin 11 | -------------------------------------------------------------------------------- /favicon/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /css/tests/sass-true/register.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const path = require('node:path') 4 | 5 | const runnerPath = path.join(__dirname, 'runner').replace(/\\/g, '/') 6 | 7 | require.extensions['.scss'] = (module, filename) => { 8 | const normalizedFilename = filename.replace(/\\/g, '/') 9 | 10 | return module._compile(` 11 | const runner = require('${runnerPath}') 12 | runner('${normalizedFilename}', { describe, it }) 13 | `, filename) 14 | } 15 | -------------------------------------------------------------------------------- /tasks/list/grid/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'List Grid Tasks' 4 | grpApplyListGridTasks: 1 5 | gridTasksGroup: 1 6 | layoutListGridTasks: 1 7 | fullScreenListGridTasks: 1 8 | linkTasksListGrid: 1 9 | modalDangerTasksListEmpty: 1 10 | navbarBack: 1 11 | navbarTitle: 'Tasks' 12 | --- 13 |
14 | {% include empty-placeholder.html clickProject="" %} 15 |
-------------------------------------------------------------------------------- /_includes/settings/header-settings.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | {% if include.withTeam %} 5 |

{{ include.team }} / {{ include.title }}

6 | {% else %} 7 |

{{ include.title }}

8 | {% endif %} 9 | 10 |

{{ include.description }}

11 |
12 | -------------------------------------------------------------------------------- /css/mixins/_container.scss: -------------------------------------------------------------------------------- 1 | // Container mixins 2 | 3 | @mixin make-container($gutter: $container-padding-x) { 4 | --#{$prefix}gutter-x: #{$gutter}; 5 | --#{$prefix}gutter-y: 0; 6 | width: 100%; 7 | padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list 8 | padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list 9 | margin-right: auto; 10 | margin-left: auto; 11 | } 12 | -------------------------------------------------------------------------------- /tasks/list/grid/group/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'Tasks List Grid Group' 4 | listGridTasksGroup: 1 5 | layoutListGridTasksGroup: 1 6 | fullScreenListGridTasksGroup: 1 7 | grpApplyListGridTasksGroup: 1 8 | grpNotify: 1 9 | modalDangerTasksListEmpty: 1 10 | linkTasksListGridGroup: 1 11 | --- 12 |
13 | {% include empty-placeholder.html clickProject="" %} 14 |
-------------------------------------------------------------------------------- /css/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | 10 | @mixin img-fluid { 11 | // Part 1: Set a maximum relative to the parent 12 | max-width: 100%; 13 | // Part 2: Override the height to auto, otherwise images will be stretched 14 | // when setting a width and height attribute on the img element. 15 | height: auto; 16 | } 17 | -------------------------------------------------------------------------------- /tasks/list/table/group/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'Tasks List Table Group' 4 | tableTasksGroup: 1 5 | fullScreenTableTasksGroup: 1 6 | layoutListTableTasksGroup: 1 7 | grpApplyListTableTasksGroup: 1 8 | grpNotify: 1 9 | modalDangerTasksListEmpty: 1 10 | linkTasksListTableGroupDetails: 1 11 | --- 12 |
13 | {% include empty-placeholder.html clickProject="" %} 14 |
r -------------------------------------------------------------------------------- /_data/statusby.yml: -------------------------------------------------------------------------------- 1 | - title: Backlog 2 | icon: history 3 | iconColor: 4 | rightIcon: fa-check 5 | class: active 6 | 7 | - title: To Do 8 | icon: circle-notch 9 | iconColor: text-warning 10 | rightIcon: 11 | 12 | - title: Finished 13 | icon: check 14 | iconColor: text-success 15 | rightIcon: 16 | 17 | - title: Doing 18 | icon: clock 19 | iconColor: text-info 20 | rightIcon: 21 | 22 | - title: Rejected 23 | icon: times 24 | iconColor: text-danger 25 | rightIcon: -------------------------------------------------------------------------------- /_data/names.yml: -------------------------------------------------------------------------------- 1 | - "Randi Metz" 2 | - "Julien Klocko" 3 | - "Mittie Feest" 4 | - "Dawn Ankunding" 5 | - "Celestino Wuckert" 6 | - "Grace Halvorson" 7 | - "Liza Bechtelar" 8 | - "Lauretta Lehner" 9 | - "Furman Block" 10 | - "Dan Kirlin" 11 | - "Noble Luettgen" 12 | - "Nedra Rempel" 13 | - "Tressie Dickinson" 14 | - "Markus Legros" 15 | - "Isabell Fritsch" 16 | - "Kendra Predovic" 17 | - "Greta Quigley I" 18 | - "Abby Cremin" 19 | - "Henriette Grant" 20 | - "Olen O'Reilly" 21 | - "June Ullrich" 22 | -------------------------------------------------------------------------------- /css/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | $result: (); 4 | 5 | @each $value in $shadow { 6 | @if $value != null { 7 | $result: append($result, $value, "comma"); 8 | } 9 | @if $value == none and length($shadow) > 1 { 10 | @warn "The keyword 'none' must be used as a single argument."; 11 | } 12 | } 13 | 14 | @if (length($result) > 0) { 15 | box-shadow: $result; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /css/helpers/_ratio.scss: -------------------------------------------------------------------------------- 1 | // Credit: Nicolas Gallagher and SUIT CSS. 2 | 3 | .ratio { 4 | position: relative; 5 | width: 100%; 6 | 7 | &::before { 8 | display: block; 9 | padding-top: var(--#{$prefix}aspect-ratio); 10 | content: ""; 11 | } 12 | 13 | > * { 14 | position: absolute; 15 | top: 0; 16 | left: 0; 17 | width: 100%; 18 | height: 100%; 19 | } 20 | } 21 | 22 | @each $key, $ratio in $aspect-ratios { 23 | .ratio-#{$key} { 24 | --#{$prefix}aspect-ratio: #{$ratio}; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /css/tests/jasmine.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable camelcase */ 2 | 3 | 'use strict' 4 | 5 | const path = require('node:path') 6 | 7 | module.exports = { 8 | spec_dir: 'scss', 9 | // Make Jasmine look for `.test.scss` files 10 | spec_files: ['**/*.{test,spec}.scss'], 11 | // Compile them into JS scripts running `sass-true` 12 | requires: [path.join(__dirname, 'sass-true/register')], 13 | // Ensure we use `require` so that the require.extensions works 14 | // as `import` completely bypasses it 15 | jsLoader: 'require' 16 | } 17 | -------------------------------------------------------------------------------- /favicon/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "airframe", 3 | "short_name": "airframe", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } -------------------------------------------------------------------------------- /_includes/tasks/subtask/files.html: -------------------------------------------------------------------------------- 1 | {% include tasks/subtask/file.html 2 | icon="image" 3 | iconColor="body" 4 | %} 5 | 6 | {% include tasks/subtask/file.html 7 | icon="file-pdf" 8 | iconColor="danger" 9 | %} 10 | 11 | {% include tasks/subtask/file.html 12 | icon="file-excel" 13 | iconColor="success" 14 | %} 15 | 16 | {% include tasks/subtask/file.html 17 | icon="file-word" 18 | iconColor="primary" 19 | %} 20 | 21 | {% include tasks/subtask/file.html 22 | icon="file-powerpoint" 23 | iconColor="warning" 24 | %} -------------------------------------------------------------------------------- /css/forms/_validation.scss: -------------------------------------------------------------------------------- 1 | // Form validation 2 | // 3 | // Provide feedback to users when form field values are valid or invalid. Works 4 | // primarily for client-side validation via scoped `:invalid` and `:valid` 5 | // pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for 6 | // server-side validation. 7 | 8 | // scss-docs-start form-validation-states-loop 9 | @each $state, $data in $form-validation-states { 10 | @include form-validation-state($state, $data...); 11 | } 12 | // scss-docs-end form-validation-states-loop 13 | -------------------------------------------------------------------------------- /css/tests/sass-true/runner.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('node:fs') 4 | const path = require('node:path') 5 | const { runSass } = require('sass-true') 6 | 7 | module.exports = (filename, { describe, it }) => { 8 | const data = fs.readFileSync(filename, 'utf8') 9 | const TRUE_SETUP = '$true-terminal-output: false; @import "true";' 10 | const sassString = TRUE_SETUP + data 11 | 12 | runSass( 13 | { describe, it, sourceType: 'string' }, 14 | sassString, 15 | { loadPaths: [path.dirname(filename)] } 16 | ) 17 | } 18 | -------------------------------------------------------------------------------- /css/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | // scss-docs-start collapse-classes 10 | .collapse { 11 | &:not(.show) { 12 | display: none; 13 | } 14 | } 15 | 16 | .collapsing { 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | 21 | &.collapse-horizontal { 22 | width: 0; 23 | height: auto; 24 | @include transition($transition-collapse-width); 25 | } 26 | } 27 | // scss-docs-end collapse-classes 28 | -------------------------------------------------------------------------------- /css/mixins/_color-mode.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start color-mode-mixin 2 | @mixin color-mode($mode: light, $root: false) { 3 | @if $color-mode-type == "media-query" { 4 | @if $root == true { 5 | @media (prefers-color-scheme: $mode) { 6 | :root { 7 | @content; 8 | } 9 | } 10 | } @else { 11 | @media (prefers-color-scheme: $mode) { 12 | @content; 13 | } 14 | } 15 | } @else { 16 | [data-bs-theme="#{$mode}"] { 17 | @content; 18 | } 19 | } 20 | } 21 | // scss-docs-end color-mode-mixin 22 | -------------------------------------------------------------------------------- /css/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or overflow-wrap / word-wrap. 4 | font-style: normal; 5 | font-weight: $font-weight-normal; 6 | line-height: $line-height-base; 7 | text-align: left; // Fallback for where `start` is not supported 8 | text-align: start; 9 | text-decoration: none; 10 | text-shadow: none; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-break: normal; 14 | white-space: normal; 15 | word-spacing: normal; 16 | line-break: auto; 17 | } 18 | -------------------------------------------------------------------------------- /_data/users.yml: -------------------------------------------------------------------------------- 1 | - title: Eric Mill 2 | subtitle: eric@mill.com 3 | rightIcon: 4 | 5 | - title: Parker Moore 6 | subtitle: parker@moore.co.uk 7 | rightIcon: fa-check 8 | class: active 9 | 10 | - title: Liu Fengyun 11 | subtitle: liu@fengyun.jp 12 | rightIcon: 13 | 14 | - title: Boris Daniel 15 | subtitle: Julianne.Schowalter@hotmail.com 16 | rightIcon: 17 | 18 | - title: Jimmie Schneider 19 | subtitle: Lizzie_Shanahan68@gmail.com 20 | rightIcon: fa-check 21 | class: active 22 | 23 | - title: Louvenia Littel 24 | subtitle: Louvenia99@hotmail.com 25 | rightIcon: -------------------------------------------------------------------------------- /tasks/list/empty/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'List Table Tasks Empty' 4 | tasksListTableEmpty: 1 5 | fullScreenTasksListEmpty: 1 6 | grpApplyListTableTasks: 1 7 | linkTasksListTable: 1 8 | dropdownBulkDisabled: 1 9 | dropdownFilterDisabled: 1 10 | dropdownGroupsDisabled: 1 11 | dropdownSortDisabled: 1 12 | offcanvasCreateTaskTasksListEmpty: 1 13 | navbarBack: true 14 | navbarTitle: 'Tasks' 15 | navbarBtnAddTask: true 16 | --- 17 |
18 | {% include empty-placeholder.html clickProject="" %} 19 |
-------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | ########### 2 | # site.url, site.title 3 | 4 | title: 'Airframe' 5 | 6 | ## note: 7 | # use site.path in your templates to make it work for both protocols e.g. http and https 8 | # use site.url only inside the web feed template (e.g. requires full url incl. protocol) 9 | path: /jekyll-bootstrap-theme 10 | url: 'http://henrythemes.github.io/jekyll-bootstrap-theme' 11 | 12 | 13 | ######## 14 | # more settings 15 | 16 | markdown: kramdown 17 | 18 | sass: 19 | sass_dir: css 20 | style: expanded 21 | 22 | 23 | 24 | exclude: 25 | - README.md 26 | 27 | 28 | safe: true 29 | lsi: false 30 | 31 | -------------------------------------------------------------------------------- /_includes/V2/dropdown-layout.html: -------------------------------------------------------------------------------- 1 | 2 | 19 | -------------------------------------------------------------------------------- /css/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @include deprecate("`alert-variant()`", "v5.3.0", "v6.0.0"); 2 | 3 | // scss-docs-start alert-variant-mixin 4 | @mixin alert-variant($background, $border, $color) { 5 | --#{$prefix}alert-color: #{$color}; 6 | --#{$prefix}alert-bg: #{$background}; 7 | --#{$prefix}alert-border-color: #{$border}; 8 | --#{$prefix}alert-link-color: #{shade-color($color, 20%)}; 9 | 10 | @if $enable-gradients { 11 | background-image: var(--#{$prefix}gradient); 12 | } 13 | 14 | .alert-link { 15 | color: var(--#{$prefix}alert-link-color); 16 | } 17 | } 18 | // scss-docs-end alert-variant-mixin 19 | -------------------------------------------------------------------------------- /_includes/toasts/toast-saved.html: -------------------------------------------------------------------------------- 1 | 2 | 13 | -------------------------------------------------------------------------------- /_data/emails.yml: -------------------------------------------------------------------------------- 1 | - "June_Ullrich@hotmail.com" 2 | - "Jaleel.Olson@hotmail.com" 3 | - "Jared.OConnell59@hotmail.com" 4 | - "Maritza_Cummings70@hotmail.com" 5 | - "Dana78@yahoo.com" 6 | - "Judge29@yahoo.com" 7 | - "Isabelle_Kuhn@yahoo.com" 8 | - "Berta92@hotmail.com" 9 | - "Travis3@gmail.com" 10 | - "Kristofer.Corwin@hotmail.com" 11 | - "Kelton81@gmail.com" 12 | - "Laron.White66@gmail.com" 13 | - "Dallas61@gmail.com" 14 | - "Marcos96@gmail.com" 15 | - "Charles69@hotmail.com" 16 | - "Hershel_Kassulke12@yahoo.com" 17 | - "Americo.Abbott96@hotmail.com" 18 | - "Candace88@hotmail.com" 19 | - "Haley.Weber48@yahoo.com" 20 | - "Samir_Medhurst50@gmail.com" -------------------------------------------------------------------------------- /_includes/modals/button-close-modal.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/toasts/toast-removed.html: -------------------------------------------------------------------------------- 1 | 2 | 13 | -------------------------------------------------------------------------------- /css/mixins/_deprecate.scss: -------------------------------------------------------------------------------- 1 | // Deprecate mixin 2 | // 3 | // This mixin can be used to deprecate mixins or functions. 4 | // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to 5 | // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap) 6 | @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) { 7 | @if ($enable-deprecation-messages != false and $ignore-warning != true) { 8 | @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}."; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /_data/tagby.yml: -------------------------------------------------------------------------------- 1 | - title: UI 2 | iconColor: text-danger 3 | rightIcon: 4 | class: 5 | 6 | - title: Javascript 7 | iconColor: text-primary 8 | rightIcon: 9 | class: 10 | 11 | - title: Bug 12 | iconColor: text-warning 13 | rightIcon: 14 | class: 15 | 16 | - title: Feature 17 | iconColor: text-info 18 | rightIcon: 19 | class: 20 | 21 | - title: Beta 22 | iconColor: text-success 23 | rightIcon: 24 | class: 25 | 26 | - title: Backend 27 | iconColor: text-muted 28 | rightIcon: 29 | class: 30 | 31 | - title: Design 32 | iconColor: text-dark 33 | rightIcon: 34 | class: 35 | 36 | - title: To Discussion 37 | iconColor: text-light 38 | rightIcon: 39 | class: 40 | -------------------------------------------------------------------------------- /css/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | @include deprecate("`list-group-item-variant()`", "v5.3.0", "v6.0.0"); 2 | 3 | // List Groups 4 | 5 | // scss-docs-start list-group-mixin 6 | @mixin list-group-item-variant($state, $background, $color) { 7 | .list-group-item-#{$state} { 8 | color: $color; 9 | background-color: $background; 10 | 11 | &.list-group-item-action { 12 | &:hover, 13 | &:focus { 14 | color: $color; 15 | background-color: shade-color($background, 10%); 16 | } 17 | 18 | &.active { 19 | color: $white; 20 | background-color: $color; 21 | border-color: $color; 22 | } 23 | } 24 | } 25 | } 26 | // scss-docs-end list-group-mixin 27 | -------------------------------------------------------------------------------- /css/helpers/_icon-link.scss: -------------------------------------------------------------------------------- 1 | .icon-link { 2 | display: inline-flex; 3 | gap: $icon-link-gap; 4 | align-items: center; 5 | text-decoration-color: rgba(var(--#{$prefix}link-color-rgb), var(--#{$prefix}link-opacity, .5)); 6 | text-underline-offset: $icon-link-underline-offset; 7 | backface-visibility: hidden; 8 | 9 | > .bi { 10 | flex-shrink: 0; 11 | width: $icon-link-icon-size; 12 | height: $icon-link-icon-size; 13 | fill: currentcolor; 14 | @include transition($icon-link-icon-transition); 15 | } 16 | } 17 | 18 | .icon-link-hover { 19 | &:hover, 20 | &:focus-visible { 21 | > .bi { 22 | transform: var(--#{$prefix}icon-link-transform, $icon-link-icon-transform); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /_includes/V2/header-small.html: -------------------------------------------------------------------------------- 1 | 2 | {% if include.headerSmallButton %} 3 |
4 |
5 | {{ include.headerSmallTitle }} 6 |
7 | 10 |
11 | {% else %} 12 |
13 | {{ include.headerSmallTitle }} 14 |
15 | {% endif %} 16 | -------------------------------------------------------------------------------- /_includes/tasks/subtask/file.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /css/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-disallowed-list 2 | @mixin transition($transition...) { 3 | @if length($transition) == 0 { 4 | $transition: $transition-base; 5 | } 6 | 7 | @if length($transition) > 1 { 8 | @each $value in $transition { 9 | @if $value == null or $value == none { 10 | @warn "The keyword 'none' or 'null' must be used as a single argument."; 11 | } 12 | } 13 | } 14 | 15 | @if $enable-transitions { 16 | @if nth($transition, 1) != null { 17 | transition: $transition; 18 | } 19 | 20 | @if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none { 21 | @media (prefers-reduced-motion: reduce) { 22 | transition: none; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /css/helpers/_position.scss: -------------------------------------------------------------------------------- 1 | // Shorthand 2 | 3 | .fixed-top { 4 | position: fixed; 5 | top: 0; 6 | right: 0; 7 | left: 0; 8 | z-index: $zindex-fixed; 9 | } 10 | 11 | .fixed-bottom { 12 | position: fixed; 13 | right: 0; 14 | bottom: 0; 15 | left: 0; 16 | z-index: $zindex-fixed; 17 | } 18 | 19 | // Responsive sticky top and bottom 20 | @each $breakpoint in map-keys($grid-breakpoints) { 21 | @include media-breakpoint-up($breakpoint) { 22 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 23 | 24 | .sticky#{$infix}-top { 25 | position: sticky; 26 | top: 0; 27 | z-index: $zindex-sticky; 28 | } 29 | 30 | .sticky#{$infix}-bottom { 31 | position: sticky; 32 | bottom: 0; 33 | z-index: $zindex-sticky; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /css/_grid.scss: -------------------------------------------------------------------------------- 1 | // Row 2 | // 3 | // Rows contain your columns. 4 | 5 | :root { 6 | @each $name, $value in $grid-breakpoints { 7 | --#{$prefix}breakpoint-#{$name}: #{$value}; 8 | } 9 | } 10 | 11 | @if $enable-grid-classes { 12 | .row { 13 | @include make-row(); 14 | 15 | > * { 16 | @include make-col-ready(); 17 | } 18 | } 19 | } 20 | 21 | @if $enable-cssgrid { 22 | .grid { 23 | display: grid; 24 | grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr); 25 | grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr); 26 | gap: var(--#{$prefix}gap, #{$grid-gutter-width}); 27 | 28 | @include make-cssgrid(); 29 | } 30 | } 31 | 32 | 33 | // Columns 34 | // 35 | // Common styles for small and large grid columns 36 | 37 | @if $enable-grid-classes { 38 | @include make-grid-columns(); 39 | } 40 | -------------------------------------------------------------------------------- /_includes/badge/badge-lg.html: -------------------------------------------------------------------------------- 1 | 2 | {% if include.leftIcon %} 3 | 4 | {% else %} 5 | {% endif %} 6 | 7 | {% if include.beforeSubtext %} 8 | {{ include.beforeSubtextTitle }} 9 | {% else %} 10 | {% endif %} 11 | 12 | {{ include.title }} 13 | 14 | {% if include.afterSubtext %} 15 | {{ include.afterSubtextTitle }} 16 | {% else %} 17 | {% endif %} 18 | 19 | {% if include.removeIcon %} 20 | 21 | 22 | 23 | {% else %} 24 | {% endif %} 25 | -------------------------------------------------------------------------------- /_includes/V2/collapse-group-grid.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 6 | 7 | 8 | 9 | 10 | {{ include.collapseGroupTitle }}2 11 |
12 | -------------------------------------------------------------------------------- /_data/projectsTitles.yml: -------------------------------------------------------------------------------- 1 | - "Organic reciprocal local area network" 2 | - "Virtual neutral product" 3 | - "Cross-group multi-tasking pricing structure" 4 | - "Centralized radical Graphical User Interface" 5 | - "Stand-alone logistical help-desk" 6 | - "User-friendly tangible forecast" 7 | - "Cloned object-oriented protocol" 8 | - "Self-enabling multimedia matrix" 9 | - "Customizable impactful strategy" 10 | - "Up-sized regional database" 11 | - "Mandatory impactful hub" 12 | - "Cross-platform encompassing website" 13 | - "Synergistic global service-desk" 14 | - "Vision-oriented 5th generation solution" 15 | - "Customizable systemic neural-net" 16 | - "Diverse tangible standardization" 17 | - "Versatile clear-thinking matrices" 18 | - "Distributed incremental forecast" 19 | - "Innovative intangible solution" 20 | - "Synchronised foreground structure" 21 | - "Diverse dedicated emulation" 22 | - "Organic non-volatile architecture" -------------------------------------------------------------------------------- /_includes/V2/tr-group.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | {{ include.trCollapseTitle }}2 13 | 14 | 15 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: '404' 4 | permalink: /404.html 5 | --- 6 |
7 | 8 | 9 |
10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 |
18 | Error 404 19 |
20 |

We can't find that page

21 |

Sorry, the page you are looking for doesn't exist or has been moved.

22 | 23 | 24 |
25 | 26 | Take me Home 27 |
28 | 29 |
-------------------------------------------------------------------------------- /tasks/empty.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: slim-sidebar 3 | title: 'Projects Empty' 4 | disabledNavbarFilters: 1 5 | --- 6 | 7 | 8 |
9 | 10 | 11 |
12 |

Create Your First Project

13 |

14 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem obcaecati odio provident culpa molestias cupiditate. 15 |

16 | 19 |
20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /_data/tableTask.yml: -------------------------------------------------------------------------------- 1 | - title: We need to back up the primary USB alarm! 2 | 3 | - title: We need to copy the auxiliary COM pixel! 4 | 5 | - title: Try to copy the EXE array, maybe it will index the multi-byte array! 6 | 7 | - title: We need to compress the multi-byte HDD monitor! 8 | 9 | - title: We need to generate the multi-byte SAS application! 10 | 11 | - title: We need to back up the primary USB alarm! 12 | 13 | - title: We need to copy the auxiliary COM pixel! 14 | 15 | - title: Try to copy the EXE array, maybe it will index the multi-byte array! 16 | 17 | - title: We need to compress the multi-byte HDD monitor! 18 | 19 | - title: We need to generate the multi-byte SAS application! 20 | 21 | - title: We need to back up the primary USB alarm! 22 | 23 | - title: We need to copy the auxiliary COM pixel! 24 | 25 | - title: Try to copy the EXE array, maybe it will index the multi-byte array! 26 | 27 | - title: We need to compress the multi-byte HDD monitor! 28 | 29 | - title: We need to generate the multi-byte SAS application! 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /_data/badgesProjects.yml: -------------------------------------------------------------------------------- 1 | - " Cancelled" 2 | 3 | - " Paused" 4 | 5 | - " Active" 6 | 7 | - " Completed" 8 | 9 | - " Planned" -------------------------------------------------------------------------------- /projects/empty.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Projects Empty' 4 | navbarsDisabled: true 5 | --- 6 | 7 | 8 |
9 | 10 | 11 |
12 |

Create Your First Project

13 |

14 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem obcaecati odio provident culpa molestias cupiditate. 15 |

16 | 19 |
20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /css/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Toggles 2 | // 3 | // Used in conjunction with global variables to enable certain theme features. 4 | 5 | // Vendor 6 | @import "vendor/rfs"; 7 | 8 | // Deprecate 9 | @import "mixins/deprecate"; 10 | 11 | // Helpers 12 | @import "mixins/breakpoints"; 13 | @import "mixins/color-mode"; 14 | @import "mixins/color-scheme"; 15 | @import "mixins/image"; 16 | @import "mixins/resize"; 17 | @import "mixins/visually-hidden"; 18 | @import "mixins/reset-text"; 19 | @import "mixins/text-truncate"; 20 | 21 | // Utilities 22 | @import "mixins/utilities"; 23 | 24 | // Components 25 | @import "mixins/backdrop"; 26 | @import "mixins/buttons"; 27 | @import "mixins/caret"; 28 | @import "mixins/pagination"; 29 | @import "mixins/lists"; 30 | @import "mixins/forms"; 31 | @import "mixins/table-variants"; 32 | 33 | // Skins 34 | @import "mixins/border-radius"; 35 | @import "mixins/box-shadow"; 36 | @import "mixins/gradients"; 37 | @import "mixins/transition"; 38 | 39 | // Layout 40 | @import "mixins/clearfix"; 41 | @import "mixins/container"; 42 | @import "mixins/grid"; 43 | -------------------------------------------------------------------------------- /projects/grid/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Projects Grid' 4 | showTitle: true 5 | navbarTitle: 'Projects Grid' 6 | layoutProjectsGrid: true 7 | --- 8 |
9 |
10 |
11 | {% include tasks/card-project.html %} 12 |
13 |
14 | {% include tasks/card-project.html %} 15 |
16 |
17 | {% include tasks/card-project.html %} 18 |
19 |
20 | {% include tasks/card-project.html %} 21 |
22 |
23 | {% include tasks/card-project.html %} 24 |
25 |
26 | {% include tasks/card-project.html %} 27 |
28 |
29 | {% include tasks/card-project.html %} 30 |
31 |
32 |
-------------------------------------------------------------------------------- /css/_placeholders.scss: -------------------------------------------------------------------------------- 1 | .placeholder { 2 | display: inline-block; 3 | min-height: 1em; 4 | vertical-align: middle; 5 | cursor: wait; 6 | background-color: currentcolor; 7 | opacity: $placeholder-opacity-max; 8 | 9 | &.btn::before { 10 | display: inline-block; 11 | content: ""; 12 | } 13 | } 14 | 15 | // Sizing 16 | .placeholder-xs { 17 | min-height: .6em; 18 | } 19 | 20 | .placeholder-sm { 21 | min-height: .8em; 22 | } 23 | 24 | .placeholder-lg { 25 | min-height: 1.2em; 26 | } 27 | 28 | // Animation 29 | .placeholder-glow { 30 | .placeholder { 31 | animation: placeholder-glow 2s ease-in-out infinite; 32 | } 33 | } 34 | 35 | @keyframes placeholder-glow { 36 | 50% { 37 | opacity: $placeholder-opacity-min; 38 | } 39 | } 40 | 41 | .placeholder-wave { 42 | mask-image: linear-gradient(130deg, $black 55%, rgba(0, 0, 0, (1 - $placeholder-opacity-min)) 75%, $black 95%); 43 | mask-size: 200% 100%; 44 | animation: placeholder-wave 2s linear infinite; 45 | } 46 | 47 | @keyframes placeholder-wave { 48 | 100% { 49 | mask-position: -200% 0%; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /_includes/tasks/dropdown-priority.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /css/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(""); 3 | 4 | 5 | // scss-docs-start import-stack 6 | // Configuration 7 | @import "functions"; 8 | @import "variables"; 9 | @import "variables-dark"; 10 | @import "maps"; 11 | @import "mixins"; 12 | @import "utilities"; 13 | 14 | // Layout & components 15 | @import "root"; 16 | @import "reboot"; 17 | @import "type"; 18 | @import "images"; 19 | @import "containers"; 20 | @import "grid"; 21 | @import "tables"; 22 | @import "forms"; 23 | @import "buttons"; 24 | @import "transitions"; 25 | @import "dropdown"; 26 | @import "button-group"; 27 | @import "nav"; 28 | @import "navbar"; 29 | @import "card"; 30 | @import "accordion"; 31 | @import "breadcrumb"; 32 | @import "pagination"; 33 | @import "badge"; 34 | @import "alert"; 35 | @import "progress"; 36 | @import "list-group"; 37 | @import "close"; 38 | @import "toasts"; 39 | @import "modal"; 40 | @import "tooltip"; 41 | @import "popover"; 42 | @import "carousel"; 43 | @import "spinners"; 44 | @import "offcanvas"; 45 | @import "placeholders"; 46 | 47 | // Helpers 48 | @import "helpers"; 49 | 50 | // Utilities 51 | @import "utilities/api"; 52 | // scss-docs-end import-stack 53 | -------------------------------------------------------------------------------- /tasks/empty/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Tasks Table Empty' 4 | offcanvasTasksTableDrawer: 1 5 | fullScreenTasksEmpty: 1 6 | grpApplyTableTasks: 1 7 | dropdownBulkDisabled: 1 8 | dropdownFilterDisabled: 1 9 | dropdownGroupsDisabled: 1 10 | dropdownSortDisabled: 1 11 | navbarBreadcrumb: true 12 | navbarLink: Projects 13 | navbarTitle: 'Tasks' 14 | navbarBtnAddTask: true 15 | --- 16 |
17 |
18 | 19 | 20 | 21 |
Empty Tasks
22 |

23 | In the upper right corner there is a blue button + and below where you can add a task. 24 |

25 | 26 | 29 |
30 |
31 | 32 | -------------------------------------------------------------------------------- /css/mixins/_table-variants.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start table-variant 2 | @mixin table-variant($state, $background) { 3 | .table-#{$state} { 4 | $color: color-contrast(opaque($body-bg, $background)); 5 | $hover-bg: mix($color, $background, percentage($table-hover-bg-factor)); 6 | $striped-bg: mix($color, $background, percentage($table-striped-bg-factor)); 7 | $active-bg: mix($color, $background, percentage($table-active-bg-factor)); 8 | $table-border-color: mix($color, $background, percentage($table-border-factor)); 9 | 10 | --#{$prefix}table-color: #{$color}; 11 | --#{$prefix}table-bg: #{$background}; 12 | --#{$prefix}table-border-color: #{$table-border-color}; 13 | --#{$prefix}table-striped-bg: #{$striped-bg}; 14 | --#{$prefix}table-striped-color: #{color-contrast($striped-bg)}; 15 | --#{$prefix}table-active-bg: #{$active-bg}; 16 | --#{$prefix}table-active-color: #{color-contrast($active-bg)}; 17 | --#{$prefix}table-hover-bg: #{$hover-bg}; 18 | --#{$prefix}table-hover-color: #{color-contrast($hover-bg)}; 19 | 20 | color: var(--#{$prefix}table-color); 21 | border-color: var(--#{$prefix}table-border-color); 22 | } 23 | } 24 | // scss-docs-end table-variant 25 | -------------------------------------------------------------------------------- /images/airframe-white-logo-only.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /_includes/layouts/navbar-transparent.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 8 | 18 |
19 | 20 | 21 |
22 | 25 | 28 | 31 |
32 |
33 | -------------------------------------------------------------------------------- /images/airframe-logo-only.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /css/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Hide content visually while keeping it accessible to assistive technologies 4 | // 5 | // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/ 6 | // See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/ 7 | 8 | @mixin visually-hidden() { 9 | width: 1px !important; 10 | height: 1px !important; 11 | padding: 0 !important; 12 | margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686 13 | overflow: hidden !important; 14 | clip: rect(0, 0, 0, 0) !important; 15 | white-space: nowrap !important; 16 | border: 0 !important; 17 | 18 | // Fix for positioned table caption that could become anonymous cells 19 | &:not(caption) { 20 | position: absolute !important; 21 | } 22 | } 23 | 24 | // Use to only display content when it's focused, or one of its child elements is focused 25 | // (i.e. when focus is within the element/container that the class was applied to) 26 | // 27 | // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 28 | 29 | @mixin visually-hidden-focusable() { 30 | &:not(:focus):not(:focus-within) { 31 | @include visually-hidden(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /css/_badge.scss: -------------------------------------------------------------------------------- 1 | // Base class 2 | // 3 | // Requires one of the contextual, color modifier classes for `color` and 4 | // `background-color`. 5 | 6 | .badge { 7 | // scss-docs-start badge-css-vars 8 | --#{$prefix}badge-padding-x: #{$badge-padding-x}; 9 | --#{$prefix}badge-padding-y: #{$badge-padding-y}; 10 | @include rfs($badge-font-size, --#{$prefix}badge-font-size); 11 | --#{$prefix}badge-font-weight: #{$badge-font-weight}; 12 | --#{$prefix}badge-color: #{$badge-color}; 13 | --#{$prefix}badge-border-radius: #{$badge-border-radius}; 14 | // scss-docs-end badge-css-vars 15 | 16 | display: inline-block; 17 | padding: var(--#{$prefix}badge-padding-y) var(--#{$prefix}badge-padding-x); 18 | @include font-size(var(--#{$prefix}badge-font-size)); 19 | font-weight: var(--#{$prefix}badge-font-weight); 20 | line-height: 1; 21 | color: var(--#{$prefix}badge-color); 22 | text-align: center; 23 | white-space: nowrap; 24 | vertical-align: baseline; 25 | @include border-radius(var(--#{$prefix}badge-border-radius)); 26 | @include gradient-bg(); 27 | 28 | // Empty badges collapse automatically 29 | &:empty { 30 | display: none; 31 | } 32 | } 33 | 34 | // Quick fix for badges in buttons 35 | .btn .badge { 36 | position: relative; 37 | top: -1px; 38 | } 39 | -------------------------------------------------------------------------------- /_includes/modal-filter/input-filter.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {% if include.leftBack %} 4 | 7 | {% else %} 8 | 9 | {% endif %} 10 | 17 | {% if include.rightCheck %} 18 | 21 | {% else %} 22 | 23 | {% endif %} 24 | 25 | {% if include.rightClose %} 26 | 29 | {% else %} 30 | 31 | {% endif %} 32 |
33 | -------------------------------------------------------------------------------- /css/forms/_labels.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // 4 | 5 | .form-label { 6 | margin-bottom: $form-label-margin-bottom; 7 | @include font-size($form-label-font-size); 8 | font-style: $form-label-font-style; 9 | font-weight: $form-label-font-weight; 10 | color: $form-label-color; 11 | } 12 | 13 | // For use with horizontal and inline forms, when you need the label (or legend) 14 | // text to align with the form controls. 15 | .col-form-label { 16 | padding-top: add($input-padding-y, $input-border-width); 17 | padding-bottom: add($input-padding-y, $input-border-width); 18 | margin-bottom: 0; // Override the `` default 19 | @include font-size(inherit); // Override the `` default 20 | font-style: $form-label-font-style; 21 | font-weight: $form-label-font-weight; 22 | line-height: $input-line-height; 23 | color: $form-label-color; 24 | } 25 | 26 | .col-form-label-lg { 27 | padding-top: add($input-padding-y-lg, $input-border-width); 28 | padding-bottom: add($input-padding-y-lg, $input-border-width); 29 | @include font-size($input-font-size-lg); 30 | } 31 | 32 | .col-form-label-sm { 33 | padding-top: add($input-padding-y-sm, $input-border-width); 34 | padding-bottom: add($input-padding-y-sm, $input-border-width); 35 | @include font-size($input-font-size-sm); 36 | } 37 | -------------------------------------------------------------------------------- /css/_images.scss: -------------------------------------------------------------------------------- 1 | // Responsive images (ensure images don't scale beyond their parents) 2 | // 3 | // This is purposefully opt-in via an explicit class rather than being the default for all ``s. 4 | // We previously tried the "images are responsive by default" approach in Bootstrap v2, 5 | // and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps) 6 | // which weren't expecting the images within themselves to be involuntarily resized. 7 | // See also https://github.com/twbs/bootstrap/issues/18178 8 | .img-fluid { 9 | @include img-fluid(); 10 | } 11 | 12 | 13 | // Image thumbnails 14 | .img-thumbnail { 15 | padding: $thumbnail-padding; 16 | background-color: $thumbnail-bg; 17 | border: $thumbnail-border-width solid $thumbnail-border-color; 18 | @include border-radius($thumbnail-border-radius); 19 | @include box-shadow($thumbnail-box-shadow); 20 | 21 | // Keep them at most 100% wide 22 | @include img-fluid(); 23 | } 24 | 25 | // 26 | // Figures 27 | // 28 | 29 | .figure { 30 | // Ensures the caption's text aligns with the image. 31 | display: inline-block; 32 | } 33 | 34 | .figure-img { 35 | margin-bottom: $spacer * .5; 36 | line-height: 1; 37 | } 38 | 39 | .figure-caption { 40 | @include font-size($figure-caption-font-size); 41 | color: $figure-caption-color; 42 | } 43 | -------------------------------------------------------------------------------- /_includes/tasks/offcanvas-task-view.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {% include tasks/task-details.html %} 4 |
5 | 6 |
7 | {% include V2/header-small.html 8 | headerSmallIcon="paperclip" 9 | headerSmallTitle="Files" 10 | %} 11 | 12 | 13 |
14 | {% include tasks/subtask/files.html %} 15 |
16 | 17 |
18 | 19 | 20 |
21 |
22 | 23 | {% include V2/header-small.html 24 | headerSmallButton="true" 25 | headerSmallIcon="list" 26 | headerSmallTitle="Subtasks" 27 | %} 28 | 29 | {% include tasks/subtask/card-subtask.html %} 30 |
31 | 32 | {% include tasks/subtask/table-subtasks.html %} 33 |
34 | 37 |
-------------------------------------------------------------------------------- /css/_containers.scss: -------------------------------------------------------------------------------- 1 | // Container widths 2 | // 3 | // Set the container width, and override it for fixed navbars in media queries. 4 | 5 | @if $enable-container-classes { 6 | // Single container class with breakpoint max-widths 7 | .container, 8 | // 100% wide container at all breakpoints 9 | .container-fluid { 10 | @include make-container(); 11 | } 12 | 13 | // Responsive containers that are 100% wide until a breakpoint 14 | @each $breakpoint, $container-max-width in $container-max-widths { 15 | .container-#{$breakpoint} { 16 | @extend .container-fluid; 17 | } 18 | 19 | @include media-breakpoint-up($breakpoint, $grid-breakpoints) { 20 | %responsive-container-#{$breakpoint} { 21 | max-width: $container-max-width; 22 | } 23 | 24 | // Extend each breakpoint which is smaller or equal to the current breakpoint 25 | $extend-breakpoint: true; 26 | 27 | @each $name, $width in $grid-breakpoints { 28 | @if ($extend-breakpoint) { 29 | .container#{breakpoint-infix($name, $grid-breakpoints)} { 30 | @extend %responsive-container-#{$breakpoint}; 31 | } 32 | 33 | // Once the current breakpoint is reached, stop extending 34 | @if ($breakpoint == $name) { 35 | $extend-breakpoint: false; 36 | } 37 | } 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /_includes/tasks/dropdown-status.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/tasks/dropdown-bulk.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/bootstrap-grid.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Grid); 3 | 4 | $include-column-box-sizing: true !default; 5 | 6 | @import "functions"; 7 | @import "variables"; 8 | @import "variables-dark"; 9 | @import "maps"; 10 | 11 | @import "mixins/breakpoints"; 12 | @import "mixins/container"; 13 | @import "mixins/grid"; 14 | @import "mixins/utilities"; 15 | 16 | @import "vendor/rfs"; 17 | 18 | @import "containers"; 19 | @import "grid"; 20 | 21 | @import "utilities"; 22 | // Only use the utilities we need 23 | // stylelint-disable-next-line scss/dollar-variable-default 24 | $utilities: map-get-multiple( 25 | $utilities, 26 | ( 27 | "display", 28 | "order", 29 | "flex", 30 | "flex-direction", 31 | "flex-grow", 32 | "flex-shrink", 33 | "flex-wrap", 34 | "justify-content", 35 | "align-items", 36 | "align-content", 37 | "align-self", 38 | "margin", 39 | "margin-x", 40 | "margin-y", 41 | "margin-top", 42 | "margin-end", 43 | "margin-bottom", 44 | "margin-start", 45 | "negative-margin", 46 | "negative-margin-x", 47 | "negative-margin-y", 48 | "negative-margin-top", 49 | "negative-margin-end", 50 | "negative-margin-bottom", 51 | "negative-margin-start", 52 | "padding", 53 | "padding-x", 54 | "padding-y", 55 | "padding-top", 56 | "padding-end", 57 | "padding-bottom", 58 | "padding-start", 59 | ) 60 | ); 61 | 62 | @import "utilities/api"; 63 | -------------------------------------------------------------------------------- /_includes/settings/tr-pending.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{ site.data.emails | sample }} 7 | {{ site.data.days | sample }}, {{ site.data.numbers | sample }} {{ site.data.months | sample }}, {{ site.data.years | sample }} 8 | 9 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /_data/avatars.yml: -------------------------------------------------------------------------------- 1 | - "images/avatars/1.jpg" 2 | - "images/avatars/2.jpg" 3 | - "images/avatars/3.jpg" 4 | - "images/avatars/4.jpg" 5 | - "images/avatars/5.jpg" 6 | - "images/avatars/6.jpg" 7 | - "images/avatars/7.jpg" 8 | - "images/avatars/8.jpg" 9 | - "images/avatars/9.jpg" 10 | - "images/avatars/10.jpg" 11 | - "images/avatars/11.jpg" 12 | - "images/avatars/12.jpg" 13 | - "images/avatars/13.jpg" 14 | - "images/avatars/14.jpg" 15 | - "images/avatars/15.jpg" 16 | - "images/avatars/16.jpg" 17 | - "images/avatars/17.jpg" 18 | - "images/avatars/18.jpg" 19 | - "images/avatars/19.jpg" 20 | - "images/avatars/20.jpg" 21 | - "images/avatars/21.jpg" 22 | - "images/avatars/22.jpg" 23 | - "images/avatars/23.jpg" 24 | - "images/avatars/24.jpg" 25 | - "images/avatars/25.jpg" 26 | - "images/avatars/26.jpg" 27 | - "images/avatars/27.jpg" 28 | - "images/avatars/28.jpg" 29 | - "images/avatars/29.jpg" 30 | - "images/avatars/30.jpg" 31 | - "images/avatars/31.jpg" 32 | - "images/avatars/32.jpg" 33 | - "images/avatars/33.jpg" 34 | - "images/avatars/34.jpg" 35 | - "images/avatars/35.jpg" 36 | - "images/avatars/36.jpg" 37 | - "images/avatars/37.jpg" 38 | - "images/avatars/38.jpg" 39 | - "images/avatars/39.jpg" 40 | - "images/avatars/40.jpg" 41 | - "images/avatars/41.jpg" 42 | - "images/avatars/42.jpg" 43 | - "images/avatars/43.jpg" 44 | - "images/avatars/44.jpg" 45 | - "images/avatars/45.jpg" 46 | - "images/avatars/46.jpg" 47 | - "images/avatars/47.jpg" 48 | - "images/avatars/48.jpg" 49 | - "images/avatars/49.jpg" 50 | - "images/avatars/50.jpg" 51 | -------------------------------------------------------------------------------- /forgot-password/forgot-password-reset.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Forgot Password - Password Reset' 4 | --- 5 | 6 |
7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |

Password reset

17 |

18 | Your password has been successully reset. Click below to log in magically. 19 |

20 |
21 | 22 | 23 | 31 | 32 |
33 | {% include auth/footer.html %} 34 |
35 |
36 |
37 | -------------------------------------------------------------------------------- /_includes/layouts/dropdown-profile.html: -------------------------------------------------------------------------------- 1 | 2 | 41 | -------------------------------------------------------------------------------- /forgot-password/forgot-password-check.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Forgot Password - Check your email' 4 | --- 5 | 6 |
7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |

Check yor email

17 |

We sent a password reset link to Hershel_Kassulke12@yahoo.com

18 |
19 | 20 | 21 |
22 |
23 | Didn't receive the email? Click to resend 24 |
25 | 26 | Back to Login 27 | 28 |
29 | 30 |
31 | {% include auth/footer.html %} 32 |
33 |
34 |
35 | -------------------------------------------------------------------------------- /_layouts/sidebar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ site.title }} - {{ page.title }} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |
18 | {% include layouts/sidebar.html %} 19 | 20 |
21 | {% include layouts/navbar-filters.html %} 22 | 23 | 24 |
25 | {{ content }} 26 |
27 | 28 |
29 | 30 |
31 |
32 | 33 | 34 | 35 | 36 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /_includes/V2/table-tasks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | {% for table in site.data.tableTask %} 20 | {% include V2/tr-task.html 21 | avatar4="" 22 | backlog="" 23 | importantIcon="" 24 | %} 25 | {% include V2/tr-task.html 26 | avatar3="" 27 | rejected="" 28 | highIcon="" 29 | %} 30 | {% include V2/tr-task.html 31 | avatar2="" 32 | doing="" 33 | normalIcon="" 34 | %} 35 | {% include V2/tr-task.html 36 | avatar1="" 37 | todo="" 38 | lowIcon="" 39 | %} 40 | {% endfor %} 41 | 42 |
5 | 7 | 8 | PriorityStatusTitleCreatedTagsAssigned
-------------------------------------------------------------------------------- /_includes/V2/card-image.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 39 |
40 | -------------------------------------------------------------------------------- /_includes/V2/list-tasks.html: -------------------------------------------------------------------------------- 1 | 2 | 70 | -------------------------------------------------------------------------------- /css/cheatsheet.css: -------------------------------------------------------------------------------- 1 | /* Layout */ 2 | @media (min-width: 1200px) { 3 | body { 4 | display: grid; 5 | gap: 1rem; 6 | grid-template-columns: 1fr 4fr 1fr; 7 | grid-template-rows: auto; 8 | } 9 | 10 | .bd-header { 11 | position: fixed; 12 | top: 0; 13 | /* rtl:begin:ignore */ 14 | right: 0; 15 | left: 0; 16 | /* rtl:end:ignore */ 17 | z-index: 1030; 18 | grid-column: 1 / span 3; 19 | } 20 | 21 | .bd-aside, 22 | .bd-cheatsheet { 23 | padding-top: 4rem; 24 | } 25 | 26 | /** 27 | * 1. Too bad only Firefox supports subgrids ATM 28 | */ 29 | .bd-cheatsheet, 30 | .bd-cheatsheet section, 31 | .bd-cheatsheet article { 32 | display: inherit; /* 1 */ 33 | gap: inherit; /* 1 */ 34 | grid-template-columns: 1fr 4fr; 35 | grid-column: 1 / span 2; 36 | grid-template-rows: auto; 37 | } 38 | 39 | .bd-aside { 40 | grid-area: 1 / 3; 41 | scroll-margin-top: 4rem; 42 | } 43 | 44 | .bd-cheatsheet section, 45 | .bd-cheatsheet section > h2 { 46 | top: 2rem; 47 | scroll-margin-top: 2rem; 48 | } 49 | 50 | .bd-cheatsheet section > h2::before { 51 | position: absolute; 52 | /* rtl:begin:ignore */ 53 | top: 0; 54 | right: 0; 55 | bottom: -2rem; 56 | left: 0; 57 | /* rtl:end:ignore */ 58 | z-index: -1; 59 | content: ""; 60 | background-image: linear-gradient(to bottom, rgba(#F8F9FA, 1) calc(100% - 3rem), rgba(255, 255, 255, .01)); 61 | } 62 | 63 | .bd-cheatsheet article, 64 | .bd-cheatsheet .bd-heading { 65 | top: 8rem; 66 | scroll-margin-top: 8rem; 67 | } 68 | 69 | .bd-cheatsheet .bd-heading { 70 | z-index: 1; 71 | } 72 | } -------------------------------------------------------------------------------- /css/tests/utilities/_api.test.scss: -------------------------------------------------------------------------------- 1 | @import "../../functions"; 2 | @import "../../variables"; 3 | @import "../../variables-dark"; 4 | @import "../../maps"; 5 | @import "../../mixins"; 6 | 7 | $utilities: (); 8 | 9 | @include describe("utilities/api") { 10 | @include it("generates utilities for each breakpoints") { 11 | $utilities: ( 12 | margin: ( 13 | property: margin, 14 | values: auto 15 | ), 16 | padding: ( 17 | property: padding, 18 | responsive: true, 19 | values: 1rem 20 | ), 21 | font-size: ( 22 | property: font-size, 23 | values: (large: 1.25rem), 24 | print: true 25 | ) 26 | ) !global; 27 | 28 | $grid-breakpoints: ( 29 | xs: 0, 30 | sm: 333px, 31 | md: 666px 32 | ) !global; 33 | 34 | @include assert() { 35 | @include output() { 36 | @import "../../utilities/api"; 37 | } 38 | 39 | @include expect() { 40 | // margin is not set to responsive 41 | .margin-auto { 42 | margin: auto !important; 43 | } 44 | 45 | // padding is, though 46 | .padding-1rem { 47 | padding: 1rem !important; 48 | } 49 | 50 | .font-size-large { 51 | font-size: 1.25rem !important; 52 | } 53 | 54 | @media (min-width: 333px) { 55 | .padding-sm-1rem { 56 | padding: 1rem !important; 57 | } 58 | } 59 | 60 | @media (min-width: 666px) { 61 | .padding-md-1rem { 62 | padding: 1rem !important; 63 | } 64 | } 65 | 66 | @media print { 67 | .font-size-print-large { 68 | font-size: 1.25rem !important; 69 | } 70 | } 71 | } 72 | 73 | } 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /css/helpers/_colored-links.scss: -------------------------------------------------------------------------------- 1 | // All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251 2 | @each $color, $value in $theme-colors { 3 | .link-#{$color} { 4 | color: RGBA(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}link-opacity, 1)) if($enable-important-utilities, !important, null); 5 | text-decoration-color: RGBA(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}link-underline-opacity, 1)) if($enable-important-utilities, !important, null); 6 | 7 | @if $link-shade-percentage != 0 { 8 | &:hover, 9 | &:focus { 10 | $hover-color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)); 11 | color: RGBA(#{to-rgb($hover-color)}, var(--#{$prefix}link-opacity, 1)) if($enable-important-utilities, !important, null); 12 | text-decoration-color: RGBA(to-rgb($hover-color), var(--#{$prefix}link-underline-opacity, 1)) if($enable-important-utilities, !important, null); 13 | } 14 | } 15 | } 16 | } 17 | 18 | // One-off special link helper as a bridge until v6 19 | .link-body-emphasis { 20 | color: RGBA(var(--#{$prefix}emphasis-color-rgb), var(--#{$prefix}link-opacity, 1)) if($enable-important-utilities, !important, null); 21 | text-decoration-color: RGBA(var(--#{$prefix}emphasis-color-rgb), var(--#{$prefix}link-underline-opacity, 1)) if($enable-important-utilities, !important, null); 22 | 23 | @if $link-shade-percentage != 0 { 24 | &:hover, 25 | &:focus { 26 | color: RGBA(var(--#{$prefix}emphasis-color-rgb), var(--#{$prefix}link-opacity, .75)) if($enable-important-utilities, !important, null); 27 | text-decoration-color: RGBA(var(--#{$prefix}emphasis-color-rgb), var(--#{$prefix}link-underline-opacity, .75)) if($enable-important-utilities, !important, null); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /forgot-password/forgot-password.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Forgot Password' 4 | --- 5 | 6 |
7 |
8 | 9 |
10 | 11 |
12 | 13 | 14 | 15 |
16 | 17 | 18 |

Forgot Password

19 |

Take advantage of the help below.

20 |
21 | 22 | 23 | 24 |
25 |
26 |
27 | 28 | 29 |
30 |
31 | Remind Password 32 |
33 |
34 |
35 | 40 | 41 |
42 | {% include auth/footer.html %} 43 |
44 |
45 | -------------------------------------------------------------------------------- /css/mixins/_caret.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start caret-mixins 2 | @mixin caret-down($width: $caret-width) { 3 | border-top: $width solid; 4 | border-right: $width solid transparent; 5 | border-bottom: 0; 6 | border-left: $width solid transparent; 7 | } 8 | 9 | @mixin caret-up($width: $caret-width) { 10 | border-top: 0; 11 | border-right: $width solid transparent; 12 | border-bottom: $width solid; 13 | border-left: $width solid transparent; 14 | } 15 | 16 | @mixin caret-end($width: $caret-width) { 17 | border-top: $width solid transparent; 18 | border-right: 0; 19 | border-bottom: $width solid transparent; 20 | border-left: $width solid; 21 | } 22 | 23 | @mixin caret-start($width: $caret-width) { 24 | border-top: $width solid transparent; 25 | border-right: $width solid; 26 | border-bottom: $width solid transparent; 27 | } 28 | 29 | @mixin caret( 30 | $direction: down, 31 | $width: $caret-width, 32 | $spacing: $caret-spacing, 33 | $vertical-align: $caret-vertical-align 34 | ) { 35 | @if $enable-caret { 36 | &::after { 37 | display: inline-block; 38 | margin-left: $spacing; 39 | vertical-align: $vertical-align; 40 | content: ""; 41 | @if $direction == down { 42 | @include caret-down($width); 43 | } @else if $direction == up { 44 | @include caret-up($width); 45 | } @else if $direction == end { 46 | @include caret-end($width); 47 | } 48 | } 49 | 50 | @if $direction == start { 51 | &::after { 52 | display: none; 53 | } 54 | 55 | &::before { 56 | display: inline-block; 57 | margin-right: $spacing; 58 | vertical-align: $vertical-align; 59 | content: ""; 60 | @include caret-start($width); 61 | } 62 | } 63 | 64 | &:empty::after { 65 | margin-left: 0; 66 | } 67 | } 68 | } 69 | // scss-docs-end caret-mixins 70 | -------------------------------------------------------------------------------- /css/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | // scss-docs-start breadcrumb-css-vars 3 | --#{$prefix}breadcrumb-padding-x: #{$breadcrumb-padding-x}; 4 | --#{$prefix}breadcrumb-padding-y: #{$breadcrumb-padding-y}; 5 | --#{$prefix}breadcrumb-margin-bottom: #{$breadcrumb-margin-bottom}; 6 | @include rfs($breadcrumb-font-size, --#{$prefix}breadcrumb-font-size); 7 | --#{$prefix}breadcrumb-bg: #{$breadcrumb-bg}; 8 | --#{$prefix}breadcrumb-border-radius: #{$breadcrumb-border-radius}; 9 | --#{$prefix}breadcrumb-divider-color: #{$breadcrumb-divider-color}; 10 | --#{$prefix}breadcrumb-item-padding-x: #{$breadcrumb-item-padding-x}; 11 | --#{$prefix}breadcrumb-item-active-color: #{$breadcrumb-active-color}; 12 | // scss-docs-end breadcrumb-css-vars 13 | 14 | display: flex; 15 | flex-wrap: wrap; 16 | padding: var(--#{$prefix}breadcrumb-padding-y) var(--#{$prefix}breadcrumb-padding-x); 17 | margin-bottom: var(--#{$prefix}breadcrumb-margin-bottom); 18 | @include font-size(var(--#{$prefix}breadcrumb-font-size)); 19 | list-style: none; 20 | background-color: var(--#{$prefix}breadcrumb-bg); 21 | @include border-radius(var(--#{$prefix}breadcrumb-border-radius)); 22 | } 23 | 24 | .breadcrumb-item { 25 | // The separator between breadcrumbs (by default, a forward-slash: "/") 26 | + .breadcrumb-item { 27 | padding-left: var(--#{$prefix}breadcrumb-item-padding-x); 28 | 29 | &::before { 30 | float: left; // Suppress inline spacings and underlining of the separator 31 | padding-right: var(--#{$prefix}breadcrumb-item-padding-x); 32 | color: var(--#{$prefix}breadcrumb-divider-color); 33 | content: var(--#{$prefix}breadcrumb-divider, escape-svg($breadcrumb-divider)) #{"/* rtl:"} var(--#{$prefix}breadcrumb-divider, escape-svg($breadcrumb-divider-flipped)) #{"*/"}; 34 | } 35 | } 36 | 37 | &.active { 38 | color: var(--#{$prefix}breadcrumb-item-active-color); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /js/cheatsheet.js: -------------------------------------------------------------------------------- 1 | /* global bootstrap: false */ 2 | 3 | (function () { 4 | 'use strict' 5 | 6 | // Tooltip and popover demos 7 | document.querySelectorAll('.tooltip-demo') 8 | .forEach(function (tooltip) { 9 | new bootstrap.Tooltip(tooltip, { 10 | selector: '[data-bs-toggle="tooltip"]' 11 | }) 12 | }) 13 | 14 | document.querySelectorAll('[data-bs-toggle="popover"]') 15 | .forEach(function (popover) { 16 | new bootstrap.Popover(popover) 17 | }) 18 | 19 | document.querySelectorAll('.toast') 20 | .forEach(function (toastNode) { 21 | var toast = new bootstrap.Toast(toastNode, { 22 | autohide: false 23 | }) 24 | 25 | toast.show() 26 | }) 27 | 28 | // Disable empty links and submit buttons 29 | document.querySelectorAll('[href="#"], [type="submit"]') 30 | .forEach(function (link) { 31 | link.addEventListener('click', function (event) { 32 | event.preventDefault() 33 | }) 34 | }) 35 | 36 | function setActiveItem() { 37 | var hash = window.location.hash 38 | 39 | if (hash === '') { 40 | return 41 | } 42 | 43 | var link = document.querySelector('.bd-aside a[href="' + hash + '"]') 44 | 45 | if (!link) { 46 | return 47 | } 48 | 49 | var active = document.querySelector('.bd-aside .active') 50 | var parent = link.parentNode.parentNode.previousElementSibling 51 | 52 | link.classList.add('active') 53 | 54 | if (parent.classList.contains('collapsed')) { 55 | parent.click() 56 | } 57 | 58 | if (!active) { 59 | return 60 | } 61 | 62 | var expanded = active.parentNode.parentNode.previousElementSibling 63 | 64 | active.classList.remove('active') 65 | 66 | if (expanded && parent !== expanded) { 67 | expanded.click() 68 | } 69 | } 70 | 71 | setActiveItem() 72 | window.addEventListener('hashchange', setActiveItem) 73 | })() 74 | -------------------------------------------------------------------------------- /css/utilities/_api.scss: -------------------------------------------------------------------------------- 1 | // Loop over each breakpoint 2 | @each $breakpoint in map-keys($grid-breakpoints) { 3 | 4 | // Generate media query if needed 5 | @include media-breakpoint-up($breakpoint) { 6 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 7 | 8 | // Loop over each utility property 9 | @each $key, $utility in $utilities { 10 | // The utility can be disabled with `false`, thus check if the utility is a map first 11 | // Only proceed if responsive media queries are enabled or if it's the base media query 12 | @if type-of($utility) == "map" and (map-get($utility, responsive) or $infix == "") { 13 | @include generate-utility($utility, $infix); 14 | } 15 | } 16 | } 17 | } 18 | 19 | // RFS rescaling 20 | @media (min-width: $rfs-mq-value) { 21 | @each $breakpoint in map-keys($grid-breakpoints) { 22 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 23 | 24 | @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) { 25 | // Loop over each utility property 26 | @each $key, $utility in $utilities { 27 | // The utility can be disabled with `false`, thus check if the utility is a map first 28 | // Only proceed if responsive media queries are enabled or if it's the base media query 29 | @if type-of($utility) == "map" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == "") { 30 | @include generate-utility($utility, $infix, true); 31 | } 32 | } 33 | } 34 | } 35 | } 36 | 37 | 38 | // Print utilities 39 | @media print { 40 | @each $key, $utility in $utilities { 41 | // The utility can be disabled with `false`, thus check if the utility is a map first 42 | // Then check if the utility needs print styles 43 | @if type-of($utility) == "map" and map-get($utility, print) == true { 44 | @include generate-utility($utility, "-print"); 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /projects/table/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Projects Table' 4 | showTitle: true 5 | navbarTitle: 'Projects Table' 6 | layoutProjectsTable: true 7 | 8 | --- 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | {% for table in site.data.tableTask %} 26 | {% include tasks/tr-project.html 27 | avatar4="" 28 | paused="" 29 | %} 30 | {% include tasks/tr-project.html 31 | avatar3="" 32 | cancelled="" 33 | %} 34 | {% include tasks/tr-project.html 35 | avatar2="" 36 | active="" 37 | %} 38 | {% include tasks/tr-project.html 39 | avatar1="" 40 | completed="" 41 | %} 42 | {% include tasks/tr-project.html 43 | avatar2="" 44 | planned="" 45 | %} 46 | {% endfor %} 47 | 48 |
TitleLast UpdatedDue DateMembersStatusProgress
49 |
50 |
-------------------------------------------------------------------------------- /css/_type.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Headings 3 | // 4 | .h1 { 5 | @extend h1; 6 | } 7 | 8 | .h2 { 9 | @extend h2; 10 | } 11 | 12 | .h3 { 13 | @extend h3; 14 | } 15 | 16 | .h4 { 17 | @extend h4; 18 | } 19 | 20 | .h5 { 21 | @extend h5; 22 | } 23 | 24 | .h6 { 25 | @extend h6; 26 | } 27 | 28 | 29 | .lead { 30 | @include font-size($lead-font-size); 31 | font-weight: $lead-font-weight; 32 | } 33 | 34 | // Type display classes 35 | @each $display, $font-size in $display-font-sizes { 36 | .display-#{$display} { 37 | @include font-size($font-size); 38 | font-family: $display-font-family; 39 | font-style: $display-font-style; 40 | font-weight: $display-font-weight; 41 | line-height: $display-line-height; 42 | } 43 | } 44 | 45 | // 46 | // Emphasis 47 | // 48 | .small { 49 | @extend small; 50 | } 51 | 52 | .mark { 53 | @extend mark; 54 | } 55 | 56 | // 57 | // Lists 58 | // 59 | 60 | .list-unstyled { 61 | @include list-unstyled(); 62 | } 63 | 64 | // Inline turns list items into inline-block 65 | .list-inline { 66 | @include list-unstyled(); 67 | } 68 | .list-inline-item { 69 | display: inline-block; 70 | 71 | &:not(:last-child) { 72 | margin-right: $list-inline-padding; 73 | } 74 | } 75 | 76 | 77 | // 78 | // Misc 79 | // 80 | 81 | // Builds on `abbr` 82 | .initialism { 83 | @include font-size($initialism-font-size); 84 | text-transform: uppercase; 85 | } 86 | 87 | // Blockquotes 88 | .blockquote { 89 | margin-bottom: $blockquote-margin-y; 90 | @include font-size($blockquote-font-size); 91 | 92 | > :last-child { 93 | margin-bottom: 0; 94 | } 95 | } 96 | 97 | .blockquote-footer { 98 | margin-top: -$blockquote-margin-y; 99 | margin-bottom: $blockquote-margin-y; 100 | @include font-size($blockquote-footer-font-size); 101 | color: $blockquote-footer-color; 102 | 103 | &::before { 104 | content: "\2014\00A0"; // em dash, nbsp 105 | } 106 | } 107 | -------------------------------------------------------------------------------- /tests.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Tests (to delete later)' 4 | --- 5 | 6 |
7 |
8 | 9 | 10 | 13 | 14 |
15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 | Date 23 | 24 | 12 January 25 | 26 | (27) 27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 |
35 | 36 | 37 |
Theme
38 | 48 | 49 |
50 |
51 | -------------------------------------------------------------------------------- /css/mixins/_gradients.scss: -------------------------------------------------------------------------------- 1 | // Gradients 2 | 3 | // scss-docs-start gradient-bg-mixin 4 | @mixin gradient-bg($color: null) { 5 | background-color: $color; 6 | 7 | @if $enable-gradients { 8 | background-image: var(--#{$prefix}gradient); 9 | } 10 | } 11 | // scss-docs-end gradient-bg-mixin 12 | 13 | // scss-docs-start gradient-mixins 14 | // Horizontal gradient, from left to right 15 | // 16 | // Creates two color stops, start and end, by specifying a color and position for each color stop. 17 | @mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) { 18 | background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent); 19 | } 20 | 21 | // Vertical gradient, from top to bottom 22 | // 23 | // Creates two color stops, start and end, by specifying a color and position for each color stop. 24 | @mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: null, $end-percent: null) { 25 | background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); 26 | } 27 | 28 | @mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) { 29 | background-image: linear-gradient($deg, $start-color, $end-color); 30 | } 31 | 32 | @mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) { 33 | background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color); 34 | } 35 | 36 | @mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) { 37 | background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color); 38 | } 39 | 40 | @mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) { 41 | background-image: radial-gradient(circle, $inner-color, $outer-color); 42 | } 43 | 44 | @mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) { 45 | background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent); 46 | } 47 | // scss-docs-end gradient-mixins 48 | -------------------------------------------------------------------------------- /css/tests/mixins/_color-modes.test.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable selector-attribute-quotes 2 | 3 | @import "../../functions"; 4 | @import "../../variables"; 5 | @import "../../variables-dark"; 6 | @import "../../maps"; 7 | @import "../../mixins"; 8 | 9 | @include describe("global $color-mode-type: data") { 10 | @include it("generates data attribute selectors for dark mode") { 11 | @include assert() { 12 | @include output() { 13 | @include color-mode(dark) { 14 | .element { 15 | color: var(--bs-primary-text-emphasis); 16 | background-color: var(--bs-primary-bg-subtle); 17 | } 18 | } 19 | @include color-mode(dark, true) { 20 | --custom-color: #{mix($indigo, $blue, 50%)}; 21 | } 22 | } 23 | @include expect() { 24 | [data-bs-theme=dark] .element { 25 | color: var(--bs-primary-text-emphasis); 26 | background-color: var(--bs-primary-bg-subtle); 27 | } 28 | [data-bs-theme=dark] { 29 | --custom-color: #3a3ff8; 30 | } 31 | } 32 | } 33 | } 34 | } 35 | 36 | @include describe("global $color-mode-type: media-query") { 37 | @include it("generates media queries for dark mode") { 38 | $color-mode-type: media-query !global; 39 | 40 | @include assert() { 41 | @include output() { 42 | @include color-mode(dark) { 43 | .element { 44 | color: var(--bs-primary-text-emphasis); 45 | background-color: var(--bs-primary-bg-subtle); 46 | } 47 | } 48 | @include color-mode(dark, true) { 49 | --custom-color: #{mix($indigo, $blue, 50%)}; 50 | } 51 | } 52 | @include expect() { 53 | @media (prefers-color-scheme: dark) { 54 | .element { 55 | color: var(--bs-primary-text-emphasis); 56 | background-color: var(--bs-primary-bg-subtle); 57 | } 58 | } 59 | @media (prefers-color-scheme: dark) { 60 | :root { 61 | --custom-color: #3a3ff8; 62 | } 63 | } 64 | } 65 | } 66 | 67 | $color-mode-type: data !global; 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /_includes/modal-filter/navbar-filter.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 6 | {{ include.title }} 7 | 8 | {% if include.reset %} 9 | 13 | {% else %} 14 | {% endif %} 15 |
16 | 17 | {% if include.badges %} 18 | 19 |
20 | 21 | Production 22 | 23 | 24 | 25 | 26 | 27 | Javascript 28 | 29 | 30 | 31 | 32 | 33 | UI 34 | 35 | 36 | 37 | 38 |
39 | 40 | {% else %} 41 | {% endif %} 42 |
43 | -------------------------------------------------------------------------------- /css/_close.scss: -------------------------------------------------------------------------------- 1 | // Transparent background and border properties included for button version. 2 | // iOS requires the button element instead of an anchor tag. 3 | // If you want the anchor version, it requires `href="#"`. 4 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 5 | 6 | .btn-close { 7 | // scss-docs-start close-css-vars 8 | --#{$prefix}btn-close-color: #{$btn-close-color}; 9 | --#{$prefix}btn-close-bg: #{ escape-svg($btn-close-bg) }; 10 | --#{$prefix}btn-close-opacity: #{$btn-close-opacity}; 11 | --#{$prefix}btn-close-hover-opacity: #{$btn-close-hover-opacity}; 12 | --#{$prefix}btn-close-focus-shadow: #{$btn-close-focus-shadow}; 13 | --#{$prefix}btn-close-focus-opacity: #{$btn-close-focus-opacity}; 14 | --#{$prefix}btn-close-disabled-opacity: #{$btn-close-disabled-opacity}; 15 | --#{$prefix}btn-close-white-filter: #{$btn-close-white-filter}; 16 | // scss-docs-end close-css-vars 17 | 18 | box-sizing: content-box; 19 | width: $btn-close-width; 20 | height: $btn-close-height; 21 | padding: $btn-close-padding-y $btn-close-padding-x; 22 | color: var(--#{$prefix}btn-close-color); 23 | background: transparent var(--#{$prefix}btn-close-bg) center / $btn-close-width auto no-repeat; // include transparent for button elements 24 | border: 0; // for button elements 25 | @include border-radius(); 26 | opacity: var(--#{$prefix}btn-close-opacity); 27 | 28 | // Override 's hover style 29 | &:hover { 30 | color: var(--#{$prefix}btn-close-color); 31 | text-decoration: none; 32 | opacity: var(--#{$prefix}btn-close-hover-opacity); 33 | } 34 | 35 | &:focus { 36 | outline: 0; 37 | box-shadow: var(--#{$prefix}btn-close-focus-shadow); 38 | opacity: var(--#{$prefix}btn-close-focus-opacity); 39 | } 40 | 41 | &:disabled, 42 | &.disabled { 43 | pointer-events: none; 44 | user-select: none; 45 | opacity: var(--#{$prefix}btn-close-disabled-opacity); 46 | } 47 | } 48 | 49 | @mixin btn-close-white() { 50 | filter: var(--#{$prefix}btn-close-white-filter); 51 | } 52 | 53 | .btn-close-white { 54 | @include btn-close-white(); 55 | } 56 | 57 | @if $enable-dark-mode { 58 | @include color-mode(dark) { 59 | .btn-close { 60 | @include btn-close-white(); 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /css/_progress.scss: -------------------------------------------------------------------------------- 1 | // Disable animation if transitions are disabled 2 | 3 | // scss-docs-start progress-keyframes 4 | @if $enable-transitions { 5 | @keyframes progress-bar-stripes { 6 | 0% { background-position-x: $progress-height; } 7 | } 8 | } 9 | // scss-docs-end progress-keyframes 10 | 11 | .progress, 12 | .progress-stacked { 13 | // scss-docs-start progress-css-vars 14 | --#{$prefix}progress-height: #{$progress-height}; 15 | @include rfs($progress-font-size, --#{$prefix}progress-font-size); 16 | --#{$prefix}progress-bg: #{$progress-bg}; 17 | --#{$prefix}progress-border-radius: #{$progress-border-radius}; 18 | --#{$prefix}progress-box-shadow: #{$progress-box-shadow}; 19 | --#{$prefix}progress-bar-color: #{$progress-bar-color}; 20 | --#{$prefix}progress-bar-bg: #{$progress-bar-bg}; 21 | --#{$prefix}progress-bar-transition: #{$progress-bar-transition}; 22 | // scss-docs-end progress-css-vars 23 | 24 | display: flex; 25 | height: var(--#{$prefix}progress-height); 26 | overflow: hidden; // force rounded corners by cropping it 27 | @include font-size(var(--#{$prefix}progress-font-size)); 28 | background-color: var(--#{$prefix}progress-bg); 29 | @include border-radius(var(--#{$prefix}progress-border-radius)); 30 | @include box-shadow(var(--#{$prefix}progress-box-shadow)); 31 | } 32 | 33 | .progress-bar { 34 | display: flex; 35 | flex-direction: column; 36 | justify-content: center; 37 | overflow: hidden; 38 | color: var(--#{$prefix}progress-bar-color); 39 | text-align: center; 40 | white-space: nowrap; 41 | background-color: var(--#{$prefix}progress-bar-bg); 42 | @include transition(var(--#{$prefix}progress-bar-transition)); 43 | } 44 | 45 | .progress-bar-striped { 46 | @include gradient-striped(); 47 | background-size: var(--#{$prefix}progress-height) var(--#{$prefix}progress-height); 48 | } 49 | 50 | .progress-stacked > .progress { 51 | overflow: visible; 52 | } 53 | 54 | .progress-stacked > .progress > .progress-bar { 55 | width: 100%; 56 | } 57 | 58 | @if $enable-transitions { 59 | .progress-bar-animated { 60 | animation: $progress-bar-animation-timing progress-bar-stripes; 61 | 62 | @if $enable-reduced-motion { 63 | @media (prefers-reduced-motion: reduce) { 64 | animation: none; 65 | } 66 | } 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.8.7) 5 | public_suffix (>= 2.0.2, < 7.0) 6 | base64 (0.3.0) 7 | bigdecimal (3.3.1) 8 | colorator (1.1.0) 9 | concurrent-ruby (1.3.5) 10 | csv (3.3.5) 11 | em-websocket (0.5.3) 12 | eventmachine (>= 0.12.9) 13 | http_parser.rb (~> 0) 14 | eventmachine (1.2.7) 15 | ffi (1.17.2-arm64-darwin) 16 | forwardable-extended (2.6.0) 17 | google-protobuf (4.33.0-arm64-darwin) 18 | bigdecimal 19 | rake (>= 13) 20 | http_parser.rb (0.8.0) 21 | i18n (1.14.7) 22 | concurrent-ruby (~> 1.0) 23 | jekyll (4.4.1) 24 | addressable (~> 2.4) 25 | base64 (~> 0.2) 26 | colorator (~> 1.0) 27 | csv (~> 3.0) 28 | em-websocket (~> 0.5) 29 | i18n (~> 1.0) 30 | jekyll-sass-converter (>= 2.0, < 4.0) 31 | jekyll-watch (~> 2.0) 32 | json (~> 2.6) 33 | kramdown (~> 2.3, >= 2.3.1) 34 | kramdown-parser-gfm (~> 1.0) 35 | liquid (~> 4.0) 36 | mercenary (~> 0.3, >= 0.3.6) 37 | pathutil (~> 0.9) 38 | rouge (>= 3.0, < 5.0) 39 | safe_yaml (~> 1.0) 40 | terminal-table (>= 1.8, < 4.0) 41 | webrick (~> 1.7) 42 | jekyll-sass-converter (3.1.0) 43 | sass-embedded (~> 1.75) 44 | jekyll-watch (2.2.1) 45 | listen (~> 3.0) 46 | json (2.15.2) 47 | kramdown (2.5.1) 48 | rexml (>= 3.3.9) 49 | kramdown-parser-gfm (1.1.0) 50 | kramdown (~> 2.0) 51 | liquid (4.0.4) 52 | listen (3.9.0) 53 | rb-fsevent (~> 0.10, >= 0.10.3) 54 | rb-inotify (~> 0.9, >= 0.9.10) 55 | mercenary (0.4.0) 56 | pathutil (0.16.2) 57 | forwardable-extended (~> 2.6) 58 | public_suffix (6.0.2) 59 | rake (13.3.1) 60 | rb-fsevent (0.11.2) 61 | rb-inotify (0.11.1) 62 | ffi (~> 1.0) 63 | rexml (3.4.4) 64 | rouge (4.6.1) 65 | safe_yaml (1.0.5) 66 | sass-embedded (1.93.2-arm64-darwin) 67 | google-protobuf (~> 4.31) 68 | terminal-table (3.0.2) 69 | unicode-display_width (>= 1.1.1, < 3) 70 | unicode-display_width (2.6.0) 71 | webrick (1.9.1) 72 | 73 | PLATFORMS 74 | arm64-darwin-21 75 | arm64-darwin-24 76 | 77 | DEPENDENCIES 78 | jekyll 79 | webrick (~> 1.7) 80 | 81 | BUNDLED WITH 82 | 2.4.8 83 | -------------------------------------------------------------------------------- /css/_alert.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Base styles 3 | // 4 | 5 | .alert { 6 | // scss-docs-start alert-css-vars 7 | --#{$prefix}alert-bg: transparent; 8 | --#{$prefix}alert-padding-x: #{$alert-padding-x}; 9 | --#{$prefix}alert-padding-y: #{$alert-padding-y}; 10 | --#{$prefix}alert-margin-bottom: #{$alert-margin-bottom}; 11 | --#{$prefix}alert-color: inherit; 12 | --#{$prefix}alert-border-color: transparent; 13 | --#{$prefix}alert-border: #{$alert-border-width} solid var(--#{$prefix}alert-border-color); 14 | --#{$prefix}alert-border-radius: #{$alert-border-radius}; 15 | --#{$prefix}alert-link-color: inherit; 16 | // scss-docs-end alert-css-vars 17 | 18 | position: relative; 19 | padding: var(--#{$prefix}alert-padding-y) var(--#{$prefix}alert-padding-x); 20 | margin-bottom: var(--#{$prefix}alert-margin-bottom); 21 | color: var(--#{$prefix}alert-color); 22 | background-color: var(--#{$prefix}alert-bg); 23 | border: var(--#{$prefix}alert-border); 24 | @include border-radius(var(--#{$prefix}alert-border-radius)); 25 | } 26 | 27 | // Headings for larger alerts 28 | .alert-heading { 29 | // Specified to prevent conflicts of changing $headings-color 30 | color: inherit; 31 | } 32 | 33 | // Provide class for links that match alerts 34 | .alert-link { 35 | font-weight: $alert-link-font-weight; 36 | color: var(--#{$prefix}alert-link-color); 37 | } 38 | 39 | 40 | // Dismissible alerts 41 | // 42 | // Expand the right padding and account for the close button's positioning. 43 | 44 | .alert-dismissible { 45 | padding-right: $alert-dismissible-padding-r; 46 | 47 | // Adjust close link position 48 | .btn-close { 49 | position: absolute; 50 | top: 0; 51 | right: 0; 52 | z-index: $stretched-link-z-index + 1; 53 | padding: $alert-padding-y * 1.25 $alert-padding-x; 54 | } 55 | } 56 | 57 | 58 | // scss-docs-start alert-modifiers 59 | // Generate contextual modifier classes for colorizing the alert 60 | @each $state in map-keys($theme-colors) { 61 | .alert-#{$state} { 62 | --#{$prefix}alert-color: var(--#{$prefix}#{$state}-text-emphasis); 63 | --#{$prefix}alert-bg: var(--#{$prefix}#{$state}-bg-subtle); 64 | --#{$prefix}alert-border-color: var(--#{$prefix}#{$state}-border-subtle); 65 | --#{$prefix}alert-link-color: var(--#{$prefix}#{$state}-text-emphasis); 66 | } 67 | } 68 | // scss-docs-end alert-modifiers 69 | -------------------------------------------------------------------------------- /css/mixins/_border-radius.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-disallowed-list 2 | // Single side border-radius 3 | 4 | // Helper function to replace negative values with 0 5 | @function valid-radius($radius) { 6 | $return: (); 7 | @each $value in $radius { 8 | @if type-of($value) == number { 9 | $return: append($return, max($value, 0)); 10 | } @else { 11 | $return: append($return, $value); 12 | } 13 | } 14 | @return $return; 15 | } 16 | 17 | // scss-docs-start border-radius-mixins 18 | @mixin border-radius($radius: $border-radius, $fallback-border-radius: false) { 19 | @if $enable-rounded { 20 | border-radius: valid-radius($radius); 21 | } 22 | @else if $fallback-border-radius != false { 23 | border-radius: $fallback-border-radius; 24 | } 25 | } 26 | 27 | @mixin border-top-radius($radius: $border-radius) { 28 | @if $enable-rounded { 29 | border-top-left-radius: valid-radius($radius); 30 | border-top-right-radius: valid-radius($radius); 31 | } 32 | } 33 | 34 | @mixin border-end-radius($radius: $border-radius) { 35 | @if $enable-rounded { 36 | border-top-right-radius: valid-radius($radius); 37 | border-bottom-right-radius: valid-radius($radius); 38 | } 39 | } 40 | 41 | @mixin border-bottom-radius($radius: $border-radius) { 42 | @if $enable-rounded { 43 | border-bottom-right-radius: valid-radius($radius); 44 | border-bottom-left-radius: valid-radius($radius); 45 | } 46 | } 47 | 48 | @mixin border-start-radius($radius: $border-radius) { 49 | @if $enable-rounded { 50 | border-top-left-radius: valid-radius($radius); 51 | border-bottom-left-radius: valid-radius($radius); 52 | } 53 | } 54 | 55 | @mixin border-top-start-radius($radius: $border-radius) { 56 | @if $enable-rounded { 57 | border-top-left-radius: valid-radius($radius); 58 | } 59 | } 60 | 61 | @mixin border-top-end-radius($radius: $border-radius) { 62 | @if $enable-rounded { 63 | border-top-right-radius: valid-radius($radius); 64 | } 65 | } 66 | 67 | @mixin border-bottom-end-radius($radius: $border-radius) { 68 | @if $enable-rounded { 69 | border-bottom-right-radius: valid-radius($radius); 70 | } 71 | } 72 | 73 | @mixin border-bottom-start-radius($radius: $border-radius) { 74 | @if $enable-rounded { 75 | border-bottom-left-radius: valid-radius($radius); 76 | } 77 | } 78 | // scss-docs-end border-radius-mixins 79 | -------------------------------------------------------------------------------- /_includes/V2/table-tasks-group.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | {% include V2/tr-group.html 27 | trCollapseLink="collapseExample" 28 | trCollapseIconColor="warning" 29 | trCollapseTitle="High" 30 | %} 31 | 32 | {% for table in site.data.tableTask %} 33 | {% include V2/tr-task-group.html 34 | avatar4="" 35 | backlog="" 36 | importantIcon="" 37 | %} 38 | {% include V2/tr-task-group.html 39 | avatar3="" 40 | rejected="" 41 | highIcon="" 42 | %} 43 | {% endfor %} 44 | 45 | {% include V2/tr-group.html 46 | trCollapseLink="collapseExample" 47 | trCollapseIconColor="danger" 48 | trCollapseTitle="Important" 49 | %} 50 | 51 | {% include V2/tr-group.html 52 | trCollapseLink="collapseExample" 53 | trCollapseIconColor="primary" 54 | trCollapseTitle="Normal" 55 | %} 56 | 57 | {% include V2/tr-group.html 58 | trCollapseLink="collapseExample" 59 | trCollapseIconColor="secondary" 60 | trCollapseTitle="Low" 61 | %} 62 | 63 | 64 | 65 | 66 | 67 | 68 |
7 | 8 | 9 | 10 | Group 11 | 13 | 14 | StatusCreatedTagsAssigned
-------------------------------------------------------------------------------- /tasks/list/list/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: sidebar-list 3 | title: 'Projects' 4 | projectsListList: 1 5 | listProjects: 1 6 | modalDangerListTasks: 1 7 | --- 8 | 9 |
10 | 11 | {% include layouts/navbar-filters.html 12 | 1class="" 13 | 2class="" 14 | badgesDisabled="" 15 | closeProject="" 16 | list-link-inc_projects-list-list="" 17 | list-active-inc_projects-list-list="" 18 | grid-link-inc_projects-list-grid="" 19 | grid-active-inc_projects-list-grid="" 20 | table-link-inc_projects-list-table="" 21 | title="Project Selected" 22 | %} 23 | 24 | 25 |
    26 | {% include tasks/list-task.html 27 | linkProjectsListListsDetails="" 28 | finished="" 29 | high="" 30 | listClass="" 31 | avatar4="" 32 | %} 33 | {% include tasks/list-task.html 34 | linkProjectsListListsDetails="" 35 | backlog="" 36 | important="" 37 | listClass="" 38 | avatar3="" 39 | %} 40 | {% include tasks/list-task.html 41 | linkProjectsListListsDetails="" 42 | rejected="" 43 | normal="" 44 | listClass="" 45 | avatar2="" 46 | %} 47 | {% include tasks/list-task.html 48 | linkProjectsListListsDetails="" 49 | doing="" 50 | low="" 51 | listClass="" 52 | avatar1="" 53 | %} 54 | {% include tasks/list-task.html 55 | linkProjectsListListsDetails="" 56 | todo="" 57 | normal="" 58 | listClass="" 59 | avatar4="" 60 | %} 61 | {% include tasks/list-task.html 62 | linkProjectsListListsDetails="" 63 | listClass="" 64 | high="" 65 | avatar4="" 66 | %} 67 |
68 | 69 |
70 | 71 | 72 |
73 | {% include empty-placeholder.html clickTask="" %} 74 |
-------------------------------------------------------------------------------- /forgot-password/forgot-password-set.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Forgot Password - Set new password' 4 | --- 5 | 6 |
52 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ site.title }} - {{ page.title }} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | {{ content }} 34 |
35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /tasks/grid/drawer/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Tasks Table Drawer' 4 | grpApplyGridTasks: 1 5 | layoutGridTasks: 1 6 | fullScreenGridTasks: 1 7 | offcanvasTaskViewShow: 1 8 | offcanvasTasksGrid: 1 9 | --- 10 |
11 |
12 |
13 | {% include V2/card-task.html 14 | important="" 15 | finished="" 16 | %} 17 |
18 |
19 | {% include V2/card-task.html 20 | high="" 21 | backlog="" 22 | %} 23 |
24 |
25 | {% include V2/card-task.html 26 | normal="" 27 | rejected="" 28 | %} 29 |
30 |
31 | {% include V2/card-task.html 32 | low="" 33 | doing="" 34 | %} 35 |
36 |
37 | {% include V2/card-task.html 38 | important="" 39 | finished="" 40 | %} 41 |
42 |
43 | {% include V2/card-task.html 44 | high="" 45 | backlog="" 46 | %} 47 |
48 |
49 | {% include V2/card-task.html 50 | normal="" 51 | rejected="" 52 | %} 53 |
54 |
55 | {% include V2/card-task.html 56 | important="" 57 | finished="" 58 | %} 59 |
60 |
61 | {% include V2/card-task.html 62 | high="" 63 | backlog="" 64 | %} 65 |
66 |
67 | {% include V2/card-task.html 68 | normal="" 69 | rejected="" 70 | %} 71 |
72 |
73 | {% include V2/card-task.html 74 | low="" 75 | doing="" 76 | %} 77 |
78 |
79 | {% include V2/card-task.html 80 | important="" 81 | finished="" 82 | %} 83 |
84 |
85 |
-------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Login' 4 | --- 5 | 6 |
7 |
8 | 9 |
10 | 11 |
12 | 13 | 14 | 15 |
16 | 17 | 18 |

Log in to your account

19 |

Welcome back! Please enter your details.

20 |
21 | 22 | 23 | 24 |
25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
34 |
35 |
36 | 37 | 38 |
39 | Forgot Password 40 |
41 |
42 | Sign In 43 | 45 |
46 |
47 |
48 |
49 | Don't have an account? Sign up 50 |
51 | 52 |
53 | {% include auth/footer.html %} 54 |
55 |
56 |
57 | -------------------------------------------------------------------------------- /tasks/grid/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/1-column 3 | title: 'Tasks Table' 4 | grpApplyGridTasks: 1 5 | layoutGridTasks: 1 6 | fullScreenGridTasks: 1 7 | offcanvasTasksGrid: 1 8 | modalDangerTasksEmpty: 1 9 | navbarBreadcrumb: true 10 | navbarLink: Projects 11 | navbarTitle: 'Tasks' 12 | --- 13 |
14 |
15 |
16 | {% include V2/card-task.html 17 | important="" 18 | finished="" 19 | %} 20 |
21 |
22 | {% include V2/card-task.html 23 | high="" 24 | backlog="" 25 | %} 26 |
27 |
28 | {% include V2/card-task.html 29 | normal="" 30 | rejected="" 31 | %} 32 |
33 |
34 | {% include V2/card-task.html 35 | low="" 36 | doing="" 37 | %} 38 |
39 |
40 | {% include V2/card-task.html 41 | important="" 42 | finished="" 43 | %} 44 |
45 |
46 | {% include V2/card-task.html 47 | high="" 48 | backlog="" 49 | %} 50 |
51 |
52 | {% include V2/card-task.html 53 | normal="" 54 | rejected="" 55 | %} 56 |
57 |
58 | {% include V2/card-task.html 59 | important="" 60 | finished="" 61 | %} 62 |
63 |
64 | {% include V2/card-task.html 65 | high="" 66 | backlog="" 67 | %} 68 |
69 |
70 | {% include V2/card-task.html 71 | normal="" 72 | rejected="" 73 | %} 74 |
75 |
76 | {% include V2/card-task.html 77 | low="" 78 | doing="" 79 | %} 80 |
81 |
82 | {% include V2/card-task.html 83 | important="" 84 | finished="" 85 | %} 86 |
87 |
88 |
-------------------------------------------------------------------------------- /signup.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 'Sign Up' 4 | --- 5 | 6 |
7 |
8 | 9 |
10 | 11 |
12 | 13 | 14 | 15 |
16 | 17 | 18 |

Create an Account

19 |

Create an account in 10 seconds to enjoy a free 30-day trial period.

20 |
21 | 22 | 23 | 24 |
25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
34 |
35 | 36 | 37 |
38 | Your password must be 8-20 characters long, contain letters and numbers, and must not contain spaces, special characters, or emoji. 39 |
40 |
41 |
42 | Get Started 43 | 45 |
46 |
47 |
48 |
49 | Already have an account? Log In 50 |
51 | 52 |
53 | {% include auth/footer.html %} 54 |
55 |
56 |
57 | -------------------------------------------------------------------------------- /_includes/modals/modal-create-team.html: -------------------------------------------------------------------------------- 1 | 2 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /_includes/tasks/dropdown-options.html: -------------------------------------------------------------------------------- 1 | 2 | 47 | -------------------------------------------------------------------------------- /css/_spinners.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Rotating border 3 | // 4 | 5 | .spinner-grow, 6 | .spinner-border { 7 | display: inline-block; 8 | width: var(--#{$prefix}spinner-width); 9 | height: var(--#{$prefix}spinner-height); 10 | vertical-align: var(--#{$prefix}spinner-vertical-align); 11 | // stylelint-disable-next-line property-disallowed-list 12 | border-radius: 50%; 13 | animation: var(--#{$prefix}spinner-animation-speed) linear infinite var(--#{$prefix}spinner-animation-name); 14 | } 15 | 16 | // scss-docs-start spinner-border-keyframes 17 | @keyframes spinner-border { 18 | to { transform: rotate(360deg) #{"/* rtl:ignore */"}; } 19 | } 20 | // scss-docs-end spinner-border-keyframes 21 | 22 | .spinner-border { 23 | // scss-docs-start spinner-border-css-vars 24 | --#{$prefix}spinner-width: #{$spinner-width}; 25 | --#{$prefix}spinner-height: #{$spinner-height}; 26 | --#{$prefix}spinner-vertical-align: #{$spinner-vertical-align}; 27 | --#{$prefix}spinner-border-width: #{$spinner-border-width}; 28 | --#{$prefix}spinner-animation-speed: #{$spinner-animation-speed}; 29 | --#{$prefix}spinner-animation-name: spinner-border; 30 | // scss-docs-end spinner-border-css-vars 31 | 32 | border: var(--#{$prefix}spinner-border-width) solid currentcolor; 33 | border-right-color: transparent; 34 | } 35 | 36 | .spinner-border-sm { 37 | // scss-docs-start spinner-border-sm-css-vars 38 | --#{$prefix}spinner-width: #{$spinner-width-sm}; 39 | --#{$prefix}spinner-height: #{$spinner-height-sm}; 40 | --#{$prefix}spinner-border-width: #{$spinner-border-width-sm}; 41 | // scss-docs-end spinner-border-sm-css-vars 42 | } 43 | 44 | // 45 | // Growing circle 46 | // 47 | 48 | // scss-docs-start spinner-grow-keyframes 49 | @keyframes spinner-grow { 50 | 0% { 51 | transform: scale(0); 52 | } 53 | 50% { 54 | opacity: 1; 55 | transform: none; 56 | } 57 | } 58 | // scss-docs-end spinner-grow-keyframes 59 | 60 | .spinner-grow { 61 | // scss-docs-start spinner-grow-css-vars 62 | --#{$prefix}spinner-width: #{$spinner-width}; 63 | --#{$prefix}spinner-height: #{$spinner-height}; 64 | --#{$prefix}spinner-vertical-align: #{$spinner-vertical-align}; 65 | --#{$prefix}spinner-animation-speed: #{$spinner-animation-speed}; 66 | --#{$prefix}spinner-animation-name: spinner-grow; 67 | // scss-docs-end spinner-grow-css-vars 68 | 69 | background-color: currentcolor; 70 | opacity: 0; 71 | } 72 | 73 | .spinner-grow-sm { 74 | --#{$prefix}spinner-width: #{$spinner-width-sm}; 75 | --#{$prefix}spinner-height: #{$spinner-height-sm}; 76 | } 77 | 78 | @if $enable-reduced-motion { 79 | @media (prefers-reduced-motion: reduce) { 80 | .spinner-border, 81 | .spinner-grow { 82 | --#{$prefix}spinner-animation-speed: #{$spinner-animation-speed * 2}; 83 | } 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /css/_toasts.scss: -------------------------------------------------------------------------------- 1 | .toast { 2 | // scss-docs-start toast-css-vars 3 | --#{$prefix}toast-zindex: #{$zindex-toast}; 4 | --#{$prefix}toast-padding-x: #{$toast-padding-x}; 5 | --#{$prefix}toast-padding-y: #{$toast-padding-y}; 6 | --#{$prefix}toast-spacing: #{$toast-spacing}; 7 | --#{$prefix}toast-max-width: #{$toast-max-width}; 8 | @include rfs($toast-font-size, --#{$prefix}toast-font-size); 9 | --#{$prefix}toast-color: #{$toast-color}; 10 | --#{$prefix}toast-bg: #{$toast-background-color}; 11 | --#{$prefix}toast-border-width: #{$toast-border-width}; 12 | --#{$prefix}toast-border-color: #{$toast-border-color}; 13 | --#{$prefix}toast-border-radius: #{$toast-border-radius}; 14 | --#{$prefix}toast-box-shadow: #{$toast-box-shadow}; 15 | --#{$prefix}toast-header-color: #{$toast-header-color}; 16 | --#{$prefix}toast-header-bg: #{$toast-header-background-color}; 17 | --#{$prefix}toast-header-border-color: #{$toast-header-border-color}; 18 | // scss-docs-end toast-css-vars 19 | 20 | width: var(--#{$prefix}toast-max-width); 21 | max-width: 100%; 22 | @include font-size(var(--#{$prefix}toast-font-size)); 23 | color: var(--#{$prefix}toast-color); 24 | pointer-events: auto; 25 | background-color: var(--#{$prefix}toast-bg); 26 | background-clip: padding-box; 27 | border: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-border-color); 28 | box-shadow: var(--#{$prefix}toast-box-shadow); 29 | @include border-radius(var(--#{$prefix}toast-border-radius)); 30 | 31 | &.showing { 32 | opacity: 0; 33 | } 34 | 35 | &:not(.show) { 36 | display: none; 37 | } 38 | } 39 | 40 | .toast-container { 41 | --#{$prefix}toast-zindex: #{$zindex-toast}; 42 | 43 | position: absolute; 44 | z-index: var(--#{$prefix}toast-zindex); 45 | width: max-content; 46 | max-width: 100%; 47 | pointer-events: none; 48 | 49 | > :not(:last-child) { 50 | margin-bottom: var(--#{$prefix}toast-spacing); 51 | } 52 | } 53 | 54 | .toast-header { 55 | display: flex; 56 | align-items: center; 57 | padding: var(--#{$prefix}toast-padding-y) var(--#{$prefix}toast-padding-x); 58 | color: var(--#{$prefix}toast-header-color); 59 | background-color: var(--#{$prefix}toast-header-bg); 60 | background-clip: padding-box; 61 | border-bottom: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-header-border-color); 62 | @include border-top-radius(calc(var(--#{$prefix}toast-border-radius) - var(--#{$prefix}toast-border-width))); 63 | 64 | .btn-close { 65 | margin-right: calc(-.5 * var(--#{$prefix}toast-padding-x)); // stylelint-disable-line function-disallowed-list 66 | margin-left: var(--#{$prefix}toast-padding-x); 67 | } 68 | } 69 | 70 | .toast-body { 71 | padding: var(--#{$prefix}toast-padding-x); 72 | word-wrap: break-word; 73 | } 74 | -------------------------------------------------------------------------------- /css/forms/_form-select.scss: -------------------------------------------------------------------------------- 1 | // Select 2 | // 3 | // Replaces the browser default select with a custom one, mostly pulled from 4 | // https://primer.github.io/. 5 | 6 | .form-select { 7 | --#{$prefix}form-select-bg-img: #{escape-svg($form-select-indicator)}; 8 | 9 | display: block; 10 | width: 100%; 11 | padding: $form-select-padding-y $form-select-indicator-padding $form-select-padding-y $form-select-padding-x; 12 | font-family: $form-select-font-family; 13 | @include font-size($form-select-font-size); 14 | font-weight: $form-select-font-weight; 15 | line-height: $form-select-line-height; 16 | color: $form-select-color; 17 | appearance: none; 18 | background-color: $form-select-bg; 19 | background-image: var(--#{$prefix}form-select-bg-img), var(--#{$prefix}form-select-bg-icon, none); 20 | background-repeat: no-repeat; 21 | background-position: $form-select-bg-position; 22 | background-size: $form-select-bg-size; 23 | border: $form-select-border-width solid $form-select-border-color; 24 | @include border-radius($form-select-border-radius, 0); 25 | @include box-shadow($form-select-box-shadow); 26 | @include transition($form-select-transition); 27 | 28 | &:focus { 29 | border-color: $form-select-focus-border-color; 30 | outline: 0; 31 | @if $enable-shadows { 32 | @include box-shadow($form-select-box-shadow, $form-select-focus-box-shadow); 33 | } @else { 34 | // Avoid using mixin so we can pass custom focus shadow properly 35 | box-shadow: $form-select-focus-box-shadow; 36 | } 37 | } 38 | 39 | &[multiple], 40 | &[size]:not([size="1"]) { 41 | padding-right: $form-select-padding-x; 42 | background-image: none; 43 | } 44 | 45 | &:disabled { 46 | color: $form-select-disabled-color; 47 | background-color: $form-select-disabled-bg; 48 | border-color: $form-select-disabled-border-color; 49 | } 50 | 51 | // Remove outline from select box in FF 52 | &:-moz-focusring { 53 | color: transparent; 54 | text-shadow: 0 0 0 $form-select-color; 55 | } 56 | } 57 | 58 | .form-select-sm { 59 | padding-top: $form-select-padding-y-sm; 60 | padding-bottom: $form-select-padding-y-sm; 61 | padding-left: $form-select-padding-x-sm; 62 | @include font-size($form-select-font-size-sm); 63 | @include border-radius($form-select-border-radius-sm); 64 | } 65 | 66 | .form-select-lg { 67 | padding-top: $form-select-padding-y-lg; 68 | padding-bottom: $form-select-padding-y-lg; 69 | padding-left: $form-select-padding-x-lg; 70 | @include font-size($form-select-font-size-lg); 71 | @include border-radius($form-select-border-radius-lg); 72 | } 73 | 74 | @if $enable-dark-mode { 75 | @include color-mode(dark) { 76 | .form-select { 77 | --#{$prefix}form-select-bg-img: #{escape-svg($form-select-indicator-dark)}; 78 | } 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /settings/password.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'Password' 4 | navbarListDisabled: true 5 | navbarFiltersDisabled: true 6 | settingsMenu: true 7 | --- 8 |
9 | 10 |
11 |
12 |
13 | 14 | {% include settings/header-settings.html 15 | title="Password" 16 | description="Please enter your current password to change your password" 17 | %} 18 | 19 | 20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
Your new password must be more than 8 chracters.
34 |
35 |
36 | 37 | 38 |
39 |
40 | 41 |
42 |
43 | 44 | 52 | 53 |
54 | 55 | 56 |
57 |
58 | 59 |
60 | 61 |
-------------------------------------------------------------------------------- /_includes/empty-placeholder.html: -------------------------------------------------------------------------------- 1 | 2 | {% if include.addTask %} 3 | 4 | 5 | 6 | 7 | 8 | 9 |
There are no Tasks
10 |

11 | In the upper right corner there is a blue button + and below where you can add a task. 12 |

13 | 14 | 17 | {% elsif include.clickProject %} 18 | 19 | 20 | 21 | 22 | 23 |
On the left side
24 | 25 |

26 | You have projects and if you press then you will see here a list of tasks. 27 |

28 | {% elsif include.clickTask %} 29 | 30 | 31 | 32 | 33 | 34 |
On the left side
35 | 36 |

37 | You have tasks, and if you press one then you will see details. 38 |

39 | {% elsif include.emptyTask %} 40 | 41 | 42 | 43 |
Empty Tasks
44 |

45 | In the upper right corner there is a blue button +. 46 |

47 | 48 | 51 | {% else %} 52 | 53 |
54 | 55 |
56 | Click on a project on the left to see the task list. 57 |
58 |
59 | 60 | {% endif %} -------------------------------------------------------------------------------- /_includes/settings/pills-settings.html: -------------------------------------------------------------------------------- 1 | 2 | 47 | -------------------------------------------------------------------------------- /js/color-modes.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/) 3 | * Copyright 2011-2023 The Bootstrap Authors 4 | * Licensed under the Creative Commons Attribution 3.0 Unported License. 5 | */ 6 | 7 | (() => { 8 | 'use strict' 9 | 10 | const getStoredTheme = () => localStorage.getItem('theme') 11 | const setStoredTheme = theme => localStorage.setItem('theme', theme) 12 | 13 | const getPreferredTheme = () => { 14 | const storedTheme = getStoredTheme() 15 | if (storedTheme) { 16 | return storedTheme 17 | } 18 | 19 | return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' 20 | } 21 | 22 | const setTheme = theme => { 23 | if (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches) { 24 | document.documentElement.setAttribute('data-bs-theme', 'dark') 25 | } else { 26 | document.documentElement.setAttribute('data-bs-theme', theme) 27 | } 28 | } 29 | 30 | setTheme(getPreferredTheme()) 31 | 32 | const showActiveTheme = (theme, focus = false) => { 33 | const themeSwitcher = document.querySelector('#bd-theme') 34 | 35 | if (!themeSwitcher) { 36 | return 37 | } 38 | 39 | const themeSwitcherText = document.querySelector('#bd-theme-text') 40 | const activeThemeIcon = document.querySelector('.theme-icon-active use') 41 | const btnToActive = document.querySelector(`[data-bs-theme-value="${theme}"]`) 42 | const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href') 43 | 44 | document.querySelectorAll('[data-bs-theme-value]').forEach(element => { 45 | element.classList.remove('active') 46 | element.setAttribute('aria-pressed', 'false') 47 | }) 48 | 49 | btnToActive.classList.add('active') 50 | btnToActive.setAttribute('aria-pressed', 'true') 51 | activeThemeIcon.setAttribute('href', svgOfActiveBtn) 52 | const themeSwitcherLabel = `${themeSwitcherText.textContent} (${btnToActive.dataset.bsThemeValue})` 53 | themeSwitcher.setAttribute('aria-label', themeSwitcherLabel) 54 | 55 | if (focus) { 56 | themeSwitcher.focus() 57 | } 58 | } 59 | 60 | window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { 61 | const storedTheme = getStoredTheme() 62 | if (storedTheme !== 'light' && storedTheme !== 'dark') { 63 | setTheme(getPreferredTheme()) 64 | } 65 | }) 66 | 67 | window.addEventListener('DOMContentLoaded', () => { 68 | showActiveTheme(getPreferredTheme()) 69 | 70 | document.querySelectorAll('[data-bs-theme-value]') 71 | .forEach(toggle => { 72 | toggle.addEventListener('click', () => { 73 | const theme = toggle.getAttribute('data-bs-theme-value') 74 | setStoredTheme(theme) 75 | setTheme(theme) 76 | showActiveTheme(theme, true) 77 | }) 78 | }) 79 | }) 80 | })() 81 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | logo-airframe-wp 3 |

4 | 5 |

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

8 | 9 |

10 | Demo • 11 | Documentation • 12 | Website • 13 | Contact 14 |

15 | 16 |

17 | 18 |

19 | 20 | 21 | # What is airframe? 22 | **Airframe Dashboard** has a huge collection of components that can be used in a great number of combinations and variations. It can be used in all types of custom web applications such as CRMs, CMSs, Admin Panels, Admin Dashboards, Analytics, etc. 23 | 24 | # Installation 25 | 26 | ### Install Jekyll and Ruby 27 | The entire application framework is built around [Jekyll](https://jekyllrb.com). 28 | On how to install Jekyll, [here](https://jekyllrb.com/docs/installation/) are the instructions for each Operating System. 29 | **This step is required** in order to proceed with the next installation. 30 | 31 | ### Install "airframe-dashboard" 32 | To install on your computer, please follow the steps below one by one. 33 | 34 | 1. Download the **.zip** package to your computer from [here](https://github.com/0wczar/BS5-Jekyll/archive/refs/heads/bootstrap5.2-custom.zip). 35 | 2. Open **Terminal** on Linux/macOS. 36 | 3. **Unpack** the .zip package you downloaded. 37 | 4. In terminal type `cd`, then **drag & drop** the unpacked folder `airframe-dashboard` to the terminal and confirm with `enter` on keyboard. 38 | 5. Once you are in the Terminal folder you can start installing, just type in `jekyll serve`. 39 | 6. Open http://localhost:3000 in your browser 40 | 41 | # Credits 42 | Stack tech. used in this project. 43 | 44 | - Bootstrap 45 | - Roboto (Font) 46 | - Jekyll 47 | - Font Awesome 48 | - Holder.js 49 | 50 | # Community 51 | 52 | ### Updates 53 | It is worth subscribing to our [newsletter](news). 54 | You will have **access** to updates, news and **early versions** of **React** and **Figma Design System**. 55 | 56 | ### Roadmap 57 | Our plan for the next days and months is available here 58 | 59 | ### Changelog 60 | See the history of all versions, also for Alpha and Beta here. 61 | 62 | ### Contribute 63 | To submit issues, request features, and contribute, check out here. 64 | 65 | # License 66 | Apache License 2.0 67 | 68 | # Author 69 | tomasz.owczarczyk@gmail.com 70 | -------------------------------------------------------------------------------- /tasks/list/table/details/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'List Table Task Details' 4 | fullScreenTableTasks: 1 5 | grpApplyListTableTasks: 1 6 | layoutTasksListTableDetails: 1 7 | linkTasksListTable: 1 8 | closeTasksListTable: 1 9 | navbarBreadcrumb: true 10 | navbarBack: 1 11 | navbarTitle: 'Tasks' 12 | --- 13 |
14 |
15 |
16 |
17 |
18 | {% include tasks/task-details.html %} 19 | 20 |
21 | 22 |
23 | {% include V2/header-small.html 24 | headerSmallIcon="paperclip" 25 | headerSmallTitle="Files" 26 | %} 27 | 28 | 29 |
30 | {% include tasks/subtask/files.html %} 31 |
32 |
33 | 34 | 35 |
36 |
37 | {% include V2/header-small.html 38 | headerSmallButton="true" 39 | headerSmallIcon="list" 40 | headerSmallTitle="Subtasks" 41 | %} 42 | 43 | {% include tasks/subtask/card-subtask.html %} 44 |
45 | 46 | {% include tasks/subtask/table-subtasks.html %} 47 | 48 |
49 | {% include V2/header-small.html 50 | headerSmallButton="true" 51 | headerSmallIcon="comment" 52 | headerSmallTitle="Comments" 53 | %} 54 | 55 | {% include V2/timeline-item.html 56 | timelineItemAvatarIcon="true" 57 | timelineItemIcon="user" 58 | timelineItemDescription="true" 59 | %} 60 | 61 | {% include V2/timeline-item.html 62 | timelineItemAvatarIcon="true" 63 | timelineItemIcon="user" 64 | timelineItemDescription="true" 65 | %} 66 | 67 | {% include V2/timeline-item.html 68 | timelineItemDescriptionWithComments="true" 69 | timelineItemVerticalLineDisabled="true" 70 | %} 71 | 72 |
73 |
74 |
75 |
76 | 77 |
-------------------------------------------------------------------------------- /css/forms/_floating-labels.scss: -------------------------------------------------------------------------------- 1 | .form-floating { 2 | position: relative; 3 | 4 | > .form-control, 5 | > .form-control-plaintext, 6 | > .form-select { 7 | height: $form-floating-height; 8 | min-height: $form-floating-height; 9 | line-height: $form-floating-line-height; 10 | } 11 | 12 | > label { 13 | position: absolute; 14 | top: 0; 15 | left: 0; 16 | z-index: 2; 17 | height: 100%; // allow textareas 18 | padding: $form-floating-padding-y $form-floating-padding-x; 19 | overflow: hidden; 20 | text-align: start; 21 | text-overflow: ellipsis; 22 | white-space: nowrap; 23 | pointer-events: none; 24 | border: $input-border-width solid transparent; // Required for aligning label's text with the input as it affects inner box model 25 | transform-origin: 0 0; 26 | @include transition($form-floating-transition); 27 | } 28 | 29 | > .form-control, 30 | > .form-control-plaintext { 31 | padding: $form-floating-padding-y $form-floating-padding-x; 32 | 33 | &::placeholder { 34 | color: transparent; 35 | } 36 | 37 | &:focus, 38 | &:not(:placeholder-shown) { 39 | padding-top: $form-floating-input-padding-t; 40 | padding-bottom: $form-floating-input-padding-b; 41 | } 42 | // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped 43 | &:-webkit-autofill { 44 | padding-top: $form-floating-input-padding-t; 45 | padding-bottom: $form-floating-input-padding-b; 46 | } 47 | } 48 | 49 | > .form-select { 50 | padding-top: $form-floating-input-padding-t; 51 | padding-bottom: $form-floating-input-padding-b; 52 | } 53 | 54 | > .form-control:focus, 55 | > .form-control:not(:placeholder-shown), 56 | > .form-control-plaintext, 57 | > .form-select { 58 | ~ label { 59 | color: rgba(var(--#{$prefix}body-color-rgb), #{$form-floating-label-opacity}); 60 | transform: $form-floating-label-transform; 61 | 62 | &::after { 63 | position: absolute; 64 | inset: $form-floating-padding-y ($form-floating-padding-x * .5); 65 | z-index: -1; 66 | height: $form-floating-label-height; 67 | content: ""; 68 | background-color: $input-bg; 69 | @include border-radius($input-border-radius); 70 | } 71 | } 72 | } 73 | // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped 74 | > .form-control:-webkit-autofill { 75 | ~ label { 76 | color: rgba(var(--#{$prefix}body-color-rgb), #{$form-floating-label-opacity}); 77 | transform: $form-floating-label-transform; 78 | } 79 | } 80 | 81 | > .form-control-plaintext { 82 | ~ label { 83 | border-width: $input-border-width 0; // Required to properly position label text - as explained above 84 | } 85 | } 86 | 87 | > :disabled ~ label, 88 | > .form-control:disabled ~ label { // Required for `.form-control`s because of specificity 89 | color: $form-floating-label-disabled-color; 90 | 91 | &::after { 92 | background-color: $input-disabled-bg; 93 | } 94 | } 95 | } 96 | -------------------------------------------------------------------------------- /tasks/list/grid/group/details/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'Tasks List Table Group Details' 4 | listGridTasksGroup: 1 5 | layoutTasksListGridGroupDetails: 1 6 | fullScreenListGridTasksGroup: 1 7 | grpApplyListGridTasksGroup: 1 8 | grpNotify: 1 9 | modalDangerTasksListEmpty: 1 10 | linkTasksListGridGroup: 1 11 | closeTasksListGridGroupDetails: 1 12 | --- 13 |
14 |
15 |
16 |
17 |
18 | {% include tasks/task-details.html %} 19 | 20 |
21 | 22 |
23 | {% include V2/header-small.html 24 | headerSmallIcon="paperclip" 25 | headerSmallTitle="Files" 26 | %} 27 | 28 | 29 |
30 | {% include tasks/subtask/files.html %} 31 |
32 |
33 | 34 | 35 |
36 |
37 | {% include V2/header-small.html 38 | headerSmallButton="true" 39 | headerSmallIcon="list" 40 | headerSmallTitle="Subtasks" 41 | %} 42 | 43 | {% include tasks/subtask/card-subtask.html %} 44 |
45 | 46 | {% include tasks/subtask/table-subtasks.html %} 47 | 48 |
49 | {% include V2/header-small.html 50 | headerSmallButton="true" 51 | headerSmallIcon="comment" 52 | headerSmallTitle="Comments" 53 | %} 54 | 55 | {% include V2/timeline-item.html 56 | timelineItemAvatarIcon="true" 57 | timelineItemIcon="user" 58 | timelineItemDescription="true" 59 | %} 60 | 61 | {% include V2/timeline-item.html 62 | timelineItemAvatarIcon="true" 63 | timelineItemIcon="user" 64 | timelineItemDescription="true" 65 | %} 66 | 67 | {% include V2/timeline-item.html 68 | timelineItemDescriptionWithComments="true" 69 | timelineItemVerticalLineDisabled="true" 70 | %} 71 | 72 |
73 |
74 |
75 |
76 | 77 |
-------------------------------------------------------------------------------- /tasks/list/table/group/details/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: V2/2-columns 3 | title: 'Tasks List Table Group Details' 4 | tableTasksGroup: 1 5 | fullScreenTableTasksGroup: 1 6 | layoutTasksListTableGroupDetails: 1 7 | grpApplyListTableTasksGroup: 1 8 | grpNotify: 1 9 | modalDangerTasksListEmpty: 1 10 | linkTasksListTableGroupDetails: 1 11 | closeTasksListTableGroupDetails: 1 12 | --- 13 |
14 |
15 |
16 |
17 |
18 | {% include tasks/task-details.html %} 19 | 20 |
21 | 22 |
23 | {% include V2/header-small.html 24 | headerSmallIcon="paperclip" 25 | headerSmallTitle="Files" 26 | %} 27 | 28 | 29 |
30 | {% include tasks/subtask/files.html %} 31 |
32 |
33 | 34 | 35 |
36 |
37 | {% include V2/header-small.html 38 | headerSmallButton="true" 39 | headerSmallIcon="list" 40 | headerSmallTitle="Subtasks" 41 | %} 42 | 43 | {% include tasks/subtask/card-subtask.html %} 44 |
45 | 46 | {% include tasks/subtask/table-subtasks.html %} 47 | 48 |
49 | {% include V2/header-small.html 50 | headerSmallButton="true" 51 | headerSmallIcon="comment" 52 | headerSmallTitle="Comments" 53 | %} 54 | 55 | {% include V2/timeline-item.html 56 | timelineItemAvatarIcon="true" 57 | timelineItemIcon="user" 58 | timelineItemDescription="true" 59 | %} 60 | 61 | {% include V2/timeline-item.html 62 | timelineItemAvatarIcon="true" 63 | timelineItemIcon="user" 64 | timelineItemDescription="true" 65 | %} 66 | 67 | {% include V2/timeline-item.html 68 | timelineItemDescriptionWithComments="true" 69 | timelineItemVerticalLineDisabled="true" 70 | %} 71 | 72 |
73 |
74 |
75 |
76 | 77 |
-------------------------------------------------------------------------------- /_includes/modals/modal-danger.html: -------------------------------------------------------------------------------- 1 | 2 | 55 | -------------------------------------------------------------------------------- /_includes/tasks/modal-create-tag.html: -------------------------------------------------------------------------------- 1 | 2 | 69 | -------------------------------------------------------------------------------- /css/forms/_form-range.scss: -------------------------------------------------------------------------------- 1 | // Range 2 | // 3 | // Style range inputs the same across browsers. Vendor-specific rules for pseudo 4 | // elements cannot be mixed. As such, there are no shared styles for focus or 5 | // active states on prefixed selectors. 6 | 7 | .form-range { 8 | width: 100%; 9 | height: add($form-range-thumb-height, $form-range-thumb-focus-box-shadow-width * 2); 10 | padding: 0; // Need to reset padding 11 | appearance: none; 12 | background-color: transparent; 13 | 14 | &:focus { 15 | outline: 0; 16 | 17 | // Pseudo-elements must be split across multiple rulesets to have an effect. 18 | // No box-shadow() mixin for focus accessibility. 19 | &::-webkit-slider-thumb { box-shadow: $form-range-thumb-focus-box-shadow; } 20 | &::-moz-range-thumb { box-shadow: $form-range-thumb-focus-box-shadow; } 21 | } 22 | 23 | &::-moz-focus-outer { 24 | border: 0; 25 | } 26 | 27 | &::-webkit-slider-thumb { 28 | width: $form-range-thumb-width; 29 | height: $form-range-thumb-height; 30 | margin-top: ($form-range-track-height - $form-range-thumb-height) * .5; // Webkit specific 31 | appearance: none; 32 | @include gradient-bg($form-range-thumb-bg); 33 | border: $form-range-thumb-border; 34 | @include border-radius($form-range-thumb-border-radius); 35 | @include box-shadow($form-range-thumb-box-shadow); 36 | @include transition($form-range-thumb-transition); 37 | 38 | &:active { 39 | @include gradient-bg($form-range-thumb-active-bg); 40 | } 41 | } 42 | 43 | &::-webkit-slider-runnable-track { 44 | width: $form-range-track-width; 45 | height: $form-range-track-height; 46 | color: transparent; // Why? 47 | cursor: $form-range-track-cursor; 48 | background-color: $form-range-track-bg; 49 | border-color: transparent; 50 | @include border-radius($form-range-track-border-radius); 51 | @include box-shadow($form-range-track-box-shadow); 52 | } 53 | 54 | &::-moz-range-thumb { 55 | width: $form-range-thumb-width; 56 | height: $form-range-thumb-height; 57 | appearance: none; 58 | @include gradient-bg($form-range-thumb-bg); 59 | border: $form-range-thumb-border; 60 | @include border-radius($form-range-thumb-border-radius); 61 | @include box-shadow($form-range-thumb-box-shadow); 62 | @include transition($form-range-thumb-transition); 63 | 64 | &:active { 65 | @include gradient-bg($form-range-thumb-active-bg); 66 | } 67 | } 68 | 69 | &::-moz-range-track { 70 | width: $form-range-track-width; 71 | height: $form-range-track-height; 72 | color: transparent; 73 | cursor: $form-range-track-cursor; 74 | background-color: $form-range-track-bg; 75 | border-color: transparent; // Firefox specific? 76 | @include border-radius($form-range-track-border-radius); 77 | @include box-shadow($form-range-track-box-shadow); 78 | } 79 | 80 | &:disabled { 81 | pointer-events: none; 82 | 83 | &::-webkit-slider-thumb { 84 | background-color: $form-range-thumb-disabled-bg; 85 | } 86 | 87 | &::-moz-range-thumb { 88 | background-color: $form-range-thumb-disabled-bg; 89 | } 90 | } 91 | } 92 | --------------------------------------------------------------------------------