ember-inspector 4.13.1-alpha.2024.8.9 → 4.13.1-alpha.2025.6.7
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/README.md +10 -2
- package/app/components/app-picker.hbs +2 -2
- package/app/components/component-tree-item.hbs +13 -13
- package/app/components/component-tree-toolbar.hbs +3 -3
- package/app/components/{date-property-field.js → date-property-field.ts} +6 -5
- package/app/components/deprecation-item-source.hbs +1 -1
- package/app/components/deprecation-item.hbs +1 -1
- package/app/components/deprecations-toolbar.hbs +1 -1
- package/app/components/item-types.hbs +7 -7
- package/app/components/list-cell.hbs +3 -3
- package/app/components/list-content.hbs +4 -3
- package/app/components/list-content.ts +96 -0
- package/app/components/list.hbs +3 -3
- package/app/components/list.js +7 -7
- package/app/components/model-types-toolbar.hbs +3 -3
- package/app/components/object-inspector/dependent-keys.hbs +4 -4
- package/app/components/object-inspector/errors.hbs +4 -4
- package/app/components/object-inspector/properties-all.hbs +1 -1
- package/app/components/object-inspector/properties-grouped.hbs +5 -5
- package/app/components/object-inspector/property.hbs +16 -16
- package/app/components/object-inspector/property.ts +26 -17
- package/app/components/object-inspector/sort-properties.js +12 -4
- package/app/components/object-inspector.hbs +8 -8
- package/app/components/object-inspector.js +1 -1
- package/app/components/promise-item.hbs +11 -11
- package/app/components/promise-item.js +8 -6
- package/app/components/promise-tree-toolbar.hbs +5 -5
- package/app/components/records-toolbar.hbs +2 -2
- package/app/components/render-item.hbs +4 -4
- package/app/components/render-item.ts +12 -9
- package/app/components/render-tree-toolbar.hbs +1 -1
- package/app/components/route-cell-name.hbs +1 -1
- package/app/components/route-cell-name.js +3 -2
- package/app/components/route-tree-toolbar.hbs +2 -2
- package/app/components/scroll-container.js +2 -0
- package/app/components/side-nav.hbs +5 -5
- package/app/components/side-nav.js +1 -1
- package/app/computed/{debounce.js → debounce.ts} +7 -5
- package/app/config/environment.d.ts +5 -2
- package/app/controllers/app-config.js +1 -0
- package/app/controllers/application.js +33 -34
- package/app/controllers/component-tree.js +3 -2
- package/app/controllers/container-type.js +2 -1
- package/app/controllers/container-types/{index.js → index.ts} +5 -2
- package/app/controllers/container-types.js +3 -6
- package/app/controllers/deprecations.js +16 -11
- package/app/controllers/libraries.js +1 -0
- package/app/controllers/model-types.js +1 -0
- package/app/controllers/promise-tree.ts +149 -0
- package/app/controllers/records.js +18 -26
- package/app/controllers/{render-tree.js → render-tree.ts} +54 -45
- package/app/controllers/route-tree.js +7 -5
- package/app/helpers/build-style.js +1 -1
- package/app/initializers/setup.js +1 -1
- package/app/libs/promise-assembler.ts +249 -0
- package/app/libs/resizable-columns.js +10 -10
- package/app/models/{promise.js → promise.ts} +72 -69
- package/app/{router.js → router.ts} +1 -1
- package/app/routes/app-detected.js +3 -5
- package/app/routes/application.js +6 -12
- package/app/routes/deprecations.js +7 -16
- package/app/routes/launch.js +2 -1
- package/app/routes/libraries.js +2 -1
- package/app/routes/model-type.js +2 -3
- package/app/routes/model-types.ts +57 -0
- package/app/routes/promise-tree.ts +63 -0
- package/app/routes/records.ts +78 -0
- package/app/routes/render-tree.ts +93 -0
- package/app/routes/route-tree.js +0 -1
- package/app/routes/{tab.js → tab.ts} +9 -2
- package/app/routes/whats-new.js +1 -1
- package/app/services/adapters/{basic.js → basic.ts} +36 -30
- package/app/services/adapters/{bookmarklet.js → bookmarklet.ts} +17 -24
- package/app/services/adapters/{chrome.js → chrome.ts} +1 -2
- package/app/services/adapters/{web-extension.js → web-extension.ts} +43 -46
- package/app/services/adapters/websocket.ts +40 -0
- package/app/services/layout.ts +88 -0
- package/app/services/port.ts +195 -0
- package/app/services/storage/{local.js → local.ts} +7 -20
- package/app/services/storage/{memory.js → memory.ts} +6 -21
- package/app/services/{storage.js → storage.ts} +9 -20
- package/app/styles/base.scss +4 -2
- package/app/styles/colors.scss +33 -31
- package/app/styles/component_tree.scss +56 -51
- package/app/styles/dropdown.scss +2 -2
- package/app/styles/ember-table.scss +3 -3
- package/app/styles/mixin.scss +26 -26
- package/app/styles/object_inspector.scss +22 -21
- package/app/styles/utils.scss +408 -122
- package/app/templates/application.hbs +11 -11
- package/app/templates/component-tree.hbs +1 -1
- package/app/templates/deprecations.hbs +2 -3
- package/app/templates/info.hbs +10 -10
- package/app/templates/promise-tree.hbs +1 -1
- package/app/templates/render-tree.hbs +1 -1
- package/app/templates/route-tree.hbs +1 -1
- package/app/utils/escape-reg-exp.ts +3 -2
- package/app/utils/nullish.ts +7 -0
- package/app/utils/parse-text.ts +4 -5
- package/app/utils/truncate.js +0 -1
- package/config/ember-cli-update.json +5 -3
- package/config/ember-try.js +117 -72
- package/config/environment.js +1 -1
- package/config/optional-features.json +2 -1
- package/dist/bookmarklet/load_inspector.js +30 -11
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +150 -155
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +486 -590
- package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.css +147 -148
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +5153 -5980
- package/dist/bookmarklet/panes-3-16-0/ember_debug.js +250 -268
- package/dist/bookmarklet/panes-3-16-0/index.html +3 -4
- package/dist/chrome/background.js +26 -21
- package/dist/chrome/boot.js +1 -1
- package/dist/chrome/content-script.js +11 -11
- package/dist/chrome/devtools.js +12 -3
- package/dist/chrome/manifest.json +2 -2
- package/dist/chrome/options.js +17 -12
- package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +150 -155
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +486 -590
- package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/chrome/panes-3-16-0/assets/vendor.css +147 -148
- package/dist/chrome/panes-3-16-0/assets/vendor.js +5153 -5980
- package/dist/chrome/panes-3-16-0/ember_debug.js +250 -268
- package/dist/chrome/panes-3-16-0/index.html +3 -4
- package/dist/chrome/scripts/in-page-script.js +19 -13
- package/dist/firefox/background.js +26 -21
- package/dist/firefox/boot.js +1 -1
- package/dist/firefox/content-script.js +11 -11
- package/dist/firefox/devtools.js +12 -3
- package/dist/firefox/manifest.json +2 -2
- package/dist/firefox/options.js +17 -12
- package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +150 -155
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +486 -590
- package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/firefox/panes-3-16-0/assets/vendor.css +147 -148
- package/dist/firefox/panes-3-16-0/assets/vendor.js +5153 -5980
- package/dist/firefox/panes-3-16-0/ember_debug.js +250 -268
- package/dist/firefox/panes-3-16-0/index.html +3 -4
- package/dist/firefox/scripts/in-page-script.js +19 -13
- package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/websocket/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
- package/dist/websocket/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
- package/dist/websocket/assets/ember-inspector.css +150 -155
- package/dist/websocket/assets/ember-inspector.js +486 -590
- package/dist/websocket/assets/svg/ellipsis.svg +3 -3
- package/dist/websocket/assets/svg/nav-bug.svg +1 -1
- package/dist/websocket/assets/svg/nav-components.svg +2 -2
- package/dist/websocket/assets/svg/nav-container.svg +1 -1
- package/dist/websocket/assets/svg/nav-data.svg +1 -1
- package/dist/websocket/assets/svg/nav-deprecations.svg +3 -3
- package/dist/websocket/assets/svg/nav-info.svg +3 -3
- package/dist/websocket/assets/svg/nav-promises.svg +2 -2
- package/dist/websocket/assets/svg/nav-render-performance.svg +2 -2
- package/dist/websocket/assets/svg/nav-route-tree.svg +7 -7
- package/dist/websocket/assets/vendor.css +147 -148
- package/dist/websocket/assets/vendor.js +5153 -5980
- package/dist/websocket/ember_debug.js +250 -268
- package/dist/websocket/index.html +3 -4
- package/ember-cli-build.js +11 -11
- package/ember_debug/adapters/basic.js +2 -1
- package/ember_debug/adapters/bookmarklet.js +1 -0
- package/ember_debug/adapters/firefox.js +3 -3
- package/ember_debug/adapters/web-extension.js +2 -1
- package/ember_debug/data-debug.js +5 -6
- package/ember_debug/deprecation-debug.js +8 -8
- package/ember_debug/general-debug.js +1 -1
- package/ember_debug/libs/capture-render-tree.js +0 -1
- package/ember_debug/libs/promise-assembler.js +1 -0
- package/ember_debug/libs/render-tree.js +13 -12
- package/ember_debug/libs/source-map.js +5 -4
- package/ember_debug/libs/view-inspection.js +12 -12
- package/ember_debug/main.js +1 -1
- package/ember_debug/models/profile-manager.js +2 -1
- package/ember_debug/object-inspector.js +19 -18
- package/ember_debug/port.js +1 -0
- package/ember_debug/promise-debug.js +1 -1
- package/ember_debug/route-debug.js +3 -2
- package/ember_debug/services/session.js +1 -1
- package/ember_debug/utils/classify.js +1 -1
- package/ember_debug/utils/ember/debug.js +2 -0
- package/ember_debug/utils/ember/loader.js +2 -2
- package/ember_debug/utils/ember/runloop.js +2 -0
- package/ember_debug/utils/ember-object-names.js +2 -2
- package/ember_debug/utils/ember.js +9 -3
- package/ember_debug/utils/evented.js +1 -1
- package/ember_debug/utils/get-object-name.js +2 -2
- package/ember_debug/utils/rsvp.js +1 -0
- package/ember_debug/utils/type-check.js +5 -1
- package/ember_debug/vendor/startup-wrapper.js +4 -1
- package/ember_debug/view-debug.js +3 -2
- package/eslint.config.mjs +172 -0
- package/gulpfile.js +1 -1
- package/lib/ui/addon/components/drag-handle.hbs +4 -4
- package/lib/ui/addon/components/drag-handle.js +3 -1
- package/lib/ui/addon/components/empty-message.hbs +1 -1
- package/lib/ui/addon/components/error-page.hbs +3 -3
- package/lib/ui/addon/components/resizable-column.js +1 -1
- package/lib/ui/addon/components/toolbar-clear-button.hbs +1 -1
- package/lib/ui/addon/components/toolbar-reload-button.hbs +1 -1
- package/lib/ui/addon/components/toolbar-search-field.hbs +2 -2
- package/lib/ui/addon/styles/_disclosure-triangle.scss +3 -1
- package/lib/ui/addon/styles/_drag-handle.scss +7 -7
- package/lib/ui/addon/styles/_empty-message.scss +1 -1
- package/lib/ui/addon/styles/_error-page.scss +8 -7
- package/lib/ui/addon/styles/_list.scss +46 -45
- package/lib/ui/addon/styles/_nav.scss +29 -27
- package/lib/ui/addon/styles/_object-inspector-toggle.scss +5 -5
- package/lib/ui/addon/styles/_pill.scss +4 -4
- package/lib/ui/addon/styles/_send-to-console.scss +1 -1
- package/lib/ui/addon/styles/_split.scss +17 -20
- package/lib/ui/addon/styles/addon.scss +13 -13
- package/lib/ui/addon/styles/toolbar/_checkbox.scss +5 -5
- package/lib/ui/addon/styles/toolbar/_icon-button.scss +44 -25
- package/lib/ui/addon/styles/toolbar/_index.scss +6 -5
- package/lib/ui/addon/styles/toolbar/_radio.scss +10 -10
- package/lib/ui/addon/styles/toolbar/_search.scss +5 -3
- package/package.json +85 -86
- package/public/assets/svg/ellipsis.svg +3 -3
- package/public/assets/svg/nav-bug.svg +1 -1
- package/public/assets/svg/nav-components.svg +2 -2
- package/public/assets/svg/nav-container.svg +1 -1
- package/public/assets/svg/nav-data.svg +1 -1
- package/public/assets/svg/nav-deprecations.svg +3 -3
- package/public/assets/svg/nav-info.svg +3 -3
- package/public/assets/svg/nav-promises.svg +2 -2
- package/public/assets/svg/nav-render-performance.svg +2 -2
- package/public/assets/svg/nav-route-tree.svg +7 -7
- package/scripts/download-panes.js +1 -1
- package/skeletons/bookmarklet/load_inspector.js +30 -11
- package/skeletons/web-extension/background.js +26 -21
- package/skeletons/web-extension/boot.js +1 -1
- package/skeletons/web-extension/content-script.js +11 -11
- package/skeletons/web-extension/devtools.js +12 -3
- package/skeletons/web-extension/manifest.json +2 -2
- package/skeletons/web-extension/options.js +17 -12
- package/skeletons/web-extension/scripts/in-page-script.js +19 -13
- package/testem.js +0 -1
- package/tests/acceptance/app-picker-test.js +4 -4
- package/tests/acceptance/component-tree-test.js +43 -57
- package/tests/acceptance/container-test.js +0 -2
- package/tests/acceptance/data-test.js +8 -10
- package/tests/acceptance/deprecation-test.js +8 -12
- package/tests/acceptance/info-test.js +2 -2
- package/tests/acceptance/object-inspector-test.js +62 -110
- package/tests/acceptance/promise-test.js +1 -11
- package/tests/acceptance/render-tree-test.js +2 -2
- package/tests/acceptance/route-tree-test.js +12 -14
- package/tests/acceptance/whats-new-test.js +3 -3
- package/tests/ember_debug/container-debug-test.js +4 -4
- package/tests/ember_debug/deprecation-debug-test.js +8 -5
- package/tests/ember_debug/ember-debug-test.js +1 -4
- package/tests/ember_debug/object-inspector-test.js +44 -44
- package/tests/ember_debug/profile-manager-test.js +140 -165
- package/tests/ember_debug/profile-node-test.js +3 -3
- package/tests/ember_debug/promise-assembler-test.js +12 -9
- package/tests/ember_debug/promise-debug-test.js +5 -6
- package/tests/ember_debug/route-debug-test.js +8 -7
- package/tests/ember_debug/view-debug-test.js +179 -181
- package/tests/helpers/{index.js → index.ts} +6 -5
- package/tests/helpers/setup-ember-debug-test.js +14 -0
- package/tests/integration/injection-test.js +12 -13
- package/tests/test-adapter.js +15 -15
- package/tests/test-helper.js +6 -1
- package/tests/unit/check-current-route-test.js +0 -4
- package/tests/unit/resizable-columns-test.js +53 -51
- package/tests/unit/utils/parse-text-test.js +3 -3
- package/tests/unit/utils/search-match-test.js +5 -5
- package/tests/unit/utils/type-check-test.js +22 -0
- package/tsconfig.json +3 -1
- package/types/ember-inspector/index.d.ts +2 -1
- package/types/global.d.ts +1 -7
- package/.editorconfig +0 -19
- package/.ember-cli +0 -15
- package/.eslintignore +0 -33
- package/.eslintrc.js +0 -86
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- package/.github/dependabot.yml +0 -14
- package/.github/pull_request_template.md +0 -4
- package/.github/workflows/build.yml +0 -339
- package/.github/workflows/plan-release.yml +0 -83
- package/.github/workflows/publish.yml +0 -60
- package/.prettierignore +0 -25
- package/.prettierrc.js +0 -14
- package/.release-plan.json +0 -17
- package/.stylelintrc.js +0 -3
- package/.template-lintrc.js +0 -12
- package/.tool-versions +0 -2
- package/.watchmanconfig +0 -3
- package/app/components/.gitkeep +0 -0
- package/app/components/list-content.js +0 -130
- package/app/controllers/.gitkeep +0 -0
- package/app/controllers/promise-tree.js +0 -130
- package/app/helpers/.gitkeep +0 -0
- package/app/libs/promise-assembler.js +0 -169
- package/app/models/.gitkeep +0 -0
- package/app/routes/.gitkeep +0 -0
- package/app/routes/model-types.js +0 -47
- package/app/routes/promise-tree.js +0 -48
- package/app/routes/records.js +0 -55
- package/app/routes/render-tree.js +0 -66
- package/app/services/adapters/websocket.js +0 -31
- package/app/services/layout.js +0 -39
- package/app/services/port.js +0 -90
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/chrome/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
- package/dist/chrome/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
- package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/firefox/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
- package/dist/firefox/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
- package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/websocket/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
- package/dist/websocket/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
- package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/ember_debug/.eslintrc.js +0 -13
- package/tests/helpers/trigger-port.js +0 -6
- package/tests/unit/.gitkeep +0 -0
- /package/app/{app.js → app.ts} +0 -0
- /package/app/controllers/{info.js → info.ts} +0 -0
- /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
@@ -157,6 +157,10 @@
|
|
157
157
|
}
|
158
158
|
.flatpickr-months .flatpickr-prev-month,
|
159
159
|
.flatpickr-months .flatpickr-next-month {
|
160
|
+
-webkit-user-select: none;
|
161
|
+
-moz-user-select: none;
|
162
|
+
-ms-user-select: none;
|
163
|
+
user-select: none;
|
160
164
|
text-decoration: none;
|
161
165
|
cursor: pointer;
|
162
166
|
position: absolute;
|
@@ -1423,15 +1427,15 @@ ol .occluded-content {
|
|
1423
1427
|
z-index: 500;
|
1424
1428
|
}
|
1425
1429
|
|
1426
|
-
.drag-handle
|
1430
|
+
.drag-handle-right {
|
1427
1431
|
margin-right: calc(var(--drag-handle-width) / 2 * -1);
|
1428
1432
|
}
|
1429
1433
|
|
1430
|
-
.drag-handle
|
1434
|
+
.drag-handle-left {
|
1431
1435
|
margin-left: calc(var(--drag-handle-width) / 2 * -1);
|
1432
1436
|
}
|
1433
1437
|
|
1434
|
-
.drag-
|
1438
|
+
.drag-handle-border {
|
1435
1439
|
border-left: 1px solid var(--base06);
|
1436
1440
|
margin-left: calc(var(--drag-handle-width) / 2);
|
1437
1441
|
width: 1px;
|
@@ -1440,17 +1444,17 @@ ol .occluded-content {
|
|
1440
1444
|
.drag-handle:active {
|
1441
1445
|
width: var(--drag-handle-active-width);
|
1442
1446
|
}
|
1443
|
-
.drag-handle:active.drag-handle
|
1447
|
+
.drag-handle:active.drag-handle-right {
|
1444
1448
|
margin-right: calc(var(--drag-handle-active-width) / 2 * -1);
|
1445
1449
|
}
|
1446
|
-
.drag-handle:active.drag-handle
|
1450
|
+
.drag-handle:active.drag-handle-left {
|
1447
1451
|
margin-left: calc(var(--drag-handle-active-width) / 2 * -1);
|
1448
1452
|
}
|
1449
|
-
.drag-handle:active .drag-
|
1453
|
+
.drag-handle:active .drag-handle-border {
|
1450
1454
|
margin-left: calc(var(--drag-handle-active-width) / 2);
|
1451
1455
|
}
|
1452
1456
|
|
1453
|
-
.drag-handle
|
1457
|
+
.drag-handle-faded {
|
1454
1458
|
opacity: 0.3;
|
1455
1459
|
}
|
1456
1460
|
|
@@ -1458,7 +1462,7 @@ ol .occluded-content {
|
|
1458
1462
|
fill: var(--base07);
|
1459
1463
|
}
|
1460
1464
|
|
1461
|
-
.empty-
|
1465
|
+
.empty-message-content {
|
1462
1466
|
max-width: 40rem;
|
1463
1467
|
}
|
1464
1468
|
|
@@ -1468,48 +1472,49 @@ ol .occluded-content {
|
|
1468
1472
|
An error with possible reasons and solutions.
|
1469
1473
|
For example: when application is not detected.
|
1470
1474
|
*/
|
1471
|
-
.error-
|
1475
|
+
.error-page-content {
|
1472
1476
|
border: 1px solid var(--base04);
|
1473
1477
|
width: 530px;
|
1474
1478
|
}
|
1475
|
-
.error-
|
1479
|
+
.error-page-content ul {
|
1476
1480
|
list-style-type: disc;
|
1477
1481
|
padding-left: var(--unit4);
|
1478
1482
|
}
|
1479
|
-
.error-
|
1483
|
+
.error-page-content li {
|
1480
1484
|
padding: 2px 0;
|
1481
1485
|
}
|
1482
|
-
.error-
|
1486
|
+
.error-page-content a {
|
1483
1487
|
color: var(--spec01);
|
1484
1488
|
text-decoration: none;
|
1485
1489
|
}
|
1486
1490
|
|
1487
|
-
.error-
|
1491
|
+
.error-page-header {
|
1488
1492
|
border-bottom: 1px solid var(--base04);
|
1489
1493
|
top: -25px;
|
1490
1494
|
}
|
1491
|
-
.error-
|
1495
|
+
.error-page-header .tomster {
|
1492
1496
|
transform: translateY(90px);
|
1493
1497
|
flex-shrink: 0;
|
1494
1498
|
height: 89px;
|
1495
1499
|
width: 128px;
|
1496
|
-
animation:
|
1500
|
+
animation: tomster-reveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
|
1497
1501
|
animation-delay: 0.75s;
|
1498
1502
|
animation-fill-mode: forwards;
|
1499
1503
|
}
|
1500
1504
|
|
1501
|
-
@keyframes
|
1505
|
+
@keyframes tomster-reveal {
|
1502
1506
|
from {
|
1503
1507
|
transform: translateY(90px);
|
1504
1508
|
}
|
1505
1509
|
to {
|
1506
|
-
transform: translateY(
|
1510
|
+
transform: translateY(0);
|
1507
1511
|
}
|
1508
1512
|
}
|
1509
|
-
.error-
|
1513
|
+
.error-page-body {
|
1510
1514
|
border-bottom: 1px solid var(--base04);
|
1511
1515
|
}
|
1512
1516
|
|
1517
|
+
/* stylelint-disable no-duplicate-selectors */
|
1513
1518
|
.list {
|
1514
1519
|
background: var(--base00);
|
1515
1520
|
box-sizing: border-box;
|
@@ -1519,7 +1524,7 @@ ol .occluded-content {
|
|
1519
1524
|
position: relative;
|
1520
1525
|
}
|
1521
1526
|
|
1522
|
-
.
|
1527
|
+
.list-content {
|
1523
1528
|
overflow: scroll;
|
1524
1529
|
transform: translateZ(0);
|
1525
1530
|
}
|
@@ -1534,7 +1539,7 @@ ol .occluded-content {
|
|
1534
1539
|
width: 100%;
|
1535
1540
|
}
|
1536
1541
|
|
1537
|
-
.
|
1542
|
+
.list-header {
|
1538
1543
|
border-bottom: 1px solid var(--base05);
|
1539
1544
|
height: 30px;
|
1540
1545
|
overflow: hidden;
|
@@ -1543,10 +1548,10 @@ ol .occluded-content {
|
|
1543
1548
|
text-align: left;
|
1544
1549
|
user-select: none;
|
1545
1550
|
}
|
1546
|
-
.
|
1551
|
+
.list-header .list-row {
|
1547
1552
|
background: var(--base00);
|
1548
1553
|
}
|
1549
|
-
.
|
1554
|
+
.list-header .list-cell {
|
1550
1555
|
color: var(--inherit);
|
1551
1556
|
font-weight: normal;
|
1552
1557
|
opacity: 1;
|
@@ -1555,22 +1560,22 @@ ol .occluded-content {
|
|
1555
1560
|
position: relative;
|
1556
1561
|
}
|
1557
1562
|
|
1558
|
-
.list:not(.
|
1563
|
+
.list:not(.list-no-alternate-color) .list-content .list-row {
|
1559
1564
|
background: var(--base02);
|
1560
1565
|
}
|
1561
|
-
.list:not(.
|
1566
|
+
.list:not(.list-no-alternate-color) .list-content .list-row.striped {
|
1562
1567
|
background: var(--base00);
|
1563
1568
|
}
|
1564
1569
|
|
1565
|
-
.list.list
|
1570
|
+
.list.list-css-striping .list-row:nth-child(even) {
|
1566
1571
|
background: var(--base00);
|
1567
1572
|
}
|
1568
1573
|
|
1569
|
-
.
|
1574
|
+
.list-cell-content {
|
1570
1575
|
width: 100%;
|
1571
1576
|
}
|
1572
1577
|
|
1573
|
-
.
|
1578
|
+
.list-cell {
|
1574
1579
|
box-sizing: border-box;
|
1575
1580
|
line-height: 30px;
|
1576
1581
|
min-height: 30px;
|
@@ -1580,41 +1585,41 @@ ol .occluded-content {
|
|
1580
1585
|
text-overflow: ellipsis;
|
1581
1586
|
white-space: nowrap;
|
1582
1587
|
}
|
1583
|
-
.
|
1588
|
+
.list-cell-size-small {
|
1584
1589
|
flex: none;
|
1585
1590
|
width: 50px;
|
1586
1591
|
}
|
1587
|
-
.
|
1592
|
+
.list-cell-size-medium {
|
1588
1593
|
flex: none;
|
1589
1594
|
width: 130px;
|
1590
1595
|
}
|
1591
|
-
.
|
1596
|
+
.list-cell-size-larger {
|
1592
1597
|
flex: none;
|
1593
1598
|
width: 350px;
|
1594
1599
|
}
|
1595
|
-
.
|
1600
|
+
.list-cell-size-large {
|
1596
1601
|
flex: none;
|
1597
1602
|
width: 250px;
|
1598
1603
|
}
|
1599
|
-
.
|
1604
|
+
.list-cell-size-huge {
|
1600
1605
|
flex: none;
|
1601
1606
|
width: 450px;
|
1602
1607
|
}
|
1603
|
-
.
|
1608
|
+
.list-cell-value-numeric {
|
1604
1609
|
font-family: var(--font-monospace);
|
1605
1610
|
min-width: 65px;
|
1606
1611
|
padding-right: 10px;
|
1607
1612
|
text-align: right;
|
1608
1613
|
}
|
1609
|
-
.
|
1614
|
+
.list-cell-main {
|
1610
1615
|
font-weight: bold;
|
1611
1616
|
}
|
1612
|
-
.
|
1617
|
+
.list-cell-spacer {
|
1613
1618
|
border: none;
|
1614
1619
|
flex: none;
|
1615
1620
|
width: 0;
|
1616
1621
|
}
|
1617
|
-
.
|
1622
|
+
.list-cell-clickable {
|
1618
1623
|
cursor: pointer;
|
1619
1624
|
}
|
1620
1625
|
|
@@ -1622,7 +1627,7 @@ ol .occluded-content {
|
|
1622
1627
|
* Content in a cell that should not take the entire
|
1623
1628
|
* space. Usually because it has a $E after it.
|
1624
1629
|
*/
|
1625
|
-
.
|
1630
|
+
.list-cell-partial {
|
1626
1631
|
display: inline-block;
|
1627
1632
|
float: left;
|
1628
1633
|
max-width: calc(100% - 40px);
|
@@ -1631,11 +1636,11 @@ ol .occluded-content {
|
|
1631
1636
|
white-space: nowrap;
|
1632
1637
|
}
|
1633
1638
|
|
1634
|
-
.
|
1639
|
+
.list-cell-partial-clickable {
|
1635
1640
|
cursor: pointer;
|
1636
1641
|
}
|
1637
1642
|
|
1638
|
-
.
|
1643
|
+
.list-cell-partial-size-medium {
|
1639
1644
|
max-width: calc(100% - 60px);
|
1640
1645
|
}
|
1641
1646
|
|
@@ -1643,35 +1648,35 @@ ol .occluded-content {
|
|
1643
1648
|
* For example a $E icon to the right
|
1644
1649
|
* of a cell.
|
1645
1650
|
*/
|
1646
|
-
.
|
1651
|
+
.list-cell-helper {
|
1647
1652
|
float: right;
|
1648
1653
|
margin-right: 5px;
|
1649
1654
|
}
|
1650
1655
|
|
1651
|
-
.
|
1656
|
+
.list-link {
|
1652
1657
|
cursor: pointer;
|
1653
1658
|
}
|
1654
1659
|
|
1655
|
-
.
|
1660
|
+
.list-row:hover .list-cell {
|
1656
1661
|
opacity: 1;
|
1657
1662
|
}
|
1658
|
-
.
|
1663
|
+
.list-row:hover .list-cell-clickable {
|
1659
1664
|
text-decoration: underline;
|
1660
1665
|
}
|
1661
|
-
.
|
1666
|
+
.list-row:hover .list-cell-partial-clickable {
|
1662
1667
|
text-decoration: underline;
|
1663
1668
|
}
|
1664
|
-
.
|
1669
|
+
.list-row:hover .list-link {
|
1665
1670
|
text-decoration: underline;
|
1666
1671
|
}
|
1667
1672
|
|
1668
|
-
.
|
1669
|
-
.
|
1673
|
+
.list-row-highlight .list-cell,
|
1674
|
+
.list-cell-highlight {
|
1670
1675
|
opacity: 1;
|
1671
1676
|
}
|
1672
1677
|
|
1673
1678
|
/* ARROW FOR COLLAPSING AND EXPANDING */
|
1674
|
-
.
|
1679
|
+
.list-cell-arrow {
|
1675
1680
|
cursor: pointer;
|
1676
1681
|
display: block;
|
1677
1682
|
float: left;
|
@@ -1679,7 +1684,7 @@ ol .occluded-content {
|
|
1679
1684
|
position: relative;
|
1680
1685
|
width: 15px;
|
1681
1686
|
}
|
1682
|
-
.
|
1687
|
+
.list-cell-arrow::before {
|
1683
1688
|
color: var(--base10);
|
1684
1689
|
font-size: 75%;
|
1685
1690
|
position: absolute;
|
@@ -1688,34 +1693,34 @@ ol .occluded-content {
|
|
1688
1693
|
}
|
1689
1694
|
|
1690
1695
|
/* cell expanding/collapsing */
|
1691
|
-
.
|
1692
|
-
.
|
1696
|
+
.list-cell-arrow-expanded,
|
1697
|
+
.list-cell-arrow-collapsed {
|
1693
1698
|
cursor: pointer;
|
1694
1699
|
}
|
1695
1700
|
|
1696
|
-
.
|
1701
|
+
.list-cell-arrow-collapsed .list-cell-arrow::before {
|
1697
1702
|
content: "▶";
|
1698
1703
|
}
|
1699
1704
|
|
1700
|
-
.
|
1705
|
+
.list-cell-arrow-expanded .list-cell-arrow::before {
|
1701
1706
|
content: "▼";
|
1702
1707
|
}
|
1703
1708
|
|
1704
|
-
.
|
1705
|
-
.
|
1709
|
+
.list-row-arrow-collapsed,
|
1710
|
+
.list-row-arrow-expanded {
|
1706
1711
|
cursor: pointer;
|
1707
1712
|
position: relative;
|
1708
1713
|
}
|
1709
1714
|
|
1710
|
-
.
|
1715
|
+
.list-row-arrow-collapsed .list-cell-arrow::before {
|
1711
1716
|
content: "▶";
|
1712
1717
|
}
|
1713
1718
|
|
1714
|
-
.
|
1719
|
+
.list-row-arrow-expanded .list-cell-arrow::before {
|
1715
1720
|
content: "▼";
|
1716
1721
|
}
|
1717
1722
|
|
1718
|
-
.
|
1723
|
+
.nav-title {
|
1719
1724
|
color: var(--base09);
|
1720
1725
|
cursor: default;
|
1721
1726
|
font-size: 1.2rem;
|
@@ -1740,7 +1745,7 @@ ol .occluded-content {
|
|
1740
1745
|
===========
|
1741
1746
|
Anchor tag
|
1742
1747
|
*/
|
1743
|
-
.
|
1748
|
+
.nav-item {
|
1744
1749
|
align-items: center;
|
1745
1750
|
color: var(--base15);
|
1746
1751
|
cursor: default;
|
@@ -1753,16 +1758,16 @@ ol .occluded-content {
|
|
1753
1758
|
text-overflow: ellipsis;
|
1754
1759
|
white-space: nowrap;
|
1755
1760
|
}
|
1756
|
-
.
|
1761
|
+
.nav-item:focus {
|
1757
1762
|
outline: none;
|
1758
1763
|
}
|
1759
1764
|
|
1760
|
-
.
|
1765
|
+
.nav-item.active {
|
1761
1766
|
background: var(--focus);
|
1762
1767
|
color: var(--focus-text);
|
1763
1768
|
}
|
1764
1769
|
|
1765
|
-
.app.inactive .
|
1770
|
+
.app.inactive .nav-item.active {
|
1766
1771
|
background: var(--base06);
|
1767
1772
|
}
|
1768
1773
|
|
@@ -1771,44 +1776,44 @@ ol .occluded-content {
|
|
1771
1776
|
===========
|
1772
1777
|
Main text of Nav Item
|
1773
1778
|
*/
|
1774
|
-
.
|
1779
|
+
.nav-item-label {
|
1775
1780
|
flex-grow: 1;
|
1776
1781
|
font-size: 1.3rem;
|
1777
1782
|
}
|
1778
1783
|
|
1779
|
-
.nav
|
1780
|
-
.nav
|
1784
|
+
.nav-collapsed .nav-item-label,
|
1785
|
+
.nav-collapsed .nav-item .pill {
|
1781
1786
|
display: none;
|
1782
1787
|
}
|
1783
1788
|
|
1784
|
-
.
|
1789
|
+
.nav-item-icon {
|
1785
1790
|
flex-shrink: 0;
|
1786
1791
|
height: 22px;
|
1787
1792
|
margin-right: 7px;
|
1788
1793
|
width: 22px;
|
1789
1794
|
}
|
1790
1795
|
|
1791
|
-
.
|
1796
|
+
.nav-icon-stroke {
|
1792
1797
|
fill: var(--base12);
|
1793
1798
|
}
|
1794
1799
|
|
1795
|
-
.
|
1800
|
+
.nav-item.active .nav-icon-stroke {
|
1796
1801
|
fill: var(--focus-text);
|
1797
1802
|
}
|
1798
1803
|
|
1799
1804
|
/* Custom navs */
|
1800
|
-
.nav
|
1805
|
+
.nav-main .nav-item {
|
1801
1806
|
height: 38px;
|
1802
1807
|
line-height: 38px;
|
1803
1808
|
padding-left: 12px;
|
1804
1809
|
}
|
1805
1810
|
|
1806
|
-
.nav
|
1811
|
+
.nav-main .pill {
|
1807
1812
|
margin-right: var(--unit1);
|
1808
1813
|
margin-left: var(--unit1);
|
1809
1814
|
}
|
1810
1815
|
|
1811
|
-
.nav.nav
|
1816
|
+
.nav.nav-main .nav-title {
|
1812
1817
|
padding-left: 14px;
|
1813
1818
|
}
|
1814
1819
|
|
@@ -1832,26 +1837,26 @@ ol .occluded-content {
|
|
1832
1837
|
fill: var(--base12);
|
1833
1838
|
}
|
1834
1839
|
|
1835
|
-
.
|
1840
|
+
.nav-footer.nav-expanded {
|
1836
1841
|
display: grid;
|
1837
1842
|
grid-template: "left center right" 38px/auto 1fr auto;
|
1838
1843
|
height: 38px;
|
1839
1844
|
}
|
1840
1845
|
|
1841
|
-
.
|
1846
|
+
.nav-footer.nav-collapsed {
|
1842
1847
|
display: grid;
|
1843
1848
|
grid-template: "left" 32px "right" 32px;
|
1844
1849
|
height: auto;
|
1845
1850
|
}
|
1846
1851
|
|
1847
|
-
.
|
1852
|
+
.nav-overflow.nav-overflow-active {
|
1848
1853
|
background-color: var(--focus);
|
1849
1854
|
}
|
1850
|
-
.
|
1855
|
+
.nav-overflow.nav-overflow-active .nav-icon-stroke {
|
1851
1856
|
fill: var(--focus-text);
|
1852
1857
|
}
|
1853
1858
|
|
1854
|
-
.
|
1859
|
+
.nav-overflow select {
|
1855
1860
|
height: 38px;
|
1856
1861
|
}
|
1857
1862
|
|
@@ -1873,16 +1878,16 @@ ol .occluded-content {
|
|
1873
1878
|
background: var(--pill-bg-active);
|
1874
1879
|
}
|
1875
1880
|
|
1876
|
-
.pill
|
1881
|
+
.pill-small {
|
1877
1882
|
font-size: 1rem;
|
1878
1883
|
padding: 2px 4px;
|
1879
1884
|
}
|
1880
1885
|
|
1881
|
-
.pill
|
1886
|
+
.pill-text {
|
1882
1887
|
font-family: var(--font-sans-serif);
|
1883
1888
|
}
|
1884
1889
|
|
1885
|
-
.pill
|
1890
|
+
.pill-blue {
|
1886
1891
|
background: var(--focus);
|
1887
1892
|
color: var(--focus-text);
|
1888
1893
|
}
|
@@ -1915,7 +1920,7 @@ ol .occluded-content {
|
|
1915
1920
|
transform: translateY(1px);
|
1916
1921
|
}
|
1917
1922
|
|
1918
|
-
.send-to-console
|
1923
|
+
.send-to-console-chevron-only svg {
|
1919
1924
|
position: relative;
|
1920
1925
|
top: -1px;
|
1921
1926
|
}
|
@@ -1948,14 +1953,14 @@ ol .occluded-content {
|
|
1948
1953
|
transform: translateY(1px);
|
1949
1954
|
}
|
1950
1955
|
|
1951
|
-
.object-inspector-toggle.
|
1956
|
+
.object-inspector-toggle.toolbar-icon-button {
|
1952
1957
|
margin-right: 0;
|
1953
1958
|
max-height: var(--toolbar-height);
|
1954
1959
|
padding-right: 6px;
|
1955
1960
|
padding-left: 6px;
|
1956
1961
|
transform: scaleX(-1);
|
1957
1962
|
}
|
1958
|
-
.object-inspector-toggle.
|
1963
|
+
.object-inspector-toggle.toolbar-icon-button:active {
|
1959
1964
|
transform: translate(1px, 1px) scaleX(-1);
|
1960
1965
|
}
|
1961
1966
|
|
@@ -1966,18 +1971,15 @@ ol .occluded-content {
|
|
1966
1971
|
*/
|
1967
1972
|
/* .split: The container for one or more panels */
|
1968
1973
|
.split {
|
1969
|
-
|
1974
|
+
inset: 0;
|
1970
1975
|
display: flex;
|
1971
1976
|
flex: auto;
|
1972
1977
|
flex-direction: row;
|
1973
|
-
left: 0;
|
1974
1978
|
position: absolute;
|
1975
|
-
right: 0;
|
1976
|
-
top: 0;
|
1977
1979
|
}
|
1978
1980
|
|
1979
|
-
/* .
|
1980
|
-
.
|
1981
|
+
/* .split-panel: Contains a body, and optional header and footer elements */
|
1982
|
+
.split-panel {
|
1981
1983
|
display: flex;
|
1982
1984
|
flex: auto;
|
1983
1985
|
flex-direction: column;
|
@@ -1985,14 +1987,14 @@ ol .occluded-content {
|
|
1985
1987
|
overflow: hidden;
|
1986
1988
|
}
|
1987
1989
|
|
1988
|
-
.
|
1989
|
-
.
|
1990
|
-
.
|
1990
|
+
.split-panel-hd,
|
1991
|
+
.split-panel-bd,
|
1992
|
+
.split-panel-ft {
|
1991
1993
|
position: relative;
|
1992
1994
|
}
|
1993
1995
|
|
1994
|
-
.
|
1995
|
-
.
|
1996
|
+
.split-panel-hd,
|
1997
|
+
.split-panel-ft {
|
1996
1998
|
border-color: var(--base03);
|
1997
1999
|
box-sizing: border-box;
|
1998
2000
|
display: flex;
|
@@ -2000,14 +2002,14 @@ ol .occluded-content {
|
|
2000
2002
|
flex-direction: column;
|
2001
2003
|
}
|
2002
2004
|
|
2003
|
-
.
|
2005
|
+
.split-panel-hd {
|
2004
2006
|
background: var(--base00);
|
2005
2007
|
border-bottom-style: solid;
|
2006
2008
|
border-bottom-width: 1px;
|
2007
2009
|
min-height: 29px;
|
2008
2010
|
}
|
2009
2011
|
|
2010
|
-
.
|
2012
|
+
.split-panel-bd {
|
2011
2013
|
background: var(--base00);
|
2012
2014
|
flex: auto;
|
2013
2015
|
overflow: scroll;
|
@@ -2015,7 +2017,7 @@ ol .occluded-content {
|
|
2015
2017
|
width: auto;
|
2016
2018
|
}
|
2017
2019
|
|
2018
|
-
.
|
2020
|
+
.split-panel-ft {
|
2019
2021
|
background: var(--base01);
|
2020
2022
|
border-top-style: solid;
|
2021
2023
|
border-top-width: 1px;
|
@@ -2023,26 +2025,26 @@ ol .occluded-content {
|
|
2023
2025
|
justify-content: center;
|
2024
2026
|
}
|
2025
2027
|
|
2026
|
-
.
|
2027
|
-
.
|
2028
|
+
.split-panel,
|
2029
|
+
.split-panel-bd {
|
2028
2030
|
height: 100%;
|
2029
2031
|
}
|
2030
2032
|
|
2031
2033
|
/* Custom panels */
|
2032
|
-
.
|
2034
|
+
.split-panel-sidebar-1 .split-panel-bd {
|
2033
2035
|
background: var(--base01);
|
2034
2036
|
}
|
2035
2037
|
|
2036
|
-
.
|
2038
|
+
.split-panel-sidebar-2 .split-panel-bd {
|
2037
2039
|
background: var(--base01);
|
2038
2040
|
}
|
2039
2041
|
|
2040
2042
|
/* Fix main list-view scrolling */
|
2041
|
-
.split
|
2043
|
+
.split-main > .split-panel > .split-panel-bd {
|
2042
2044
|
overflow: hidden;
|
2043
2045
|
}
|
2044
2046
|
|
2045
|
-
.split
|
2047
|
+
.split-main > .split-panel-sidebar-1 > .split-panel-bd {
|
2046
2048
|
overflow-y: auto;
|
2047
2049
|
}
|
2048
2050
|
|
@@ -2071,7 +2073,7 @@ ol .occluded-content {
|
|
2071
2073
|
margin-right: 5px;
|
2072
2074
|
}
|
2073
2075
|
|
2074
|
-
.
|
2076
|
+
.toolbar-checkbox {
|
2075
2077
|
height: 100%;
|
2076
2078
|
margin-left: 4px;
|
2077
2079
|
margin-right: 4px;
|
@@ -2079,24 +2081,24 @@ ol .occluded-content {
|
|
2079
2081
|
white-space: nowrap;
|
2080
2082
|
}
|
2081
2083
|
|
2082
|
-
.
|
2084
|
+
.toolbar-checkbox label {
|
2083
2085
|
display: block;
|
2084
2086
|
height: 100%;
|
2085
2087
|
line-height: var(--toolbar-height);
|
2086
2088
|
}
|
2087
2089
|
|
2088
|
-
.
|
2090
|
+
.toolbar-checkbox input {
|
2089
2091
|
margin: 0;
|
2090
2092
|
}
|
2091
2093
|
|
2092
2094
|
/*
|
2093
2095
|
if first item in toolbar, create extra clickable space
|
2094
2096
|
*/
|
2095
|
-
.
|
2097
|
+
.toolbar-checkbox:first-child {
|
2096
2098
|
margin-left: 0;
|
2097
2099
|
}
|
2098
2100
|
|
2099
|
-
.
|
2101
|
+
.toolbar-checkbox:first-child label {
|
2100
2102
|
margin-left: 0;
|
2101
2103
|
padding-left: 8px;
|
2102
2104
|
}
|
@@ -2106,7 +2108,7 @@ ol .occluded-content {
|
|
2106
2108
|
width: 1px;
|
2107
2109
|
}
|
2108
2110
|
|
2109
|
-
.
|
2111
|
+
.toolbar-icon-button {
|
2110
2112
|
align-items: center;
|
2111
2113
|
background: transparent;
|
2112
2114
|
border: 0 transparent none;
|
@@ -2117,63 +2119,60 @@ ol .occluded-content {
|
|
2117
2119
|
padding: 0 2px;
|
2118
2120
|
vertical-align: top;
|
2119
2121
|
/* if first item in toolbar, create extra clickable space on left side */
|
2122
|
+
/*
|
2123
|
+
SVG colors
|
2124
|
+
*/
|
2125
|
+
/*
|
2126
|
+
Modifier:
|
2127
|
+
.active (highlighted)
|
2128
|
+
*/
|
2129
|
+
/*
|
2130
|
+
Modifier
|
2131
|
+
.disabled
|
2132
|
+
*/
|
2120
2133
|
}
|
2121
|
-
.
|
2134
|
+
.toolbar-icon-button:first-child {
|
2122
2135
|
margin-left: 0;
|
2123
2136
|
padding-left: 10px;
|
2124
2137
|
}
|
2125
|
-
.
|
2138
|
+
.toolbar-icon-button:focus {
|
2126
2139
|
outline: none;
|
2127
2140
|
}
|
2128
|
-
.
|
2141
|
+
.toolbar-icon-button:active {
|
2129
2142
|
transform: translate(1px, 1px);
|
2130
2143
|
}
|
2131
|
-
|
2132
|
-
/*
|
2133
|
-
SVG colors
|
2134
|
-
*/
|
2135
|
-
.toolbar__icon-button .svg-stroke {
|
2144
|
+
.toolbar-icon-button .svg-stroke {
|
2136
2145
|
stroke: var(--base11);
|
2137
2146
|
}
|
2138
|
-
.
|
2147
|
+
.toolbar-icon-button .svg-fill {
|
2139
2148
|
fill: var(--base11);
|
2140
2149
|
}
|
2141
|
-
.
|
2150
|
+
.toolbar-icon-button:hover .svg-stroke {
|
2142
2151
|
stroke: var(--base13);
|
2143
2152
|
}
|
2144
|
-
.
|
2153
|
+
.toolbar-icon-button:hover .svg-fill {
|
2145
2154
|
fill: var(--base13);
|
2146
2155
|
}
|
2147
|
-
|
2148
|
-
/*
|
2149
|
-
Modifier:
|
2150
|
-
.active (highlighted)
|
2151
|
-
*/
|
2152
|
-
.toolbar__icon-button.active .svg-stroke {
|
2156
|
+
.toolbar-icon-button.active .svg-stroke {
|
2153
2157
|
stroke: var(--focus);
|
2154
2158
|
}
|
2155
|
-
.
|
2159
|
+
.toolbar-icon-button.active .svg-fill {
|
2156
2160
|
fill: var(--focus);
|
2157
2161
|
}
|
2158
|
-
|
2159
|
-
/*
|
2160
|
-
Modifier
|
2161
|
-
.disabled
|
2162
|
-
*/
|
2163
|
-
.toolbar__icon-button.disabled {
|
2162
|
+
.toolbar-icon-button.disabled {
|
2164
2163
|
pointer-events: none;
|
2165
2164
|
}
|
2166
|
-
.
|
2165
|
+
.toolbar-icon-button.disabled:active {
|
2167
2166
|
transform: none;
|
2168
2167
|
}
|
2169
|
-
.
|
2168
|
+
.toolbar-icon-button.disabled .svg-stroke {
|
2170
2169
|
stroke: var(--base05);
|
2171
2170
|
}
|
2172
|
-
.
|
2171
|
+
.toolbar-icon-button.disabled .svg-fill {
|
2173
2172
|
fill: var(--base05);
|
2174
2173
|
}
|
2175
2174
|
|
2176
|
-
.
|
2175
|
+
.toolbar-radio {
|
2177
2176
|
background: var(--base02);
|
2178
2177
|
border: none;
|
2179
2178
|
border-radius: 2px;
|
@@ -2189,44 +2188,44 @@ ol .occluded-content {
|
|
2189
2188
|
vertical-align: middle;
|
2190
2189
|
}
|
2191
2190
|
|
2192
|
-
.
|
2193
|
-
.
|
2194
|
-
.
|
2195
|
-
.
|
2191
|
+
.toolbar-radio:active,
|
2192
|
+
.toolbar-radio:hover,
|
2193
|
+
.toolbar-radio:focus,
|
2194
|
+
.toolbar-radio.active {
|
2196
2195
|
outline: none;
|
2197
2196
|
}
|
2198
2197
|
|
2199
|
-
.
|
2198
|
+
.toolbar-radio-first {
|
2200
2199
|
margin-left: 4px;
|
2201
2200
|
}
|
2202
2201
|
|
2203
|
-
.
|
2202
|
+
.toolbar-radio-last {
|
2204
2203
|
margin-right: 4px;
|
2205
2204
|
}
|
2206
2205
|
|
2207
|
-
.
|
2206
|
+
.toolbar-radio:hover {
|
2208
2207
|
background: var(--base04);
|
2209
2208
|
}
|
2210
2209
|
|
2211
|
-
.
|
2210
|
+
.toolbar-radio:active {
|
2212
2211
|
background: var(--base00);
|
2213
2212
|
}
|
2214
2213
|
|
2215
|
-
.
|
2214
|
+
.toolbar-radio.active {
|
2216
2215
|
background: var(--focus);
|
2217
2216
|
color: var(--focus-text);
|
2218
2217
|
}
|
2219
2218
|
|
2220
|
-
.
|
2219
|
+
.toolbar-search input {
|
2221
2220
|
border: 1px solid var(--base05);
|
2222
2221
|
height: calc(var(--toolbar-height) - 7px);
|
2223
2222
|
width: 175px;
|
2224
2223
|
}
|
2225
2224
|
|
2226
|
-
.
|
2225
|
+
.toolbar-search-clear-button {
|
2227
2226
|
top: 3px;
|
2228
2227
|
}
|
2229
|
-
.
|
2228
|
+
.toolbar-search-clear-button svg path {
|
2230
2229
|
fill: var(--base11);
|
2231
2230
|
}
|
2232
2231
|
|