├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── .travis.yml ├── LICENSE ├── README.md ├── config ├── dev.env.js ├── dev.env.js.example ├── index.js ├── prod.env.js └── test.env.js ├── example-img ├── 01.png ├── 02.png ├── 03.png ├── 04.png ├── 05.png └── 06.png ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ ├── avatar │ │ └── n.png │ ├── logo.png │ ├── pro-img-01.png │ └── pro-img │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png ├── components │ ├── ForgotPassword.vue │ ├── GantChart.vue │ ├── InviteMembers.vue │ ├── Join.vue │ ├── Login.vue │ ├── MemberManages.vue │ ├── MemberSettings.vue │ ├── PersonalSettings.vue │ ├── ProjectMembers.vue │ ├── ProjectSettings.vue │ ├── Projects.vue │ ├── Register.vue │ ├── ResetPassword.vue │ ├── Task.vue │ ├── TaskCompleted.vue │ ├── TaskDetails.vue │ ├── Team.vue │ └── TeamSettings.vue ├── config │ └── icon-map.js ├── main.js ├── mock │ └── index.js ├── router │ └── index.js └── store │ ├── index.js │ └── modules │ ├── project.js │ ├── task.js │ ├── team.js │ └── user.js ├── static ├── .gitkeep └── n.png ├── test ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js └── unit │ ├── .eslintrc │ ├── jest.conf.js │ ├── setup.js │ └── specs │ └── HelloWorld.spec.js └── theme ├── alert.css ├── aside.css ├── autocomplete.css ├── badge.css ├── base.css ├── breadcrumb-item.css ├── breadcrumb.css ├── button-group.css ├── button.css ├── card.css ├── carousel-item.css ├── carousel.css ├── cascader.css ├── checkbox-button.css ├── checkbox-group.css ├── checkbox.css ├── col.css ├── collapse-item.css ├── collapse.css ├── color-picker.css ├── container.css ├── date-picker.css ├── dialog.css ├── display.css ├── dropdown-item.css ├── dropdown-menu.css ├── dropdown.css ├── fonts ├── element-icons.ttf └── element-icons.woff ├── footer.css ├── form-item.css ├── form.css ├── header.css ├── icon.css ├── index.css ├── input-number.css ├── input.css ├── loading.css ├── main.css ├── menu-item-group.css ├── menu-item.css ├── menu.css ├── message-box.css ├── message.css ├── notification.css ├── option-group.css ├── option.css ├── pagination.css ├── popover.css ├── popper.css ├── progress.css ├── radio-button.css ├── radio-group.css ├── radio.css ├── rate.css ├── reset.css ├── row.css ├── scrollbar.css ├── select-dropdown.css ├── select.css ├── slider.css ├── spinner.css ├── step.css ├── steps.css ├── submenu.css ├── switch.css ├── tab-pane.css ├── table-column.css ├── table.css ├── tabs.css ├── tag.css ├── time-picker.css ├── time-select.css ├── tooltip.css ├── transfer.css ├── tree.css └── upload.css /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/dev.env.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/config/dev.env.js.example -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/config/prod.env.js -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/config/test.env.js -------------------------------------------------------------------------------- /example-img/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/example-img/01.png -------------------------------------------------------------------------------- /example-img/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/example-img/02.png -------------------------------------------------------------------------------- /example-img/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/example-img/03.png -------------------------------------------------------------------------------- /example-img/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/example-img/04.png -------------------------------------------------------------------------------- /example-img/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/example-img/05.png -------------------------------------------------------------------------------- /example-img/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/example-img/06.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/avatar/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/assets/avatar/n.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/pro-img-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/assets/pro-img-01.png -------------------------------------------------------------------------------- /src/assets/pro-img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/assets/pro-img/1.png -------------------------------------------------------------------------------- /src/assets/pro-img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/assets/pro-img/2.png -------------------------------------------------------------------------------- /src/assets/pro-img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/assets/pro-img/3.png -------------------------------------------------------------------------------- /src/components/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/ForgotPassword.vue -------------------------------------------------------------------------------- /src/components/GantChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/GantChart.vue -------------------------------------------------------------------------------- /src/components/InviteMembers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/InviteMembers.vue -------------------------------------------------------------------------------- /src/components/Join.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/Join.vue -------------------------------------------------------------------------------- /src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/Login.vue -------------------------------------------------------------------------------- /src/components/MemberManages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/MemberManages.vue -------------------------------------------------------------------------------- /src/components/MemberSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/MemberSettings.vue -------------------------------------------------------------------------------- /src/components/PersonalSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/PersonalSettings.vue -------------------------------------------------------------------------------- /src/components/ProjectMembers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/ProjectMembers.vue -------------------------------------------------------------------------------- /src/components/ProjectSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/ProjectSettings.vue -------------------------------------------------------------------------------- /src/components/Projects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/Projects.vue -------------------------------------------------------------------------------- /src/components/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/Register.vue -------------------------------------------------------------------------------- /src/components/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/ResetPassword.vue -------------------------------------------------------------------------------- /src/components/Task.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/Task.vue -------------------------------------------------------------------------------- /src/components/TaskCompleted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/TaskCompleted.vue -------------------------------------------------------------------------------- /src/components/TaskDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/TaskDetails.vue -------------------------------------------------------------------------------- /src/components/Team.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/Team.vue -------------------------------------------------------------------------------- /src/components/TeamSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/components/TeamSettings.vue -------------------------------------------------------------------------------- /src/config/icon-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/config/icon-map.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/mock/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/store/modules/project.js -------------------------------------------------------------------------------- /src/store/modules/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/store/modules/task.js -------------------------------------------------------------------------------- /src/store/modules/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/store/modules/team.js -------------------------------------------------------------------------------- /src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/src/store/modules/user.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/static/n.png -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/test/unit/jest.conf.js -------------------------------------------------------------------------------- /test/unit/setup.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | Vue.config.productionTip = false 4 | -------------------------------------------------------------------------------- /test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/test/unit/specs/HelloWorld.spec.js -------------------------------------------------------------------------------- /theme/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/alert.css -------------------------------------------------------------------------------- /theme/aside.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/aside.css -------------------------------------------------------------------------------- /theme/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/autocomplete.css -------------------------------------------------------------------------------- /theme/badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/badge.css -------------------------------------------------------------------------------- /theme/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/base.css -------------------------------------------------------------------------------- /theme/breadcrumb-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/breadcrumb.css -------------------------------------------------------------------------------- /theme/button-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/button.css -------------------------------------------------------------------------------- /theme/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/card.css -------------------------------------------------------------------------------- /theme/carousel-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/carousel-item.css -------------------------------------------------------------------------------- /theme/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/carousel.css -------------------------------------------------------------------------------- /theme/cascader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/cascader.css -------------------------------------------------------------------------------- /theme/checkbox-button.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/checkbox-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/checkbox.css -------------------------------------------------------------------------------- /theme/col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/col.css -------------------------------------------------------------------------------- /theme/collapse-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/collapse.css -------------------------------------------------------------------------------- /theme/color-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/color-picker.css -------------------------------------------------------------------------------- /theme/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/container.css -------------------------------------------------------------------------------- /theme/date-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/date-picker.css -------------------------------------------------------------------------------- /theme/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/dialog.css -------------------------------------------------------------------------------- /theme/display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/display.css -------------------------------------------------------------------------------- /theme/dropdown-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/dropdown-menu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/dropdown.css -------------------------------------------------------------------------------- /theme/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/fonts/element-icons.ttf -------------------------------------------------------------------------------- /theme/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/fonts/element-icons.woff -------------------------------------------------------------------------------- /theme/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/footer.css -------------------------------------------------------------------------------- /theme/form-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/form.css -------------------------------------------------------------------------------- /theme/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/header.css -------------------------------------------------------------------------------- /theme/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/icon.css -------------------------------------------------------------------------------- /theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/index.css -------------------------------------------------------------------------------- /theme/input-number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/input-number.css -------------------------------------------------------------------------------- /theme/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/input.css -------------------------------------------------------------------------------- /theme/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/loading.css -------------------------------------------------------------------------------- /theme/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/main.css -------------------------------------------------------------------------------- /theme/menu-item-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/menu-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/menu.css -------------------------------------------------------------------------------- /theme/message-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/message-box.css -------------------------------------------------------------------------------- /theme/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/message.css -------------------------------------------------------------------------------- /theme/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/notification.css -------------------------------------------------------------------------------- /theme/option-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/option-group.css -------------------------------------------------------------------------------- /theme/option.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/option.css -------------------------------------------------------------------------------- /theme/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/pagination.css -------------------------------------------------------------------------------- /theme/popover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/popover.css -------------------------------------------------------------------------------- /theme/popper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/popper.css -------------------------------------------------------------------------------- /theme/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/progress.css -------------------------------------------------------------------------------- /theme/radio-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/radio-button.css -------------------------------------------------------------------------------- /theme/radio-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/radio-group.css -------------------------------------------------------------------------------- /theme/radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/radio.css -------------------------------------------------------------------------------- /theme/rate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/rate.css -------------------------------------------------------------------------------- /theme/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/reset.css -------------------------------------------------------------------------------- /theme/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/row.css -------------------------------------------------------------------------------- /theme/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/scrollbar.css -------------------------------------------------------------------------------- /theme/select-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/select-dropdown.css -------------------------------------------------------------------------------- /theme/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/select.css -------------------------------------------------------------------------------- /theme/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/slider.css -------------------------------------------------------------------------------- /theme/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/spinner.css -------------------------------------------------------------------------------- /theme/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/step.css -------------------------------------------------------------------------------- /theme/steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/steps.css -------------------------------------------------------------------------------- /theme/submenu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/switch.css -------------------------------------------------------------------------------- /theme/tab-pane.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/table-column.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/table-column.css -------------------------------------------------------------------------------- /theme/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/table.css -------------------------------------------------------------------------------- /theme/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/tabs.css -------------------------------------------------------------------------------- /theme/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/tag.css -------------------------------------------------------------------------------- /theme/time-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/time-picker.css -------------------------------------------------------------------------------- /theme/time-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/time-select.css -------------------------------------------------------------------------------- /theme/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/tooltip.css -------------------------------------------------------------------------------- /theme/transfer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/transfer.css -------------------------------------------------------------------------------- /theme/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/tree.css -------------------------------------------------------------------------------- /theme/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengzifz/GantTask/HEAD/theme/upload.css --------------------------------------------------------------------------------