ember-inspector 4.13.1 → 4.15.0
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/.ember-cli +1 -9
- package/.github/workflows/build.yml +33 -112
- package/.github/workflows/plan-release.yml +26 -48
- package/.github/workflows/publish.yml +129 -31
- package/.prettierignore +2 -13
- package/.prettierrc.js +10 -4
- package/.release-plan.json +13 -4
- package/.stylelintignore +8 -0
- package/.stylelintrc.js +10 -1
- package/.template-lintrc.js +2 -1
- package/.tool-versions +2 -2
- package/.watchmanconfig +1 -1
- package/CHANGELOG.md +137 -0
- package/DEVELOPMENT.md +50 -0
- package/PRIVACY.md +3 -0
- package/README.md +14 -50
- package/RELEASE.md +15 -50
- package/app/components/app-picker.hbs +2 -2
- package/app/components/component-tree-item.hbs +14 -14
- package/app/components/component-tree-toolbar.hbs +17 -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/component-parents.hbs +33 -0
- package/app/components/object-inspector/component-parents.js +43 -0
- 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-base.js +2 -0
- package/app/components/object-inspector/properties-grouped.hbs +5 -5
- package/app/components/object-inspector/property.hbs +36 -34
- package/app/components/object-inspector/property.ts +34 -17
- package/app/components/object-inspector/sort-properties.js +12 -4
- package/app/components/object-inspector/toggle.hbs +9 -0
- package/app/components/object-inspector/toggle.js +6 -0
- package/app/components/object-inspector.hbs +11 -9
- 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/{lib/ui/addon/components → app/components/ui}/drag-handle.hbs +4 -4
- package/{lib/ui/addon/components → app/components/ui}/drag-handle.js +3 -1
- package/{lib/ui/addon/components → app/components/ui}/empty-message.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/error-page.hbs +3 -3
- package/{lib/ui/addon/components → app/components/ui}/resizable-column.js +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-clear-button.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-reload-button.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.hbs +2 -2
- 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 +36 -71
- package/app/controllers/component-tree.js +26 -7
- 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 +7 -13
- 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/index.html +1 -19
- 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 +9 -13
- 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 +6 -4
- 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} +46 -46
- package/app/services/adapters/websocket.ts +40 -0
- package/app/services/layout.ts +124 -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} +25 -23
- package/app/styles/app.scss +1 -0
- package/app/styles/base.scss +6 -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 +30 -21
- package/{lib/ui/addon/styles → app/styles/ui}/_disclosure-triangle.scss +3 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_drag-handle.scss +7 -7
- package/{lib/ui/addon/styles → app/styles/ui}/_empty-message.scss +1 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_error-page.scss +8 -7
- package/{lib/ui/addon/styles → app/styles/ui}/_list.scss +46 -45
- package/{lib/ui/addon/styles → app/styles/ui}/_nav.scss +29 -27
- package/app/styles/ui/_object-inspector-toggle.scss +4 -0
- package/{lib/ui/addon/styles → app/styles/ui}/_pill.scss +4 -4
- package/{lib/ui/addon/styles → app/styles/ui}/_send-to-console.scss +1 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_split.scss +26 -20
- package/app/styles/ui/_ui.scss +13 -0
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_checkbox.scss +5 -5
- package/app/styles/ui/toolbar/_icon-button.scss +80 -0
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_index.scss +6 -5
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_radio.scss +10 -10
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_search.scss +5 -3
- package/app/styles/utils.scss +408 -122
- package/app/templates/application.hbs +22 -19
- package/app/templates/component-tree.hbs +4 -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 +31 -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.aca67dc376e8cd35b522.js +40 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- 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/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/bookmarklet/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/bookmarklet/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/bookmarklet/panes-3-16-0/basic-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/bookmarklet/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/ember.js +166 -0
- package/dist/bookmarklet/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/bookmarklet/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/bookmarklet/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/bookmarklet/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/index.html +4 -23
- package/dist/bookmarklet/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/bookmarklet/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/bookmarklet/panes-3-16-0/main.js +7669 -0
- package/dist/bookmarklet/panes-3-16-0/port.js +108 -0
- package/dist/bookmarklet/panes-3-16-0/profile-node.js +60 -0
- package/dist/bookmarklet/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/bookmarklet/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/bookmarklet/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/bookmarklet/panes-3-16-0/type-check.js +119 -0
- package/dist/bookmarklet/panes-3-16-0/version.js +90 -0
- package/dist/bookmarklet/panes-3-16-0/versions.js +4 -0
- package/dist/bookmarklet/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/bookmarklet/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/bookmarklet/panes-3-16-0/websocket-debug.js +10 -0
- package/dist/chrome/background.js +26 -21
- package/dist/chrome/boot.js +1 -1
- package/dist/chrome/content-script.js +12 -11
- package/dist/chrome/devtools.js +12 -3
- package/dist/chrome/manifest.json +4 -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.aca67dc376e8cd35b522.js +40 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- 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/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/chrome/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/chrome/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/chrome/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/chrome/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/chrome/panes-3-16-0/basic-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/chrome/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/chrome/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/ember.js +166 -0
- package/dist/chrome/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/chrome/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/chrome/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/chrome/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/index.html +4 -23
- package/dist/chrome/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/chrome/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/chrome/panes-3-16-0/main.js +7669 -0
- package/dist/chrome/panes-3-16-0/port.js +108 -0
- package/dist/chrome/panes-3-16-0/profile-node.js +60 -0
- package/dist/chrome/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/chrome/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/chrome/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/chrome/panes-3-16-0/type-check.js +119 -0
- package/dist/chrome/panes-3-16-0/version.js +90 -0
- package/dist/chrome/panes-3-16-0/versions.js +4 -0
- package/dist/chrome/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/chrome/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/chrome/panes-3-16-0/websocket-debug.js +10 -0
- 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 +12 -11
- package/dist/firefox/devtools.js +12 -3
- package/dist/firefox/manifest.json +4 -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.aca67dc376e8cd35b522.js +40 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- 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/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/firefox/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/firefox/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/firefox/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/firefox/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/firefox/panes-3-16-0/basic-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/firefox/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/firefox/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/ember.js +166 -0
- package/dist/firefox/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/firefox/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/firefox/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/firefox/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/index.html +4 -23
- package/dist/firefox/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/firefox/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/firefox/panes-3-16-0/main.js +7669 -0
- package/dist/firefox/panes-3-16-0/port.js +108 -0
- package/dist/firefox/panes-3-16-0/profile-node.js +60 -0
- package/dist/firefox/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/firefox/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/firefox/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/firefox/panes-3-16-0/type-check.js +119 -0
- package/dist/firefox/panes-3-16-0/version.js +90 -0
- package/dist/firefox/panes-3-16-0/versions.js +4 -0
- package/dist/firefox/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/firefox/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/firefox/panes-3-16-0/websocket-debug.js +10 -0
- 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.aca67dc376e8cd35b522.js +40 -0
- package/dist/websocket/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/websocket/assets/ember-inspector.css +997 -156
- package/dist/websocket/assets/ember-inspector.js +560 -613
- package/dist/websocket/assets/svg/ellipsis.svg +3 -3
- package/dist/websocket/assets/svg/focus-point-round.svg +9 -0
- 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/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/websocket/assets/vendor.css +4 -841
- package/dist/websocket/assets/vendor.js +4277 -5152
- package/dist/websocket/base-object-HAEdWjmg.js +59 -0
- package/dist/websocket/basic-B1dkgN3d.js +149 -0
- package/dist/websocket/basic-debug.js +10 -0
- package/dist/websocket/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/websocket/bookmarklet-debug.js +10 -0
- package/dist/websocket/chrome-P6FSEUf1.js +10 -0
- package/dist/websocket/chrome-debug.js +10 -0
- package/dist/websocket/ember.js +166 -0
- package/dist/websocket/ember_debug.js +7 -11018
- package/dist/websocket/evented-BCTya3yE.js +62 -0
- package/dist/websocket/firefox-8F84zphP.js +30 -0
- package/dist/websocket/firefox-debug.js +10 -0
- package/dist/websocket/index.html +4 -23
- package/dist/websocket/internals-CRmXMEzb.js +12 -0
- package/dist/websocket/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/websocket/main.js +7669 -0
- package/dist/websocket/port.js +108 -0
- package/dist/websocket/profile-node.js +60 -0
- package/dist/websocket/promise-assembler.js +218 -0
- package/dist/websocket/runloop-6_0lpzTA.js +1138 -0
- package/dist/websocket/start-inspector-BIYQArZn.js +334 -0
- package/dist/websocket/type-check.js +119 -0
- package/dist/websocket/version.js +90 -0
- package/dist/websocket/versions.js +4 -0
- package/dist/websocket/web-extension-OWnXJ_XK.js +144 -0
- package/dist/websocket/websocket-BSUvUqER.js +58 -0
- package/dist/websocket/websocket-debug.js +10 -0
- package/ember-cli-build.js +31 -140
- package/ember_debug/adapters/basic.js +10 -29
- package/ember_debug/adapters/bookmarklet.js +1 -0
- package/ember_debug/adapters/firefox.js +3 -3
- package/ember_debug/adapters/web-extension.js +6 -5
- package/ember_debug/adapters/websocket.js +2 -2
- package/ember_debug/babel.config.cjs +11 -0
- package/ember_debug/container-debug.js +1 -1
- package/ember_debug/data-debug.js +7 -8
- package/ember_debug/debug-port.js +1 -1
- package/ember_debug/deprecation-debug.js +14 -14
- package/ember_debug/entrypoints/basic-debug.js +10 -0
- package/ember_debug/entrypoints/bookmarklet-debug.js +10 -0
- package/ember_debug/entrypoints/chrome-debug.js +10 -0
- package/ember_debug/entrypoints/firefox-debug.js +10 -0
- package/ember_debug/entrypoints/websocket-debug.js +10 -0
- package/ember_debug/general-debug.js +4 -4
- package/ember_debug/lib/boot-ember-inspector.js +9 -0
- package/ember_debug/lib/get-applications.js +28 -0
- package/ember_debug/lib/load-ember-debug-in-webpage.js +32 -0
- package/ember_debug/lib/send-apps.js +14 -0
- package/ember_debug/lib/send-version-miss.js +38 -0
- package/ember_debug/lib/setup-instance-initializer.js +17 -0
- package/ember_debug/lib/start-inspector.js +195 -0
- package/ember_debug/lib/version-test.js +73 -0
- package/ember_debug/lib/versions.js +3 -0
- package/ember_debug/libs/capture-render-tree.js +1 -2
- package/ember_debug/libs/promise-assembler.js +5 -4
- package/ember_debug/libs/render-tree.js +37 -44
- package/ember_debug/libs/source-map.js +7 -6
- package/ember_debug/libs/view-inspection.js +25 -17
- package/ember_debug/main.js +18 -21
- package/ember_debug/models/profile-manager.js +6 -6
- package/ember_debug/models/profile-node.js +1 -1
- package/ember_debug/models/promise.js +2 -2
- package/ember_debug/object-inspector.js +74 -65
- package/ember_debug/package.json +27 -0
- package/ember_debug/port.js +5 -4
- package/ember_debug/promise-debug.js +5 -5
- package/ember_debug/render-debug.js +5 -5
- package/ember_debug/rollup.config.js +24 -0
- package/ember_debug/route-debug.js +10 -9
- package/ember_debug/services/session.js +2 -2
- package/ember_debug/utils/classify.js +1 -1
- package/ember_debug/utils/ember/object/internals.js +1 -11
- package/ember_debug/utils/ember/own-runloop.js +1 -1
- package/ember_debug/utils/ember/runloop.js +7 -10
- package/ember_debug/utils/ember-object-names.js +11 -9
- package/ember_debug/utils/ember.js +222 -40
- package/ember_debug/utils/evented.js +1 -1
- package/ember_debug/utils/get-object-name.js +3 -3
- package/ember_debug/utils/type-check.js +9 -5
- package/ember_debug/view-debug.js +12 -6
- package/eslint.config.mjs +173 -0
- package/gulpfile.js +1 -1
- package/package.json +97 -95
- package/patches/ember-cli-inject-live-reload.patch +16 -0
- package/pnpm-workspace.yaml +3 -0
- package/public/assets/svg/ellipsis.svg +3 -3
- package/public/assets/svg/focus-point-round.svg +9 -0
- 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/public/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/scripts/download-panes.js +1 -1
- package/skeletons/bookmarklet/load_inspector.js +31 -11
- package/skeletons/web-extension/background.js +26 -21
- package/skeletons/web-extension/boot.js +1 -1
- package/skeletons/web-extension/content-script.js +12 -11
- package/skeletons/web-extension/devtools.js +12 -3
- package/skeletons/web-extension/manifest.json +3 -1
- 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 +96 -57
- package/tests/acceptance/container-test.js +0 -2
- package/tests/acceptance/data-test.js +14 -11
- 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 +11 -11
- package/tests/ember_debug/container-debug-test.js +5 -14
- package/tests/ember_debug/deprecation-debug-test.js +15 -6
- package/tests/ember_debug/ember-data-test.js +7 -1
- package/tests/ember_debug/ember-debug-test.js +13 -13
- package/tests/ember_debug/object-inspector-test.js +115 -50
- package/tests/ember_debug/profile-manager-test.js +153 -170
- package/tests/ember_debug/profile-node-test.js +9 -5
- package/tests/ember_debug/promise-assembler-test.js +18 -10
- package/tests/ember_debug/promise-debug-test.js +19 -15
- package/tests/ember_debug/render-debug-test.js +8 -1
- package/tests/ember_debug/route-debug-test.js +14 -8
- package/tests/ember_debug/view-debug-test.js +267 -183
- package/tests/helpers/{index.js → index.ts} +6 -5
- package/tests/helpers/setup-ember-debug-test.js +22 -2
- package/tests/index.html +1 -2
- package/tests/integration/injection-test.js +37 -81
- package/tests/test-adapter.js +15 -15
- package/tests/test-helper.js +6 -4
- 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 +27 -0
- package/tsconfig.json +3 -1
- package/types/ember-inspector/index.d.ts +2 -1
- package/types/global.d.ts +1 -7
- package/.eslintignore +0 -33
- package/.eslintrc.js +0 -86
- package/app/components/list-content.js +0 -130
- package/app/controllers/promise-tree.js +0 -130
- package/app/libs/promise-assembler.js +0 -169
- 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.76a242242ec46a377266.js +0 -28
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.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/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/chrome/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.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/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/firefox/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.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/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/websocket/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/websocket/assets/chunk.178.b6064b368cf24cc346ec.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/dist/websocket/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/websocket/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/websocket/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/websocket/assets/fonts/Inter-Regular.woff2 +0 -0
- package/ember_debug/.eslintrc.js +0 -13
- package/ember_debug/utils/ember/debug.js +0 -20
- package/ember_debug/utils/ember/instrumentation.js +0 -11
- package/ember_debug/utils/ember/loader.js +0 -22
- package/ember_debug/utils/rsvp.js +0 -20
- package/ember_debug/vendor/loader.js +0 -54
- package/ember_debug/vendor/startup-wrapper.js +0 -399
- package/lib/ui/addon/styles/_object-inspector-toggle.scss +0 -12
- package/lib/ui/addon/styles/addon.scss +0 -13
- package/lib/ui/addon/styles/toolbar/_icon-button.scss +0 -61
- package/lib/ui/app/components/ui/disclosure-triangle.js +0 -1
- package/lib/ui/app/components/ui/disclosure.js +0 -1
- package/lib/ui/app/components/ui/drag-handle.js +0 -1
- package/lib/ui/app/components/ui/draggable-column.js +0 -1
- package/lib/ui/app/components/ui/empty-message.js +0 -1
- package/lib/ui/app/components/ui/error-page.js +0 -1
- package/lib/ui/app/components/ui/open-links-in-new-window.js +0 -1
- package/lib/ui/app/components/ui/resizable-column.js +0 -1
- package/lib/ui/app/components/ui/send-to-console.js +0 -1
- package/lib/ui/app/components/ui/toolbar-clear-button.js +0 -1
- package/lib/ui/app/components/ui/toolbar-divider.js +0 -1
- package/lib/ui/app/components/ui/toolbar-reload-button.js +0 -1
- package/lib/ui/app/components/ui/toolbar-search-field.js +0 -1
- package/lib/ui/app/components/ui/warning-message.js +0 -1
- package/lib/ui/index.js +0 -34
- package/lib/ui/package.json +0 -13
- package/public/assets/fonts/Inter-Bold.woff +0 -0
- package/public/assets/fonts/Inter-Bold.woff2 +0 -0
- package/public/assets/fonts/Inter-Regular.woff +0 -0
- package/public/assets/fonts/Inter-Regular.woff2 +0 -0
- package/tests/helpers/trigger-port.js +0 -6
- /package/app/{app.js → app.ts} +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure-triangle.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/draggable-column.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/draggable-column.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/resizable-column.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/send-to-console.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/toolbar-divider.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/warning-message.hbs +0 -0
- /package/app/controllers/{info.js → info.ts} +0 -0
- /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/_goto-source.scss +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/_warning.scss +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_divider.scss +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;
|
|
@@ -1392,844 +1396,3 @@ ol .occluded-content {
|
|
|
1392
1396
|
.ember-table .ember-table-loading-more {
|
|
1393
1397
|
display: inline-block;
|
|
1394
1398
|
}
|
|
1395
|
-
|
|
1396
|
-
@charset "UTF-8";
|
|
1397
|
-
.disclosure-triangle {
|
|
1398
|
-
padding: 0 2px;
|
|
1399
|
-
}
|
|
1400
|
-
.disclosure-triangle:focus {
|
|
1401
|
-
outline: none;
|
|
1402
|
-
}
|
|
1403
|
-
.disclosure-triangle svg {
|
|
1404
|
-
transition-duration: 0.1s;
|
|
1405
|
-
transition-property: transform;
|
|
1406
|
-
}
|
|
1407
|
-
.disclosure-triangle.collapsed svg {
|
|
1408
|
-
transform: rotate(-90deg);
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
/**
|
|
1412
|
-
DRAG-HANDLE
|
|
1413
|
-
===========
|
|
1414
|
-
The drag handle used for resizing elements
|
|
1415
|
-
*/
|
|
1416
|
-
:root {
|
|
1417
|
-
--drag-handle-width: 6px;
|
|
1418
|
-
--drag-handle-active-width: 60px;
|
|
1419
|
-
}
|
|
1420
|
-
|
|
1421
|
-
.drag-handle {
|
|
1422
|
-
width: var(--drag-handle-width);
|
|
1423
|
-
z-index: 500;
|
|
1424
|
-
}
|
|
1425
|
-
|
|
1426
|
-
.drag-handle--right {
|
|
1427
|
-
margin-right: calc(var(--drag-handle-width) / 2 * -1);
|
|
1428
|
-
}
|
|
1429
|
-
|
|
1430
|
-
.drag-handle--left {
|
|
1431
|
-
margin-left: calc(var(--drag-handle-width) / 2 * -1);
|
|
1432
|
-
}
|
|
1433
|
-
|
|
1434
|
-
.drag-handle__border {
|
|
1435
|
-
border-left: 1px solid var(--base06);
|
|
1436
|
-
margin-left: calc(var(--drag-handle-width) / 2);
|
|
1437
|
-
width: 1px;
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
.drag-handle:active {
|
|
1441
|
-
width: var(--drag-handle-active-width);
|
|
1442
|
-
}
|
|
1443
|
-
.drag-handle:active.drag-handle--right {
|
|
1444
|
-
margin-right: calc(var(--drag-handle-active-width) / 2 * -1);
|
|
1445
|
-
}
|
|
1446
|
-
.drag-handle:active.drag-handle--left {
|
|
1447
|
-
margin-left: calc(var(--drag-handle-active-width) / 2 * -1);
|
|
1448
|
-
}
|
|
1449
|
-
.drag-handle:active .drag-handle__border {
|
|
1450
|
-
margin-left: calc(var(--drag-handle-active-width) / 2);
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
.drag-handle--faded {
|
|
1454
|
-
opacity: 0.3;
|
|
1455
|
-
}
|
|
1456
|
-
|
|
1457
|
-
.empty-message svg path {
|
|
1458
|
-
fill: var(--base07);
|
|
1459
|
-
}
|
|
1460
|
-
|
|
1461
|
-
.empty-message__content {
|
|
1462
|
-
max-width: 40rem;
|
|
1463
|
-
}
|
|
1464
|
-
|
|
1465
|
-
/**
|
|
1466
|
-
ERROR-PAGE
|
|
1467
|
-
===========
|
|
1468
|
-
An error with possible reasons and solutions.
|
|
1469
|
-
For example: when application is not detected.
|
|
1470
|
-
*/
|
|
1471
|
-
.error-page__content {
|
|
1472
|
-
border: 1px solid var(--base04);
|
|
1473
|
-
width: 530px;
|
|
1474
|
-
}
|
|
1475
|
-
.error-page__content ul {
|
|
1476
|
-
list-style-type: disc;
|
|
1477
|
-
padding-left: var(--unit4);
|
|
1478
|
-
}
|
|
1479
|
-
.error-page__content li {
|
|
1480
|
-
padding: 2px 0;
|
|
1481
|
-
}
|
|
1482
|
-
.error-page__content a {
|
|
1483
|
-
color: var(--spec01);
|
|
1484
|
-
text-decoration: none;
|
|
1485
|
-
}
|
|
1486
|
-
|
|
1487
|
-
.error-page__header {
|
|
1488
|
-
border-bottom: 1px solid var(--base04);
|
|
1489
|
-
top: -25px;
|
|
1490
|
-
}
|
|
1491
|
-
.error-page__header .tomster {
|
|
1492
|
-
transform: translateY(90px);
|
|
1493
|
-
flex-shrink: 0;
|
|
1494
|
-
height: 89px;
|
|
1495
|
-
width: 128px;
|
|
1496
|
-
animation: tomsterReveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
|
|
1497
|
-
animation-delay: 0.75s;
|
|
1498
|
-
animation-fill-mode: forwards;
|
|
1499
|
-
}
|
|
1500
|
-
|
|
1501
|
-
@keyframes tomsterReveal {
|
|
1502
|
-
from {
|
|
1503
|
-
transform: translateY(90px);
|
|
1504
|
-
}
|
|
1505
|
-
to {
|
|
1506
|
-
transform: translateY(0px);
|
|
1507
|
-
}
|
|
1508
|
-
}
|
|
1509
|
-
.error-page__body {
|
|
1510
|
-
border-bottom: 1px solid var(--base04);
|
|
1511
|
-
}
|
|
1512
|
-
|
|
1513
|
-
.list {
|
|
1514
|
-
background: var(--base00);
|
|
1515
|
-
box-sizing: border-box;
|
|
1516
|
-
font-size: 1.1rem;
|
|
1517
|
-
height: 100%;
|
|
1518
|
-
overflow: hidden;
|
|
1519
|
-
position: relative;
|
|
1520
|
-
}
|
|
1521
|
-
|
|
1522
|
-
.list__content {
|
|
1523
|
-
overflow: scroll;
|
|
1524
|
-
transform: translateZ(0);
|
|
1525
|
-
}
|
|
1526
|
-
|
|
1527
|
-
.list table {
|
|
1528
|
-
border-collapse: separate;
|
|
1529
|
-
border-spacing: 0;
|
|
1530
|
-
left: 0;
|
|
1531
|
-
position: absolute;
|
|
1532
|
-
table-layout: fixed;
|
|
1533
|
-
top: 0;
|
|
1534
|
-
width: 100%;
|
|
1535
|
-
}
|
|
1536
|
-
|
|
1537
|
-
.list__header {
|
|
1538
|
-
border-bottom: 1px solid var(--base05);
|
|
1539
|
-
height: 30px;
|
|
1540
|
-
overflow: hidden;
|
|
1541
|
-
overflow-y: scroll;
|
|
1542
|
-
position: relative;
|
|
1543
|
-
text-align: left;
|
|
1544
|
-
user-select: none;
|
|
1545
|
-
}
|
|
1546
|
-
.list__header .list__row {
|
|
1547
|
-
background: var(--base00);
|
|
1548
|
-
}
|
|
1549
|
-
.list__header .list__cell {
|
|
1550
|
-
color: var(--inherit);
|
|
1551
|
-
font-weight: normal;
|
|
1552
|
-
opacity: 1;
|
|
1553
|
-
padding: 0;
|
|
1554
|
-
padding-left: 5px;
|
|
1555
|
-
position: relative;
|
|
1556
|
-
}
|
|
1557
|
-
|
|
1558
|
-
.list:not(.list_no-alternate-color) .list__content .list__row {
|
|
1559
|
-
background: var(--base02);
|
|
1560
|
-
}
|
|
1561
|
-
.list:not(.list_no-alternate-color) .list__content .list__row.striped {
|
|
1562
|
-
background: var(--base00);
|
|
1563
|
-
}
|
|
1564
|
-
|
|
1565
|
-
.list.list--css-striping .list__row:nth-child(even) {
|
|
1566
|
-
background: var(--base00);
|
|
1567
|
-
}
|
|
1568
|
-
|
|
1569
|
-
.list__cell-content {
|
|
1570
|
-
width: 100%;
|
|
1571
|
-
}
|
|
1572
|
-
|
|
1573
|
-
.list__cell {
|
|
1574
|
-
box-sizing: border-box;
|
|
1575
|
-
line-height: 30px;
|
|
1576
|
-
min-height: 30px;
|
|
1577
|
-
opacity: 0.7;
|
|
1578
|
-
overflow: hidden;
|
|
1579
|
-
padding-left: 5px;
|
|
1580
|
-
text-overflow: ellipsis;
|
|
1581
|
-
white-space: nowrap;
|
|
1582
|
-
}
|
|
1583
|
-
.list__cell_size_small {
|
|
1584
|
-
flex: none;
|
|
1585
|
-
width: 50px;
|
|
1586
|
-
}
|
|
1587
|
-
.list__cell_size_medium {
|
|
1588
|
-
flex: none;
|
|
1589
|
-
width: 130px;
|
|
1590
|
-
}
|
|
1591
|
-
.list__cell_size_larger {
|
|
1592
|
-
flex: none;
|
|
1593
|
-
width: 350px;
|
|
1594
|
-
}
|
|
1595
|
-
.list__cell_size_large {
|
|
1596
|
-
flex: none;
|
|
1597
|
-
width: 250px;
|
|
1598
|
-
}
|
|
1599
|
-
.list__cell_size_huge {
|
|
1600
|
-
flex: none;
|
|
1601
|
-
width: 450px;
|
|
1602
|
-
}
|
|
1603
|
-
.list__cell_value_numeric {
|
|
1604
|
-
font-family: var(--font-monospace);
|
|
1605
|
-
min-width: 65px;
|
|
1606
|
-
padding-right: 10px;
|
|
1607
|
-
text-align: right;
|
|
1608
|
-
}
|
|
1609
|
-
.list__cell_main {
|
|
1610
|
-
font-weight: bold;
|
|
1611
|
-
}
|
|
1612
|
-
.list__cell_spacer {
|
|
1613
|
-
border: none;
|
|
1614
|
-
flex: none;
|
|
1615
|
-
width: 0;
|
|
1616
|
-
}
|
|
1617
|
-
.list__cell_clickable {
|
|
1618
|
-
cursor: pointer;
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
|
-
/**
|
|
1622
|
-
* Content in a cell that should not take the entire
|
|
1623
|
-
* space. Usually because it has a $E after it.
|
|
1624
|
-
*/
|
|
1625
|
-
.list__cell-partial {
|
|
1626
|
-
display: inline-block;
|
|
1627
|
-
float: left;
|
|
1628
|
-
max-width: calc(100% - 40px);
|
|
1629
|
-
overflow: hidden;
|
|
1630
|
-
text-overflow: ellipsis;
|
|
1631
|
-
white-space: nowrap;
|
|
1632
|
-
}
|
|
1633
|
-
|
|
1634
|
-
.list__cell-partial_clickable {
|
|
1635
|
-
cursor: pointer;
|
|
1636
|
-
}
|
|
1637
|
-
|
|
1638
|
-
.list__cell-partial_size_medium {
|
|
1639
|
-
max-width: calc(100% - 60px);
|
|
1640
|
-
}
|
|
1641
|
-
|
|
1642
|
-
/**
|
|
1643
|
-
* For example a $E icon to the right
|
|
1644
|
-
* of a cell.
|
|
1645
|
-
*/
|
|
1646
|
-
.list__cell-helper {
|
|
1647
|
-
float: right;
|
|
1648
|
-
margin-right: 5px;
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
|
-
.list__link {
|
|
1652
|
-
cursor: pointer;
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
|
-
.list__row:hover .list__cell {
|
|
1656
|
-
opacity: 1;
|
|
1657
|
-
}
|
|
1658
|
-
.list__row:hover .list__cell_clickable {
|
|
1659
|
-
text-decoration: underline;
|
|
1660
|
-
}
|
|
1661
|
-
.list__row:hover .list__cell-partial_clickable {
|
|
1662
|
-
text-decoration: underline;
|
|
1663
|
-
}
|
|
1664
|
-
.list__row:hover .list__link {
|
|
1665
|
-
text-decoration: underline;
|
|
1666
|
-
}
|
|
1667
|
-
|
|
1668
|
-
.list__row_highlight .list__cell,
|
|
1669
|
-
.list__cell_highlight {
|
|
1670
|
-
opacity: 1;
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
/* ARROW FOR COLLAPSING AND EXPANDING */
|
|
1674
|
-
.list__cell-arrow {
|
|
1675
|
-
cursor: pointer;
|
|
1676
|
-
display: block;
|
|
1677
|
-
float: left;
|
|
1678
|
-
height: 30px;
|
|
1679
|
-
position: relative;
|
|
1680
|
-
width: 15px;
|
|
1681
|
-
}
|
|
1682
|
-
.list__cell-arrow:before {
|
|
1683
|
-
color: var(--base10);
|
|
1684
|
-
font-size: 75%;
|
|
1685
|
-
position: absolute;
|
|
1686
|
-
right: 5px;
|
|
1687
|
-
top: 0;
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
|
-
/* cell expanding/collapsing */
|
|
1691
|
-
.list__cell_arrow_expanded,
|
|
1692
|
-
.list__cell_arrow_collapsed {
|
|
1693
|
-
cursor: pointer;
|
|
1694
|
-
}
|
|
1695
|
-
|
|
1696
|
-
.list__cell_arrow_collapsed .list__cell-arrow:before {
|
|
1697
|
-
content: "▶";
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
|
-
.list__cell_arrow_expanded .list__cell-arrow:before {
|
|
1701
|
-
content: "▼";
|
|
1702
|
-
}
|
|
1703
|
-
|
|
1704
|
-
.list__row_arrow_collapsed,
|
|
1705
|
-
.list__row_arrow_expanded {
|
|
1706
|
-
cursor: pointer;
|
|
1707
|
-
position: relative;
|
|
1708
|
-
}
|
|
1709
|
-
|
|
1710
|
-
.list__row_arrow_collapsed .list__cell-arrow:before {
|
|
1711
|
-
content: "▶";
|
|
1712
|
-
}
|
|
1713
|
-
|
|
1714
|
-
.list__row_arrow_expanded .list__cell-arrow:before {
|
|
1715
|
-
content: "▼";
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
|
-
.nav__title {
|
|
1719
|
-
color: var(--base09);
|
|
1720
|
-
cursor: default;
|
|
1721
|
-
font-size: 1.2rem;
|
|
1722
|
-
height: 22px;
|
|
1723
|
-
line-height: 22px;
|
|
1724
|
-
margin: 2px 0 0;
|
|
1725
|
-
overflow: hidden;
|
|
1726
|
-
padding: 0 var(--unit1);
|
|
1727
|
-
text-overflow: ellipsis;
|
|
1728
|
-
white-space: nowrap;
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
.nav ul {
|
|
1732
|
-
list-style-type: none;
|
|
1733
|
-
margin: 0;
|
|
1734
|
-
padding: 0;
|
|
1735
|
-
user-select: none;
|
|
1736
|
-
}
|
|
1737
|
-
|
|
1738
|
-
/**
|
|
1739
|
-
Nav Item
|
|
1740
|
-
===========
|
|
1741
|
-
Anchor tag
|
|
1742
|
-
*/
|
|
1743
|
-
.nav__item {
|
|
1744
|
-
align-items: center;
|
|
1745
|
-
color: var(--base15);
|
|
1746
|
-
cursor: default;
|
|
1747
|
-
display: flex;
|
|
1748
|
-
height: 24px;
|
|
1749
|
-
line-height: 24px;
|
|
1750
|
-
overflow: hidden;
|
|
1751
|
-
padding: 0 var(--unit1);
|
|
1752
|
-
text-decoration: none;
|
|
1753
|
-
text-overflow: ellipsis;
|
|
1754
|
-
white-space: nowrap;
|
|
1755
|
-
}
|
|
1756
|
-
.nav__item:focus {
|
|
1757
|
-
outline: none;
|
|
1758
|
-
}
|
|
1759
|
-
|
|
1760
|
-
.nav__item.active {
|
|
1761
|
-
background: var(--focus);
|
|
1762
|
-
color: var(--focus-text);
|
|
1763
|
-
}
|
|
1764
|
-
|
|
1765
|
-
.app.inactive .nav__item.active {
|
|
1766
|
-
background: var(--base06);
|
|
1767
|
-
}
|
|
1768
|
-
|
|
1769
|
-
/**
|
|
1770
|
-
Nav Item Label
|
|
1771
|
-
===========
|
|
1772
|
-
Main text of Nav Item
|
|
1773
|
-
*/
|
|
1774
|
-
.nav__item-label {
|
|
1775
|
-
flex-grow: 1;
|
|
1776
|
-
font-size: 1.3rem;
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
.nav--collapsed .nav__item-label,
|
|
1780
|
-
.nav--collapsed .nav__item .pill {
|
|
1781
|
-
display: none;
|
|
1782
|
-
}
|
|
1783
|
-
|
|
1784
|
-
.nav__item-icon {
|
|
1785
|
-
flex-shrink: 0;
|
|
1786
|
-
height: 22px;
|
|
1787
|
-
margin-right: 7px;
|
|
1788
|
-
width: 22px;
|
|
1789
|
-
}
|
|
1790
|
-
|
|
1791
|
-
.nav__icon-stroke {
|
|
1792
|
-
fill: var(--base12);
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
|
-
.nav__item.active .nav__icon-stroke {
|
|
1796
|
-
fill: var(--focus-text);
|
|
1797
|
-
}
|
|
1798
|
-
|
|
1799
|
-
/* Custom navs */
|
|
1800
|
-
.nav--main .nav__item {
|
|
1801
|
-
height: 38px;
|
|
1802
|
-
line-height: 38px;
|
|
1803
|
-
padding-left: 12px;
|
|
1804
|
-
}
|
|
1805
|
-
|
|
1806
|
-
.nav--main .pill {
|
|
1807
|
-
margin-right: var(--unit1);
|
|
1808
|
-
margin-left: var(--unit1);
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
.nav.nav--main .nav__title {
|
|
1812
|
-
padding-left: 14px;
|
|
1813
|
-
}
|
|
1814
|
-
|
|
1815
|
-
/* Flip path on Promises icon */
|
|
1816
|
-
.promises-icon-circle {
|
|
1817
|
-
transform: scaleX(-1);
|
|
1818
|
-
transform-origin: 18px;
|
|
1819
|
-
}
|
|
1820
|
-
|
|
1821
|
-
.navigation-submit-issue {
|
|
1822
|
-
grid-area: left;
|
|
1823
|
-
}
|
|
1824
|
-
|
|
1825
|
-
.navigation-toggle {
|
|
1826
|
-
grid-area: right;
|
|
1827
|
-
}
|
|
1828
|
-
.navigation-toggle .svg-stroke {
|
|
1829
|
-
stroke: var(--base12);
|
|
1830
|
-
}
|
|
1831
|
-
.navigation-toggle .svg-fill {
|
|
1832
|
-
fill: var(--base12);
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
.nav__footer.nav--expanded {
|
|
1836
|
-
display: grid;
|
|
1837
|
-
grid-template: "left center right" 38px/auto 1fr auto;
|
|
1838
|
-
height: 38px;
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
.nav__footer.nav--collapsed {
|
|
1842
|
-
display: grid;
|
|
1843
|
-
grid-template: "left" 32px "right" 32px;
|
|
1844
|
-
height: auto;
|
|
1845
|
-
}
|
|
1846
|
-
|
|
1847
|
-
.nav__overflow.nav__overflow--active {
|
|
1848
|
-
background-color: var(--focus);
|
|
1849
|
-
}
|
|
1850
|
-
.nav__overflow.nav__overflow--active .nav__icon-stroke {
|
|
1851
|
-
fill: var(--focus-text);
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
|
-
.nav__overflow select {
|
|
1855
|
-
height: 38px;
|
|
1856
|
-
}
|
|
1857
|
-
|
|
1858
|
-
.pill {
|
|
1859
|
-
background: var(--pill-bg);
|
|
1860
|
-
border-radius: 8px;
|
|
1861
|
-
cursor: inherit;
|
|
1862
|
-
display: inline-block;
|
|
1863
|
-
font-family: var(--font-monospace);
|
|
1864
|
-
font-size: 1.2rem;
|
|
1865
|
-
line-height: 12px;
|
|
1866
|
-
margin: 0 2px;
|
|
1867
|
-
padding: 2px 6px;
|
|
1868
|
-
position: relative;
|
|
1869
|
-
vertical-align: middle;
|
|
1870
|
-
}
|
|
1871
|
-
|
|
1872
|
-
.active > .pill {
|
|
1873
|
-
background: var(--pill-bg-active);
|
|
1874
|
-
}
|
|
1875
|
-
|
|
1876
|
-
.pill--small {
|
|
1877
|
-
font-size: 1rem;
|
|
1878
|
-
padding: 2px 4px;
|
|
1879
|
-
}
|
|
1880
|
-
|
|
1881
|
-
.pill--text {
|
|
1882
|
-
font-family: var(--font-sans-serif);
|
|
1883
|
-
}
|
|
1884
|
-
|
|
1885
|
-
.pill--blue {
|
|
1886
|
-
background: var(--focus);
|
|
1887
|
-
color: var(--focus-text);
|
|
1888
|
-
}
|
|
1889
|
-
|
|
1890
|
-
.send-to-console {
|
|
1891
|
-
background: none;
|
|
1892
|
-
border: none;
|
|
1893
|
-
border-bottom: 1px solid transparent;
|
|
1894
|
-
color: var(--base15);
|
|
1895
|
-
cursor: pointer;
|
|
1896
|
-
margin: 0;
|
|
1897
|
-
outline: none;
|
|
1898
|
-
padding: 0;
|
|
1899
|
-
}
|
|
1900
|
-
.send-to-console svg {
|
|
1901
|
-
vertical-align: middle;
|
|
1902
|
-
}
|
|
1903
|
-
.send-to-console .send-chevron {
|
|
1904
|
-
fill: var(--focus);
|
|
1905
|
-
}
|
|
1906
|
-
.send-to-console .send-text {
|
|
1907
|
-
fill: var(--base12);
|
|
1908
|
-
}
|
|
1909
|
-
|
|
1910
|
-
.send-to-console:hover {
|
|
1911
|
-
border-bottom-color: var(--focus);
|
|
1912
|
-
}
|
|
1913
|
-
|
|
1914
|
-
.send-to-console:active {
|
|
1915
|
-
transform: translateY(1px);
|
|
1916
|
-
}
|
|
1917
|
-
|
|
1918
|
-
.send-to-console--chevron-only svg {
|
|
1919
|
-
position: relative;
|
|
1920
|
-
top: -1px;
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
.goto-source {
|
|
1924
|
-
background: none;
|
|
1925
|
-
border: none;
|
|
1926
|
-
border-bottom: 1px solid transparent;
|
|
1927
|
-
color: var(--base15);
|
|
1928
|
-
cursor: pointer;
|
|
1929
|
-
margin: 0;
|
|
1930
|
-
outline: none;
|
|
1931
|
-
padding: 0;
|
|
1932
|
-
}
|
|
1933
|
-
.goto-source svg {
|
|
1934
|
-
vertical-align: middle;
|
|
1935
|
-
}
|
|
1936
|
-
.goto-source .send-chevron {
|
|
1937
|
-
fill: var(--focus);
|
|
1938
|
-
}
|
|
1939
|
-
.goto-source .send-text {
|
|
1940
|
-
fill: var(--base12);
|
|
1941
|
-
}
|
|
1942
|
-
|
|
1943
|
-
.goto-source:hover {
|
|
1944
|
-
border-bottom-color: var(--focus);
|
|
1945
|
-
}
|
|
1946
|
-
|
|
1947
|
-
.goto-source:active {
|
|
1948
|
-
transform: translateY(1px);
|
|
1949
|
-
}
|
|
1950
|
-
|
|
1951
|
-
.object-inspector-toggle.toolbar__icon-button {
|
|
1952
|
-
margin-right: 0;
|
|
1953
|
-
max-height: var(--toolbar-height);
|
|
1954
|
-
padding-right: 6px;
|
|
1955
|
-
padding-left: 6px;
|
|
1956
|
-
transform: scaleX(-1);
|
|
1957
|
-
}
|
|
1958
|
-
.object-inspector-toggle.toolbar__icon-button:active {
|
|
1959
|
-
transform: translate(1px, 1px) scaleX(-1);
|
|
1960
|
-
}
|
|
1961
|
-
|
|
1962
|
-
/**
|
|
1963
|
-
SPLIT
|
|
1964
|
-
=====
|
|
1965
|
-
Vertically split panels
|
|
1966
|
-
*/
|
|
1967
|
-
/* .split: The container for one or more panels */
|
|
1968
|
-
.split {
|
|
1969
|
-
bottom: 0;
|
|
1970
|
-
display: flex;
|
|
1971
|
-
flex: auto;
|
|
1972
|
-
flex-direction: row;
|
|
1973
|
-
left: 0;
|
|
1974
|
-
position: absolute;
|
|
1975
|
-
right: 0;
|
|
1976
|
-
top: 0;
|
|
1977
|
-
}
|
|
1978
|
-
|
|
1979
|
-
/* .split__panel: Contains a body, and optional header and footer elements */
|
|
1980
|
-
.split__panel {
|
|
1981
|
-
display: flex;
|
|
1982
|
-
flex: auto;
|
|
1983
|
-
flex-direction: column;
|
|
1984
|
-
position: relative;
|
|
1985
|
-
overflow: hidden;
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
.split__panel__hd,
|
|
1989
|
-
.split__panel__bd,
|
|
1990
|
-
.split__panel__ft {
|
|
1991
|
-
position: relative;
|
|
1992
|
-
}
|
|
1993
|
-
|
|
1994
|
-
.split__panel__hd,
|
|
1995
|
-
.split__panel__ft {
|
|
1996
|
-
border-color: var(--base03);
|
|
1997
|
-
box-sizing: border-box;
|
|
1998
|
-
display: flex;
|
|
1999
|
-
flex: none;
|
|
2000
|
-
flex-direction: column;
|
|
2001
|
-
}
|
|
2002
|
-
|
|
2003
|
-
.split__panel__hd {
|
|
2004
|
-
background: var(--base00);
|
|
2005
|
-
border-bottom-style: solid;
|
|
2006
|
-
border-bottom-width: 1px;
|
|
2007
|
-
min-height: 29px;
|
|
2008
|
-
}
|
|
2009
|
-
|
|
2010
|
-
.split__panel__bd {
|
|
2011
|
-
background: var(--base00);
|
|
2012
|
-
flex: auto;
|
|
2013
|
-
overflow: scroll;
|
|
2014
|
-
max-width: 100%;
|
|
2015
|
-
width: auto;
|
|
2016
|
-
}
|
|
2017
|
-
|
|
2018
|
-
.split__panel__ft {
|
|
2019
|
-
background: var(--base01);
|
|
2020
|
-
border-top-style: solid;
|
|
2021
|
-
border-top-width: 1px;
|
|
2022
|
-
height: 23px;
|
|
2023
|
-
justify-content: center;
|
|
2024
|
-
}
|
|
2025
|
-
|
|
2026
|
-
.split__panel,
|
|
2027
|
-
.split__panel__bd {
|
|
2028
|
-
height: 100%;
|
|
2029
|
-
}
|
|
2030
|
-
|
|
2031
|
-
/* Custom panels */
|
|
2032
|
-
.split__panel--sidebar-1 .split__panel__bd {
|
|
2033
|
-
background: var(--base01);
|
|
2034
|
-
}
|
|
2035
|
-
|
|
2036
|
-
.split__panel--sidebar-2 .split__panel__bd {
|
|
2037
|
-
background: var(--base01);
|
|
2038
|
-
}
|
|
2039
|
-
|
|
2040
|
-
/* Fix main list-view scrolling */
|
|
2041
|
-
.split--main > .split__panel > .split__panel__bd {
|
|
2042
|
-
overflow: hidden;
|
|
2043
|
-
}
|
|
2044
|
-
|
|
2045
|
-
.split--main > .split__panel--sidebar-1 > .split__panel__bd {
|
|
2046
|
-
overflow-y: auto;
|
|
2047
|
-
}
|
|
2048
|
-
|
|
2049
|
-
:root {
|
|
2050
|
-
--toolbar-height: 28px;
|
|
2051
|
-
}
|
|
2052
|
-
|
|
2053
|
-
.toolbar {
|
|
2054
|
-
align-items: center;
|
|
2055
|
-
display: flex;
|
|
2056
|
-
flex-direction: row;
|
|
2057
|
-
min-height: var(--toolbar-height);
|
|
2058
|
-
}
|
|
2059
|
-
|
|
2060
|
-
.toolbar > * {
|
|
2061
|
-
flex: none;
|
|
2062
|
-
}
|
|
2063
|
-
|
|
2064
|
-
.toolbar .send-to-console {
|
|
2065
|
-
margin-left: 5px;
|
|
2066
|
-
margin-right: 5px;
|
|
2067
|
-
}
|
|
2068
|
-
|
|
2069
|
-
.toolbar .goto-source {
|
|
2070
|
-
margin-left: 5px;
|
|
2071
|
-
margin-right: 5px;
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
.toolbar__checkbox {
|
|
2075
|
-
height: 100%;
|
|
2076
|
-
margin-left: 4px;
|
|
2077
|
-
margin-right: 4px;
|
|
2078
|
-
overflow: hidden;
|
|
2079
|
-
white-space: nowrap;
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
.toolbar__checkbox label {
|
|
2083
|
-
display: block;
|
|
2084
|
-
height: 100%;
|
|
2085
|
-
line-height: var(--toolbar-height);
|
|
2086
|
-
}
|
|
2087
|
-
|
|
2088
|
-
.toolbar__checkbox input {
|
|
2089
|
-
margin: 0;
|
|
2090
|
-
}
|
|
2091
|
-
|
|
2092
|
-
/*
|
|
2093
|
-
if first item in toolbar, create extra clickable space
|
|
2094
|
-
*/
|
|
2095
|
-
.toolbar__checkbox:first-child {
|
|
2096
|
-
margin-left: 0;
|
|
2097
|
-
}
|
|
2098
|
-
|
|
2099
|
-
.toolbar__checkbox:first-child label {
|
|
2100
|
-
margin-left: 0;
|
|
2101
|
-
padding-left: 8px;
|
|
2102
|
-
}
|
|
2103
|
-
|
|
2104
|
-
.toolbar .divider {
|
|
2105
|
-
height: calc(var(--toolbar-height) - 10px);
|
|
2106
|
-
width: 1px;
|
|
2107
|
-
}
|
|
2108
|
-
|
|
2109
|
-
.toolbar__icon-button {
|
|
2110
|
-
align-items: center;
|
|
2111
|
-
background: transparent;
|
|
2112
|
-
border: 0 transparent none;
|
|
2113
|
-
display: flex;
|
|
2114
|
-
height: var(--toolbar-height);
|
|
2115
|
-
margin-left: 2px;
|
|
2116
|
-
margin-right: 2px;
|
|
2117
|
-
padding: 0 2px;
|
|
2118
|
-
vertical-align: top;
|
|
2119
|
-
/* if first item in toolbar, create extra clickable space on left side */
|
|
2120
|
-
}
|
|
2121
|
-
.toolbar__icon-button:first-child {
|
|
2122
|
-
margin-left: 0;
|
|
2123
|
-
padding-left: 10px;
|
|
2124
|
-
}
|
|
2125
|
-
.toolbar__icon-button:focus {
|
|
2126
|
-
outline: none;
|
|
2127
|
-
}
|
|
2128
|
-
.toolbar__icon-button:active {
|
|
2129
|
-
transform: translate(1px, 1px);
|
|
2130
|
-
}
|
|
2131
|
-
|
|
2132
|
-
/*
|
|
2133
|
-
SVG colors
|
|
2134
|
-
*/
|
|
2135
|
-
.toolbar__icon-button .svg-stroke {
|
|
2136
|
-
stroke: var(--base11);
|
|
2137
|
-
}
|
|
2138
|
-
.toolbar__icon-button .svg-fill {
|
|
2139
|
-
fill: var(--base11);
|
|
2140
|
-
}
|
|
2141
|
-
.toolbar__icon-button:hover .svg-stroke {
|
|
2142
|
-
stroke: var(--base13);
|
|
2143
|
-
}
|
|
2144
|
-
.toolbar__icon-button:hover .svg-fill {
|
|
2145
|
-
fill: var(--base13);
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
/*
|
|
2149
|
-
Modifier:
|
|
2150
|
-
.active (highlighted)
|
|
2151
|
-
*/
|
|
2152
|
-
.toolbar__icon-button.active .svg-stroke {
|
|
2153
|
-
stroke: var(--focus);
|
|
2154
|
-
}
|
|
2155
|
-
.toolbar__icon-button.active .svg-fill {
|
|
2156
|
-
fill: var(--focus);
|
|
2157
|
-
}
|
|
2158
|
-
|
|
2159
|
-
/*
|
|
2160
|
-
Modifier
|
|
2161
|
-
.disabled
|
|
2162
|
-
*/
|
|
2163
|
-
.toolbar__icon-button.disabled {
|
|
2164
|
-
pointer-events: none;
|
|
2165
|
-
}
|
|
2166
|
-
.toolbar__icon-button.disabled:active {
|
|
2167
|
-
transform: none;
|
|
2168
|
-
}
|
|
2169
|
-
.toolbar__icon-button.disabled .svg-stroke {
|
|
2170
|
-
stroke: var(--base05);
|
|
2171
|
-
}
|
|
2172
|
-
.toolbar__icon-button.disabled .svg-fill {
|
|
2173
|
-
fill: var(--base05);
|
|
2174
|
-
}
|
|
2175
|
-
|
|
2176
|
-
.toolbar__radio {
|
|
2177
|
-
background: var(--base02);
|
|
2178
|
-
border: none;
|
|
2179
|
-
border-radius: 2px;
|
|
2180
|
-
color: var(--base14);
|
|
2181
|
-
cursor: default;
|
|
2182
|
-
display: inline-block;
|
|
2183
|
-
font-size: 1.2rem;
|
|
2184
|
-
line-height: 18px;
|
|
2185
|
-
margin-left: 2px;
|
|
2186
|
-
margin-right: 2px;
|
|
2187
|
-
padding: 0 6px;
|
|
2188
|
-
position: relative;
|
|
2189
|
-
vertical-align: middle;
|
|
2190
|
-
}
|
|
2191
|
-
|
|
2192
|
-
.toolbar__radio:active,
|
|
2193
|
-
.toolbar__radio:hover,
|
|
2194
|
-
.toolbar__radio:focus,
|
|
2195
|
-
.toolbar__radio.active {
|
|
2196
|
-
outline: none;
|
|
2197
|
-
}
|
|
2198
|
-
|
|
2199
|
-
.toolbar__radio--first {
|
|
2200
|
-
margin-left: 4px;
|
|
2201
|
-
}
|
|
2202
|
-
|
|
2203
|
-
.toolbar__radio--last {
|
|
2204
|
-
margin-right: 4px;
|
|
2205
|
-
}
|
|
2206
|
-
|
|
2207
|
-
.toolbar__radio:hover {
|
|
2208
|
-
background: var(--base04);
|
|
2209
|
-
}
|
|
2210
|
-
|
|
2211
|
-
.toolbar__radio:active {
|
|
2212
|
-
background: var(--base00);
|
|
2213
|
-
}
|
|
2214
|
-
|
|
2215
|
-
.toolbar__radio.active {
|
|
2216
|
-
background: var(--focus);
|
|
2217
|
-
color: var(--focus-text);
|
|
2218
|
-
}
|
|
2219
|
-
|
|
2220
|
-
.toolbar__search input {
|
|
2221
|
-
border: 1px solid var(--base05);
|
|
2222
|
-
height: calc(var(--toolbar-height) - 7px);
|
|
2223
|
-
width: 175px;
|
|
2224
|
-
}
|
|
2225
|
-
|
|
2226
|
-
.toolbar__search-clear-button {
|
|
2227
|
-
top: 3px;
|
|
2228
|
-
}
|
|
2229
|
-
.toolbar__search-clear-button svg path {
|
|
2230
|
-
fill: var(--base11);
|
|
2231
|
-
}
|
|
2232
|
-
|
|
2233
|
-
.warning {
|
|
2234
|
-
color: var(--warning-text);
|
|
2235
|
-
}
|