fontastic 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +16 -0
- package/.eslintrc.json +54 -0
- package/.github/FUNDING.yml +12 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/.github/dependabot.yml +6 -0
- package/.github/pull_request_template.md +21 -0
- package/.github/stale.yml +17 -0
- package/.github/workflows/macos.yml +58 -0
- package/.github/workflows/ubuntu.yml +70 -0
- package/.github/workflows/windows.yml +64 -0
- package/.node-version +1 -0
- package/.vscode/launch.json +46 -0
- package/.vscode/tasks.json +49 -0
- package/CODE_OF_CONDUCT.md +45 -0
- package/CONTRIBUTING.md +72 -0
- package/LICENSE +21 -0
- package/README.md +111 -0
- package/_config.yml +1 -0
- package/angular.json +194 -0
- package/angular.webpack.js +32 -0
- package/app/Application.js +40 -0
- package/app/Application.ts +38 -0
- package/app/config/alert.ts +32 -0
- package/app/config/database.js +203 -0
- package/app/config/database.ts +202 -0
- package/app/config/index.js +20 -0
- package/app/config/index.ts +3 -0
- package/app/config/mimes.js +49 -0
- package/app/config/mimes.ts +54 -0
- package/app/config/system.js +497 -0
- package/app/config/system.ts +498 -0
- package/app/config/themes.ts +38 -0
- package/app/core/AppLogger.js +31 -0
- package/app/core/AppLogger.ts +38 -0
- package/app/core/ConfigManager.js +114 -0
- package/app/core/ConfigManager.ts +137 -0
- package/app/core/ConnectionManager.js +83 -0
- package/app/core/ConnectionManager.ts +95 -0
- package/app/core/FontCatalog.js +51 -0
- package/app/core/FontCatalog.ts +42 -0
- package/app/core/FontFinder.js +86 -0
- package/app/core/FontFinder.ts +96 -0
- package/app/core/FontInstaller.js +67 -0
- package/app/core/FontInstaller.ts +63 -0
- package/app/core/FontManager.js +165 -0
- package/app/core/FontManager.ts +172 -0
- package/app/core/FontObject.js +54 -0
- package/app/core/FontObject.ts +62 -0
- package/app/core/MessageHandler.js +272 -0
- package/app/core/MessageHandler.ts +337 -0
- package/app/core/SystemManager.js +140 -0
- package/app/core/SystemManager.ts +171 -0
- package/app/core/menu/Example.ts +280 -0
- package/app/core/menu/MenuBuilder.js +45 -0
- package/app/core/menu/MenuBuilder.ts +53 -0
- package/app/core/menu/templates/DarwinTemplate.js +127 -0
- package/app/core/menu/templates/DarwinTemplate.ts +142 -0
- package/app/core/menu/templates/SystemTemplate.js +124 -0
- package/app/core/menu/templates/SystemTemplate.ts +139 -0
- package/app/database/entity/Collection.schema.js +99 -0
- package/app/database/entity/Collection.schema.ts +68 -0
- package/app/database/entity/Logger.schema.js +50 -0
- package/app/database/entity/Logger.schema.ts +26 -0
- package/app/database/entity/Store.schema.js +165 -0
- package/app/database/entity/Store.schema.ts +116 -0
- package/app/database/entity/index.js +20 -0
- package/app/database/entity/index.ts +3 -0
- package/app/database/repository/Collection.repository.js +181 -0
- package/app/database/repository/Collection.repository.ts +190 -0
- package/app/database/repository/Logger.repository.js +25 -0
- package/app/database/repository/Logger.repository.ts +11 -0
- package/app/database/repository/Store.repository.js +328 -0
- package/app/database/repository/Store.repository.ts +358 -0
- package/app/database/repository/User.repository.js +12 -0
- package/app/database/repository/User.repository.ts +8 -0
- package/app/database/repository/index.js +20 -0
- package/app/database/repository/index.ts +3 -0
- package/app/enums/ChannelType.js +62 -0
- package/app/enums/ChannelType.ts +65 -0
- package/app/enums/StorageType.js +19 -0
- package/app/enums/index.js +19 -0
- package/app/enums/index.ts +2 -0
- package/app/enums/storageType.ts +14 -0
- package/app/helpers/command.js +28 -0
- package/app/helpers/command.ts +20 -0
- package/app/helpers/random.js +16 -0
- package/app/helpers/random.ts +12 -0
- package/app/main.js +82 -0
- package/app/main.ts +94 -0
- package/app/package-lock.json +2649 -0
- package/app/package.json +35 -0
- package/app/types/AppAlert.js +3 -0
- package/app/types/AppAlert.ts +8 -0
- package/app/types/AuthUser.js +7 -0
- package/app/types/AuthUser.ts +5 -0
- package/app/types/Breadcrumb.js +3 -0
- package/app/types/Breadcrumb.ts +5 -0
- package/app/types/ImportOptions.js +7 -0
- package/app/types/ImportOptions.ts +3 -0
- package/app/types/QueryOptions.js +3 -0
- package/app/types/QueryOptions.ts +12 -0
- package/app/types/SystemConfig.js +3 -0
- package/app/types/SystemConfig.ts +132 -0
- package/app/types/SystemStats.js +3 -0
- package/app/types/SystemStats.ts +7 -0
- package/app/types/SystemTheme.js +3 -0
- package/app/types/SystemTheme.ts +5 -0
- package/app/types/index.js +25 -0
- package/app/types/index.ts +8 -0
- package/docs/logo.png +0 -0
- package/docs/screenshots/readme.md +7 -0
- package/docs/screenshots/screen-grab1.png +0 -0
- package/docs/screenshots/screen-grab2.png +0 -0
- package/docs/screenshots/screen-grab3.png +0 -0
- package/e2e/main.spec.ts +59 -0
- package/e2e/playwright.config.ts +19 -0
- package/e2e/tsconfig.e2e.json +13 -0
- package/electron-builder.json +71 -0
- package/package.json +121 -0
- package/src/app/app-routing.module.ts +15 -0
- package/src/app/app.component.html +1 -0
- package/src/app/app.component.scss +0 -0
- package/src/app/app.component.spec.ts.dist +33 -0
- package/src/app/app.component.ts +37 -0
- package/src/app/app.module.ts +63 -0
- package/src/app/core/core.module.ts +11 -0
- package/src/app/core/model/AuthUserModel.ts +7 -0
- package/src/app/core/model/CustomThemeModel.ts +7 -0
- package/src/app/core/model/DbConnectionModel.ts +16 -0
- package/src/app/core/model/ImportOptionsModel.ts +5 -0
- package/src/app/core/model/LatestNewsModel.ts +7 -0
- package/src/app/core/model/SearchFormModel.ts +10 -0
- package/src/app/core/model/index.ts +6 -0
- package/src/app/core/services/alert/alert.service.spec.ts +22 -0
- package/src/app/core/services/alert/alert.service.ts +71 -0
- package/src/app/core/services/auth/auth.service.ts +30 -0
- package/src/app/core/services/boot/boot.service.ts +33 -0
- package/src/app/core/services/breadcrumb/breadcrumb.service.spec.ts +22 -0
- package/src/app/core/services/breadcrumb/breadcrumb.service.ts +30 -0
- package/src/app/core/services/config/config.service.ts +63 -0
- package/src/app/core/services/database/database.service.ts +286 -0
- package/src/app/core/services/electron/electron.service.spec.ts +12 -0
- package/src/app/core/services/electron/electron.service.ts +62 -0
- package/src/app/core/services/font/font.service.ts +79 -0
- package/src/app/core/services/gravatar/gravatar.service.spec.ts +16 -0
- package/src/app/core/services/gravatar/gravatar.service.ts +18 -0
- package/src/app/core/services/index.ts +14 -0
- package/src/app/core/services/message/message.service.ts +289 -0
- package/src/app/core/services/modal/modal.service.spec.ts +16 -0
- package/src/app/core/services/modal/modal.service.ts +34 -0
- package/src/app/core/services/news/news.service.ts +94 -0
- package/src/app/core/services/presentation/presentation.service.ts +341 -0
- package/src/app/core/services/utils/utils.service.spec.ts +12 -0
- package/src/app/core/services/utils/utils.service.ts +144 -0
- package/src/app/layout/aside/aside.component.html +9 -0
- package/src/app/layout/aside/aside.component.scss +1 -0
- package/src/app/layout/aside/aside.component.ts +26 -0
- package/src/app/layout/footer/footer.component.html +11 -0
- package/src/app/layout/footer/footer.component.scss +27 -0
- package/src/app/layout/footer/footer.component.ts +32 -0
- package/src/app/layout/header/header.component.html +35 -0
- package/src/app/layout/header/header.component.scss +60 -0
- package/src/app/layout/header/header.component.ts +229 -0
- package/src/app/layout/layout.component.html +14 -0
- package/src/app/layout/layout.component.scss +119 -0
- package/src/app/layout/layout.component.ts +23 -0
- package/src/app/layout/layout.module.ts +32 -0
- package/src/app/layout/layout.service.ts +13 -0
- package/src/app/layout/navigation/navigation.component.html +142 -0
- package/src/app/layout/navigation/navigation.component.scss +0 -0
- package/src/app/layout/navigation/navigation.component.ts +302 -0
- package/src/app/pages/main/grid/grid.component.html +160 -0
- package/src/app/pages/main/grid/grid.component.scss +3 -0
- package/src/app/pages/main/grid/grid.component.ts +98 -0
- package/src/app/pages/main/inspect/inspect.component.html +7 -0
- package/src/app/pages/main/inspect/inspect.component.scss +3 -0
- package/src/app/pages/main/inspect/inspect.component.ts +66 -0
- package/src/app/pages/main/main-routing.module.ts +30 -0
- package/src/app/pages/main/main.component.html +6 -0
- package/src/app/pages/main/main.component.scss +191 -0
- package/src/app/pages/main/main.component.ts +35 -0
- package/src/app/pages/main/main.module.ts +28 -0
- package/src/app/pages/main/preview/preview.component.html +46 -0
- package/src/app/pages/main/preview/preview.component.scss +0 -0
- package/src/app/pages/main/preview/preview.component.ts +239 -0
- package/src/app/pages/main/toolbar/toolbar.component.html +78 -0
- package/src/app/pages/main/toolbar/toolbar.component.scss +3 -0
- package/src/app/pages/main/toolbar/toolbar.component.ts +132 -0
- package/src/app/shared/components/alert/alert.component.html +9 -0
- package/src/app/shared/components/alert/alert.component.scss +0 -0
- package/src/app/shared/components/alert/alert.component.ts +37 -0
- package/src/app/shared/components/breadcrumbs/breadcrumbs.component.html +14 -0
- package/src/app/shared/components/breadcrumbs/breadcrumbs.component.scss +0 -0
- package/src/app/shared/components/breadcrumbs/breadcrumbs.component.ts +36 -0
- package/src/app/shared/components/button/button.component.html +3 -0
- package/src/app/shared/components/button/button.component.scss +2 -0
- package/src/app/shared/components/button/button.component.ts +22 -0
- package/src/app/shared/components/collection/create-collection/create-collection.component.html +41 -0
- package/src/app/shared/components/collection/create-collection/create-collection.component.scss +0 -0
- package/src/app/shared/components/collection/create-collection/create-collection.component.ts +68 -0
- package/src/app/shared/components/collection/form-collection/form-collection.component.html +1 -0
- package/src/app/shared/components/collection/form-collection/form-collection.component.scss +0 -0
- package/src/app/shared/components/collection/form-collection/form-collection.component.ts +15 -0
- package/src/app/shared/components/collection/update-collection/update-collection.component.html +40 -0
- package/src/app/shared/components/collection/update-collection/update-collection.component.scss +0 -0
- package/src/app/shared/components/collection/update-collection/update-collection.component.ts +71 -0
- package/src/app/shared/components/glyph-list/glyph-list.component.html +40 -0
- package/src/app/shared/components/glyph-list/glyph-list.component.scss +1 -0
- package/src/app/shared/components/glyph-list/glyph-list.component.ts +165 -0
- package/src/app/shared/components/glyph-view/glyph-view.component.html +23 -0
- package/src/app/shared/components/glyph-view/glyph-view.component.scss +0 -0
- package/src/app/shared/components/glyph-view/glyph-view.component.ts +228 -0
- package/src/app/shared/components/index.ts +16 -0
- package/src/app/shared/components/loading/loading.component.html +1 -0
- package/src/app/shared/components/loading/loading.component.scss +0 -0
- package/src/app/shared/components/loading/loading.component.ts +26 -0
- package/src/app/shared/components/modal/modal.component.html +31 -0
- package/src/app/shared/components/modal/modal.component.scss +0 -0
- package/src/app/shared/components/modal/modal.component.ts +51 -0
- package/src/app/shared/components/page-not-found/page-not-found.component.html +3 -0
- package/src/app/shared/components/page-not-found/page-not-found.component.scss +0 -0
- package/src/app/shared/components/page-not-found/page-not-found.component.ts +12 -0
- package/src/app/shared/components/paginator/paginator.component.html +21 -0
- package/src/app/shared/components/paginator/paginator.component.scss +3 -0
- package/src/app/shared/components/paginator/paginator.component.ts +133 -0
- package/src/app/shared/components/pairing/pairing.component.html +20 -0
- package/src/app/shared/components/pairing/pairing.component.scss +0 -0
- package/src/app/shared/components/pairing/pairing.component.ts +33 -0
- package/src/app/shared/components/search/search.component.html +54 -0
- package/src/app/shared/components/search/search.component.scss +10 -0
- package/src/app/shared/components/search/search.component.ts +77 -0
- package/src/app/shared/components/settings/database/database.component.html +151 -0
- package/src/app/shared/components/settings/database/database.component.scss +0 -0
- package/src/app/shared/components/settings/database/database.component.ts +145 -0
- package/src/app/shared/components/settings/general/general.component.html +170 -0
- package/src/app/shared/components/settings/general/general.component.scss +0 -0
- package/src/app/shared/components/settings/general/general.component.ts +150 -0
- package/src/app/shared/components/settings/logs/logs.component.html +44 -0
- package/src/app/shared/components/settings/logs/logs.component.scss +0 -0
- package/src/app/shared/components/settings/logs/logs.component.ts +37 -0
- package/src/app/shared/components/settings/news/news.component.html +41 -0
- package/src/app/shared/components/settings/news/news.component.scss +0 -0
- package/src/app/shared/components/settings/news/news.component.ts +52 -0
- package/src/app/shared/components/settings/settings.component.html +46 -0
- package/src/app/shared/components/settings/settings.component.scss +0 -0
- package/src/app/shared/components/settings/settings.component.ts +23 -0
- package/src/app/shared/components/settings/system/system.component.html +30 -0
- package/src/app/shared/components/settings/system/system.component.scss +0 -0
- package/src/app/shared/components/settings/system/system.component.ts +43 -0
- package/src/app/shared/components/settings/theme/theme.component.html +22 -0
- package/src/app/shared/components/settings/theme/theme.component.scss +0 -0
- package/src/app/shared/components/settings/theme/theme.component.ts +50 -0
- package/src/app/shared/components/spinner/spinner.component.html +1 -0
- package/src/app/shared/components/spinner/spinner.component.scss +0 -0
- package/src/app/shared/components/spinner/spinner.component.ts +26 -0
- package/src/app/shared/components/store/store.component.html +22 -0
- package/src/app/shared/components/store/store.component.scss +10 -0
- package/src/app/shared/components/store/store.component.ts +58 -0
- package/src/app/shared/components/tables/tables.component.html +47 -0
- package/src/app/shared/components/tables/tables.component.scss +10 -0
- package/src/app/shared/components/tables/tables.component.ts +81 -0
- package/src/app/shared/components/typescale/typescale.component.html +53 -0
- package/src/app/shared/components/typescale/typescale.component.scss +0 -0
- package/src/app/shared/components/typescale/typescale.component.ts +168 -0
- package/src/app/shared/directives/gravatar/gravatar.directive.ts +29 -0
- package/src/app/shared/directives/index.ts +2 -0
- package/src/app/shared/directives/webview/webview.directive.ts +8 -0
- package/src/app/shared/pipes/installable.pipe.ts +10 -0
- package/src/app/shared/pipes/prettybytes.pipe.ts +10 -0
- package/src/app/shared/pipes/safehtml.pipe.ts +10 -0
- package/src/app/shared/shared.module.ts +92 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/fonts/fa/fa-brands-400.eot +0 -0
- package/src/assets/fonts/fa/fa-brands-400.svg +3535 -0
- package/src/assets/fonts/fa/fa-brands-400.ttf +0 -0
- package/src/assets/fonts/fa/fa-brands-400.woff +0 -0
- package/src/assets/fonts/fa/fa-brands-400.woff2 +0 -0
- package/src/assets/fonts/fa/fa-regular-400.eot +0 -0
- package/src/assets/fonts/fa/fa-regular-400.svg +803 -0
- package/src/assets/fonts/fa/fa-regular-400.ttf +0 -0
- package/src/assets/fonts/fa/fa-regular-400.woff +0 -0
- package/src/assets/fonts/fa/fa-regular-400.woff2 +0 -0
- package/src/assets/fonts/fa/fa-solid-900.eot +0 -0
- package/src/assets/fonts/fa/fa-solid-900.svg +4700 -0
- package/src/assets/fonts/fa/fa-solid-900.ttf +0 -0
- package/src/assets/fonts/fa/fa-solid-900.woff +0 -0
- package/src/assets/fonts/fa/fa-solid-900.woff2 +0 -0
- package/src/assets/fonts/md/MaterialIcons-Regular.eot +0 -0
- package/src/assets/fonts/md/MaterialIcons-Regular.ijmap +1 -0
- package/src/assets/fonts/md/MaterialIcons-Regular.svg +2373 -0
- package/src/assets/fonts/md/MaterialIcons-Regular.ttf +0 -0
- package/src/assets/fonts/md/MaterialIcons-Regular.woff +0 -0
- package/src/assets/fonts/md/MaterialIcons-Regular.woff2 +0 -0
- package/src/assets/fonts/md/README.md +9 -0
- package/src/assets/fonts/md/codepoints +932 -0
- package/src/assets/fonts/md/material-icons.css +36 -0
- package/src/assets/fonts/octicon/octicon.eot +0 -0
- package/src/assets/fonts/octicon/octicon.svg +378 -0
- package/src/assets/fonts/octicon/octicon.ttf +0 -0
- package/src/assets/fonts/octicon/octicon.woff +0 -0
- package/src/assets/fonts/octicon/octicon.woff2 +0 -0
- package/src/assets/fonts/roboto/Roboto-Bold-webfont.eot +0 -0
- package/src/assets/fonts/roboto/Roboto-Bold-webfont.svg +607 -0
- package/src/assets/fonts/roboto/Roboto-Bold-webfont.ttf +0 -0
- package/src/assets/fonts/roboto/Roboto-Bold-webfont.woff +0 -0
- package/src/assets/fonts/roboto/Roboto-Medium-webfont.eot +0 -0
- package/src/assets/fonts/roboto/Roboto-Medium-webfont.svg +607 -0
- package/src/assets/fonts/roboto/Roboto-Medium-webfont.ttf +0 -0
- package/src/assets/fonts/roboto/Roboto-Medium-webfont.woff +0 -0
- package/src/assets/fonts/roboto/Roboto-Regular-webfont.eot +0 -0
- package/src/assets/fonts/roboto/Roboto-Regular-webfont.svg +635 -0
- package/src/assets/fonts/roboto/Roboto-Regular-webfont.ttf +0 -0
- package/src/assets/fonts/roboto/Roboto-Regular-webfont.woff +0 -0
- package/src/assets/i18n/en.json +12 -0
- package/src/assets/icons/android-chrome-192x192.png +0 -0
- package/src/assets/icons/android-chrome-512x512.png +0 -0
- package/src/assets/icons/apple-touch-icon.png +0 -0
- package/src/assets/icons/favicon-16x16.png +0 -0
- package/src/assets/icons/favicon-32x32.png +0 -0
- package/src/assets/icons/favicon.ico +0 -0
- package/src/assets/icons/site.webmanifest +1 -0
- package/src/assets/images/electron.bmp +0 -0
- package/src/bin/activator +0 -0
- package/src/bin/activator.exe +0 -0
- package/src/environments/environment.dev.ts +4 -0
- package/src/environments/environment.prod.ts +4 -0
- package/src/environments/environment.ts +4 -0
- package/src/environments/environment.web.prod.ts +4 -0
- package/src/environments/environment.web.ts +4 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +55 -0
- package/src/karma.conf.js +50 -0
- package/src/main.ts +15 -0
- package/src/polyfills-test.ts +1 -0
- package/src/polyfills.ts +53 -0
- package/src/styles/base/loading.scss +87 -0
- package/src/styles/base/reset.scss +408 -0
- package/src/styles/components/alert.scss +54 -0
- package/src/styles/components/buttons.scss +93 -0
- package/src/styles/components/forms.scss +96 -0
- package/src/styles/components/inputs.scss +113 -0
- package/src/styles/components/modal.scss +52 -0
- package/src/styles/components/paginator.scss +108 -0
- package/src/styles/components/scrollbox.scss +71 -0
- package/src/styles/components/spinner.scss +11 -0
- package/src/styles/components/tables.scss +42 -0
- package/src/styles/components/tabs.scss +44 -0
- package/src/styles/components/toolbar.scss +130 -0
- package/src/styles/fonts/md.scss +54 -0
- package/src/styles/fonts/octicons.scss +1351 -0
- package/src/styles/fonts/roboto.scss +32 -0
- package/src/styles/themes/dashboard.scss +294 -0
- package/src/styles/themes/euphoria.scss +283 -0
- package/src/styles/themes/mellow.scss +280 -0
- package/src/styles/themes/midnight.scss +283 -0
- package/src/styles/themes/passion.scss +280 -0
- package/src/styles/themes/swiss.scss +283 -0
- package/src/styles/tools/_functions.scss +5 -0
- package/src/styles/tools/_mixins.scss +159 -0
- package/src/styles/tools/_placeholders.scss +17 -0
- package/src/styles/tools/_variables.scss +67 -0
- package/src/styles.scss +37 -0
- package/src/test.ts +22 -0
- package/src/tsconfig.app.json +20 -0
- package/src/tsconfig.spec.json +23 -0
- package/src/typings.d.ts +9 -0
- package/tailwind.config.js +67 -0
- package/tsconfig.json +42 -0
- package/tsconfig.serve.json +27 -0
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
|
|
2
|
+
/* ==========================================================================
|
|
3
|
+
Inputs
|
|
4
|
+
========================================================================== */
|
|
5
|
+
|
|
6
|
+
input,
|
|
7
|
+
select {
|
|
8
|
+
@apply text-gray-700;
|
|
9
|
+
&:focus {
|
|
10
|
+
@apply text-gray-700;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
input:not([type='range']):not([type='color']):not(.form-control-hidden),
|
|
15
|
+
select:not([type='range']):not(.form-control-hidden) {
|
|
16
|
+
@apply border border-solid border-default;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
input[type='color'] {
|
|
20
|
+
@apply border-none;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* ==========================================================================
|
|
24
|
+
Checkbox/Radio
|
|
25
|
+
========================================================================== */
|
|
26
|
+
|
|
27
|
+
.radio,
|
|
28
|
+
.checkbox {
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-direction: row;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
align-items: center;
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.checkbox {
|
|
37
|
+
--border-radius: 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.radio input[type="radio"],
|
|
41
|
+
.checkbox input[type="checkbox"] {
|
|
42
|
+
display: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.radio label,
|
|
46
|
+
.checkbox label {
|
|
47
|
+
cursor: pointer;
|
|
48
|
+
position: relative;
|
|
49
|
+
display: inline-block;
|
|
50
|
+
margin: 0;
|
|
51
|
+
padding: 0;
|
|
52
|
+
width: 14px;
|
|
53
|
+
height: 14px;
|
|
54
|
+
border: 2px solid #00a0be;
|
|
55
|
+
border-radius: var(--border-radius);
|
|
56
|
+
pointer-events: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.radio label::before,
|
|
60
|
+
.checkbox label::before {
|
|
61
|
+
content: "";
|
|
62
|
+
position: absolute;
|
|
63
|
+
left: 50%;
|
|
64
|
+
top: 50%;
|
|
65
|
+
width: 8px;
|
|
66
|
+
height: 8px;
|
|
67
|
+
border-radius: var(--border-radius);
|
|
68
|
+
background-color: transparent;
|
|
69
|
+
transform: translate(-50%, -50%);
|
|
70
|
+
transition: background-color 0.25s;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.radio :checked ~ label::before,
|
|
74
|
+
.checkbox :checked ~ label::before {
|
|
75
|
+
background-color: #00a0be;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.radio :checked ~ span,
|
|
79
|
+
.checkbox :checked ~ span {
|
|
80
|
+
color: #00a0be;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.radio.radio-large {
|
|
84
|
+
label {
|
|
85
|
+
width: 16px;
|
|
86
|
+
height: 16px;
|
|
87
|
+
border-width: 1px;
|
|
88
|
+
}
|
|
89
|
+
label::before {
|
|
90
|
+
width: 10px;
|
|
91
|
+
height: 10px;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* ==========================================================================
|
|
96
|
+
Range Slider
|
|
97
|
+
========================================================================== */
|
|
98
|
+
|
|
99
|
+
input[type="range"] {
|
|
100
|
+
@apply cursor-pointer appearance-none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
input[type="range"]:focus {
|
|
104
|
+
@apply outline-none;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
input[type="range"]::-webkit-slider-runnable-track {
|
|
108
|
+
@apply bg-[#00a0be] h-1.5 rounded;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
input[type="range"]::-webkit-slider-thumb {
|
|
112
|
+
@apply appearance-none h-[15px] w-[15px] -mt-[5px] rounded-full bg-[#00a0be] border-3 border-solid border-white shadow-md;
|
|
113
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
.modal {
|
|
2
|
+
@apply flex items-center justify-center fixed inset-0 z-20 overflow-hidden outline-none;
|
|
3
|
+
|
|
4
|
+
&__dialog {
|
|
5
|
+
@apply relative w-full h-full p-4;
|
|
6
|
+
width: 600px;
|
|
7
|
+
margin: 0px auto;
|
|
8
|
+
&.sm {
|
|
9
|
+
width: 600px;
|
|
10
|
+
height: auto;
|
|
11
|
+
}
|
|
12
|
+
&.md {
|
|
13
|
+
width: 900px;
|
|
14
|
+
height: auto;
|
|
15
|
+
}
|
|
16
|
+
&.lg {
|
|
17
|
+
width: 1440px;
|
|
18
|
+
}
|
|
19
|
+
&.xl {
|
|
20
|
+
width: 1680px;
|
|
21
|
+
}
|
|
22
|
+
&.full {
|
|
23
|
+
width: 100vw;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&__content {
|
|
28
|
+
@apply flex flex-col relative bg-white h-full;
|
|
29
|
+
&.rounded-md {
|
|
30
|
+
border-radius: 0.475rem;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&__header {
|
|
35
|
+
@apply flex items-center justify-between p-4;
|
|
36
|
+
&-title {
|
|
37
|
+
@apply text-lg font-semibold tracking-wide leading-4;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&__body {
|
|
42
|
+
@apply relative h-full overflow-hidden;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&__footer {
|
|
46
|
+
@apply text-right p-4;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.modal-bg {
|
|
51
|
+
@apply fixed inset-0 z-10 bg-black opacity-30;
|
|
52
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* ==========================================================================
|
|
2
|
+
Paginator
|
|
3
|
+
========================================================================== */
|
|
4
|
+
|
|
5
|
+
.paginator {
|
|
6
|
+
padding: 0;
|
|
7
|
+
margin: 0;
|
|
8
|
+
|
|
9
|
+
opacity: 0;
|
|
10
|
+
visibility: hidden;
|
|
11
|
+
transition: visibility 0s, opacity 0.5s ease-in-out;
|
|
12
|
+
|
|
13
|
+
.paginator-block {
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: row;
|
|
16
|
+
flex-wrap: nowrap;
|
|
17
|
+
justify-content: flex-start;
|
|
18
|
+
align-items: center;
|
|
19
|
+
white-space: nowrap;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.paginator-panel {
|
|
23
|
+
display: flex !important;
|
|
24
|
+
align-items: center;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
a,
|
|
28
|
+
input,
|
|
29
|
+
.paginator-panel,
|
|
30
|
+
.paginator-counts,
|
|
31
|
+
.paginator-results {
|
|
32
|
+
display: inline-block;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.paginator-counts,
|
|
36
|
+
.paginator-results {
|
|
37
|
+
padding-left: 15px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.paginator-results {
|
|
41
|
+
margin: 0;
|
|
42
|
+
|
|
43
|
+
label {
|
|
44
|
+
margin: 0;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.paginator-counts {
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
line-height: 1;
|
|
51
|
+
vertical-align: middle;
|
|
52
|
+
margin-top: 3px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
a {
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
//border: 1px solid transparent;
|
|
58
|
+
border-radius: 0;
|
|
59
|
+
border-width: 0;
|
|
60
|
+
height: 26px;
|
|
61
|
+
width: 26px;
|
|
62
|
+
outline: none;
|
|
63
|
+
filter: none;
|
|
64
|
+
box-shadow: none;
|
|
65
|
+
text-shadow: none;
|
|
66
|
+
user-select: none;
|
|
67
|
+
padding: 0px;
|
|
68
|
+
margin: 0 3px;
|
|
69
|
+
text-align: center;
|
|
70
|
+
text-decoration: none;
|
|
71
|
+
vertical-align: middle;
|
|
72
|
+
white-space: nowrap;
|
|
73
|
+
|
|
74
|
+
i.material-icons {
|
|
75
|
+
margin-top: 1px;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
a.page-disabled {
|
|
80
|
+
pointer-events: none;
|
|
81
|
+
i.material-icons {
|
|
82
|
+
opacity: 0.50;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
input {
|
|
87
|
+
padding: 5px 10px;
|
|
88
|
+
text-align: center;
|
|
89
|
+
width: 45px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@media only screen and (max-width: 1440px) {
|
|
94
|
+
.paginator {
|
|
95
|
+
.paginator-counts {
|
|
96
|
+
display: none;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.paginator {
|
|
102
|
+
a {
|
|
103
|
+
@apply border-none bg-gray-100;
|
|
104
|
+
i.material-icons {
|
|
105
|
+
@apply text-default;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/* ==========================================================================
|
|
2
|
+
Scrollbox
|
|
3
|
+
========================================================================== */
|
|
4
|
+
|
|
5
|
+
.hover-scrollbox-x,
|
|
6
|
+
.hover-scrollbox-y {
|
|
7
|
+
--scrollbar-color: #00a0be;
|
|
8
|
+
--scrollbar-hover-color: #00a1bece;
|
|
9
|
+
--scrollbar-space: 0.1rem;
|
|
10
|
+
--scrollbar-height: calc(.3rem + var(--scrollbar-space));
|
|
11
|
+
--scrollbar-width: calc(.3rem + var(--scrollbar-space));
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.hover-scrollbox-x,
|
|
15
|
+
.hover-scrollbox-y {
|
|
16
|
+
position: relative;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.hover-scrollbox-x {
|
|
20
|
+
overflow-x: hidden;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.hover-scrollbox-y {
|
|
24
|
+
overflow-y: hidden;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.hover-scrollbox-x::-webkit-scrollbar {
|
|
28
|
+
height: var(--scrollbar-height);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.hover-scrollbox-y::-webkit-scrollbar {
|
|
32
|
+
width: var(--scrollbar-width);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.hover-scrollbox-x::-webkit-scrollbar-thumb {
|
|
36
|
+
background-clip: content-box;
|
|
37
|
+
border-bottom: var(--scrollbar-space) solid transparent;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.hover-scrollbox-y::-webkit-scrollbar-thumb {
|
|
41
|
+
background-clip: content-box;
|
|
42
|
+
border-right: var(--scrollbar-space) solid transparent;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.hover-scrollbox-x:hover {
|
|
46
|
+
overflow-x: overlay;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.hover-scrollbox-y:hover {
|
|
50
|
+
overflow-y: overlay;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.hover-scrollbox-x,
|
|
54
|
+
.hover-scrollbox-y {
|
|
55
|
+
scrollbar-color: var(--scrollbar-color) transparent;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.hover-scrollbox-x:hover,
|
|
59
|
+
.hover-scrollbox-y:hover {
|
|
60
|
+
scrollbar-color: var(--scrollbar-color) transparent;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.hover-scrollbox-x::-webkit-scrollbar-thumb,
|
|
64
|
+
.hover-scrollbox-y::-webkit-scrollbar-thumb {
|
|
65
|
+
background-color: var(--scrollbar-color);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.hover-scrollbox-x::-webkit-scrollbar-thumb:hover,
|
|
69
|
+
.hover-scrollbox-y::-webkit-scrollbar-thumb:hover {
|
|
70
|
+
background-color: var(--scrollbar-hover-color);
|
|
71
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* ==========================================================================
|
|
2
|
+
Spinner
|
|
3
|
+
========================================================================== */
|
|
4
|
+
|
|
5
|
+
.app-spinner {
|
|
6
|
+
@apply relative rounded-full w-[19px] h-[19px] m-0 p-0 opacity-0 indent-[150%] border-4 border-[#00a0be];
|
|
7
|
+
border-left: 4px solid #fff;
|
|
8
|
+
&.is-animating {
|
|
9
|
+
@apply opacity-100 animate-spin;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* ==========================================================================
|
|
2
|
+
Tables
|
|
3
|
+
========================================================================== */
|
|
4
|
+
|
|
5
|
+
.table {
|
|
6
|
+
@apply text-[#616467] opacity-0 invisible transition-opacity;
|
|
7
|
+
|
|
8
|
+
thead>tr {
|
|
9
|
+
@apply text-white bg-[#00a1be];
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&.striped>tbody>tr:nth-child(odd) {
|
|
13
|
+
@apply bg-[#f5f5f5];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
tr {
|
|
17
|
+
|
|
18
|
+
th,
|
|
19
|
+
td {
|
|
20
|
+
@apply bg-inherit relative align-middle whitespace-nowrap overflow-hidden;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
th {
|
|
24
|
+
@apply cursor-pointer p-3;
|
|
25
|
+
.material-icons {
|
|
26
|
+
color: #fff;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
td {
|
|
31
|
+
@apply p-3;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
th:not(.sort_input) {
|
|
35
|
+
min-width: 120px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
th.sort_input {
|
|
39
|
+
min-width: 40px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
.tabs {
|
|
2
|
+
list-style: none;
|
|
3
|
+
padding-left: 0;
|
|
4
|
+
display: grid;
|
|
5
|
+
grid-template-columns: repeat(6, 1fr);
|
|
6
|
+
margin: 0;
|
|
7
|
+
height: 38px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.tabs li {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
flex-wrap: nowrap;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
align-items: center;
|
|
16
|
+
align-content: stretch;
|
|
17
|
+
text-align: center;
|
|
18
|
+
background-color: inherit;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
transition: background-color 0.45s ease-in-out;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.tabs li:last-of-type {
|
|
24
|
+
border-right: unset !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.tabs li.tabs-panel-open {
|
|
28
|
+
border-bottom: none !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tabs li>a {
|
|
32
|
+
text-decoration: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@media (max-width: 480px) {
|
|
36
|
+
.tabs {
|
|
37
|
+
grid-template-columns: 1fr;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.tabs-content {
|
|
42
|
+
position: relative;
|
|
43
|
+
height: 100%;
|
|
44
|
+
}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/* ==========================================================================
|
|
2
|
+
Toolbar
|
|
3
|
+
========================================================================== */
|
|
4
|
+
|
|
5
|
+
.input-preview {
|
|
6
|
+
position: relative;
|
|
7
|
+
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: row;
|
|
10
|
+
flex-wrap: nowrap;
|
|
11
|
+
justify-content: space-around;
|
|
12
|
+
align-items: center;
|
|
13
|
+
|
|
14
|
+
&:not(:last-of-type) {
|
|
15
|
+
margin: 0 10px 0 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
white-space: nowrap;
|
|
19
|
+
|
|
20
|
+
@include loading-transition(0s, 1s);
|
|
21
|
+
|
|
22
|
+
label {
|
|
23
|
+
font-size: 12px;
|
|
24
|
+
margin: 0 10px;
|
|
25
|
+
display: none;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.input-preview.quick-text,
|
|
30
|
+
.input-preview.preview-size,
|
|
31
|
+
.input-preview.preview-range,
|
|
32
|
+
.input-preview.preview-color,
|
|
33
|
+
.input-preview.preview-reset,
|
|
34
|
+
.input-preview.preview-casing,
|
|
35
|
+
.input-preview.preview-spacing {
|
|
36
|
+
|
|
37
|
+
button {
|
|
38
|
+
background-color: transparent;
|
|
39
|
+
border: none;
|
|
40
|
+
border-radius: 0;
|
|
41
|
+
outline: none;
|
|
42
|
+
margin: 0;
|
|
43
|
+
padding: 0;
|
|
44
|
+
width: 24px;
|
|
45
|
+
height: 24px;
|
|
46
|
+
|
|
47
|
+
span {
|
|
48
|
+
color: #9b9af1;
|
|
49
|
+
vertical-align: middle;
|
|
50
|
+
line-height: 1;
|
|
51
|
+
width: 24px;
|
|
52
|
+
height: 24px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&:focus {
|
|
56
|
+
outline: none;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
$inputColorWidth: 90px;
|
|
62
|
+
|
|
63
|
+
.input-preview.preview-color {
|
|
64
|
+
input {
|
|
65
|
+
width: $inputColorWidth;
|
|
66
|
+
min-width: $inputColorWidth;
|
|
67
|
+
max-width: $inputColorWidth;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.input-preview.preview-text {
|
|
72
|
+
height: 24px;
|
|
73
|
+
width: 350px;
|
|
74
|
+
|
|
75
|
+
&.open {
|
|
76
|
+
transform: scale(1);
|
|
77
|
+
transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
select,
|
|
81
|
+
input {
|
|
82
|
+
background-color: #fff;
|
|
83
|
+
border: 1px solid $color-border;
|
|
84
|
+
border-radius: 0;
|
|
85
|
+
position: absolute;
|
|
86
|
+
top: 0;
|
|
87
|
+
right: 0;
|
|
88
|
+
height: 24px;
|
|
89
|
+
width: 0%;
|
|
90
|
+
margin: 0;
|
|
91
|
+
padding: 5px 10px 5px 6px;
|
|
92
|
+
outline: none;
|
|
93
|
+
box-shadow: none;
|
|
94
|
+
vertical-align: middle;
|
|
95
|
+
font-size: 14px;
|
|
96
|
+
font-weight: normal;
|
|
97
|
+
line-height: 1.5;
|
|
98
|
+
text-align: left;
|
|
99
|
+
transition: width 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.open select,
|
|
103
|
+
&.open input {
|
|
104
|
+
width: 100%;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
button {
|
|
108
|
+
background-color: $color-blue;
|
|
109
|
+
position: absolute;
|
|
110
|
+
top: 0;
|
|
111
|
+
right: 0;
|
|
112
|
+
border: none;
|
|
113
|
+
border-radius: 0;
|
|
114
|
+
outline: none;
|
|
115
|
+
height: 24px;
|
|
116
|
+
|
|
117
|
+
span {
|
|
118
|
+
color: $color-white;
|
|
119
|
+
vertical-align: middle;
|
|
120
|
+
position: relative;
|
|
121
|
+
top: 0px;
|
|
122
|
+
width: 26px;
|
|
123
|
+
height: 26px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&:focus {
|
|
127
|
+
outline: none;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Material Icons';
|
|
3
|
+
font-style: normal;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
src: url(../../assets/fonts/md/MaterialIcons-Regular.woff2) format('woff2');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.material-icons {
|
|
9
|
+
color: inherit;
|
|
10
|
+
font-family: "Material Icons";
|
|
11
|
+
font-weight: normal;
|
|
12
|
+
font-style: normal;
|
|
13
|
+
font-size: 24px;
|
|
14
|
+
/* Preferred icon size */
|
|
15
|
+
display: inline-block;
|
|
16
|
+
line-height: 1;
|
|
17
|
+
text-transform: none;
|
|
18
|
+
letter-spacing: normal;
|
|
19
|
+
word-wrap: normal;
|
|
20
|
+
white-space: nowrap;
|
|
21
|
+
direction: ltr;
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
vertical-align: middle;
|
|
24
|
+
|
|
25
|
+
/* Support for all WebKit browsers. */
|
|
26
|
+
-webkit-font-smoothing: antialiased;
|
|
27
|
+
/* Support for Safari and Chrome. */
|
|
28
|
+
text-rendering: optimizeLegibility;
|
|
29
|
+
|
|
30
|
+
/* Support for Firefox. */
|
|
31
|
+
-moz-osx-font-smoothing: grayscale;
|
|
32
|
+
|
|
33
|
+
/* Support for IE. */
|
|
34
|
+
font-feature-settings: "liga";
|
|
35
|
+
|
|
36
|
+
// fixes icon resizing when clicking
|
|
37
|
+
&.material-icons-sized {
|
|
38
|
+
height: 26px;
|
|
39
|
+
width: 26px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.material-icons-rounded {
|
|
44
|
+
.material-icons {
|
|
45
|
+
border-radius: 50%;
|
|
46
|
+
padding: 4px;
|
|
47
|
+
transition-property: background-color, color;
|
|
48
|
+
transition-duration: 0.2s;
|
|
49
|
+
&:hover {
|
|
50
|
+
color: #008197;
|
|
51
|
+
background-color: #f3f4f6;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|