@sap-ux/control-property-editor 0.2.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.
Files changed (112) hide show
  1. package/.eslintignore +1 -0
  2. package/.eslintrc.js +16 -0
  3. package/CHANGELOG.md +7 -0
  4. package/LICENSE +201 -0
  5. package/README.md +16 -0
  6. package/dist/app.css +2 -0
  7. package/dist/app.css.map +7 -0
  8. package/dist/app.js +347 -0
  9. package/dist/app.js.map +7 -0
  10. package/esbuild.js +25 -0
  11. package/jest.config.js +20 -0
  12. package/package.json +68 -0
  13. package/src/App.scss +57 -0
  14. package/src/App.tsx +136 -0
  15. package/src/Workarounds.scss +79 -0
  16. package/src/actions.ts +3 -0
  17. package/src/components/AppLogo.module.scss +8 -0
  18. package/src/components/AppLogo.tsx +75 -0
  19. package/src/components/ChangeIndicator.tsx +80 -0
  20. package/src/components/Separator.tsx +32 -0
  21. package/src/components/ThemeSelectorCallout.scss +48 -0
  22. package/src/components/ThemeSelectorCallout.tsx +125 -0
  23. package/src/components/ToolBar.scss +39 -0
  24. package/src/components/ToolBar.tsx +26 -0
  25. package/src/components/index.ts +4 -0
  26. package/src/devices.ts +18 -0
  27. package/src/global.d.ts +4 -0
  28. package/src/i18n/i18n.json +68 -0
  29. package/src/i18n.ts +25 -0
  30. package/src/icons.tsx +198 -0
  31. package/src/index.css +1288 -0
  32. package/src/index.tsx +47 -0
  33. package/src/middleware.ts +54 -0
  34. package/src/panels/LeftPanel.scss +17 -0
  35. package/src/panels/LeftPanel.tsx +48 -0
  36. package/src/panels/changes/ChangeStack.module.scss +3 -0
  37. package/src/panels/changes/ChangeStack.tsx +219 -0
  38. package/src/panels/changes/ChangeStackHeader.tsx +43 -0
  39. package/src/panels/changes/ChangesPanel.module.scss +18 -0
  40. package/src/panels/changes/ChangesPanel.tsx +90 -0
  41. package/src/panels/changes/ControlGroup.module.scss +17 -0
  42. package/src/panels/changes/ControlGroup.tsx +61 -0
  43. package/src/panels/changes/PropertyChange.module.scss +24 -0
  44. package/src/panels/changes/PropertyChange.tsx +159 -0
  45. package/src/panels/changes/UnknownChange.module.scss +46 -0
  46. package/src/panels/changes/UnknownChange.tsx +96 -0
  47. package/src/panels/changes/index.tsx +3 -0
  48. package/src/panels/changes/utils.ts +36 -0
  49. package/src/panels/index.ts +2 -0
  50. package/src/panels/outline/Funnel.tsx +64 -0
  51. package/src/panels/outline/NoControlFound.tsx +45 -0
  52. package/src/panels/outline/OutlinePanel.scss +98 -0
  53. package/src/panels/outline/OutlinePanel.tsx +38 -0
  54. package/src/panels/outline/Tree.tsx +393 -0
  55. package/src/panels/outline/index.ts +1 -0
  56. package/src/panels/outline/utils.ts +154 -0
  57. package/src/panels/properties/Clipboard.tsx +44 -0
  58. package/src/panels/properties/DeviceSelector.tsx +40 -0
  59. package/src/panels/properties/DeviceToggle.tsx +39 -0
  60. package/src/panels/properties/DropdownEditor.tsx +80 -0
  61. package/src/panels/properties/Funnel.tsx +64 -0
  62. package/src/panels/properties/HeaderField.tsx +150 -0
  63. package/src/panels/properties/IconValueHelp.tsx +203 -0
  64. package/src/panels/properties/InputTypeSelector.tsx +20 -0
  65. package/src/panels/properties/InputTypeToggle.module.scss +4 -0
  66. package/src/panels/properties/InputTypeToggle.tsx +79 -0
  67. package/src/panels/properties/InputTypeWrapper.tsx +259 -0
  68. package/src/panels/properties/NoControlSelected.tsx +38 -0
  69. package/src/panels/properties/Properties.scss +102 -0
  70. package/src/panels/properties/PropertiesList.tsx +162 -0
  71. package/src/panels/properties/PropertiesPanel.tsx +30 -0
  72. package/src/panels/properties/PropertyDocumentation.module.scss +81 -0
  73. package/src/panels/properties/PropertyDocumentation.tsx +174 -0
  74. package/src/panels/properties/SapUiIcon.scss +109 -0
  75. package/src/panels/properties/StringEditor.tsx +122 -0
  76. package/src/panels/properties/ViewChanger.module.scss +5 -0
  77. package/src/panels/properties/ViewChanger.tsx +143 -0
  78. package/src/panels/properties/constants.ts +2 -0
  79. package/src/panels/properties/index.tsx +1 -0
  80. package/src/panels/properties/propertyValuesCache.ts +39 -0
  81. package/src/panels/properties/types.ts +49 -0
  82. package/src/slice.ts +216 -0
  83. package/src/store.ts +19 -0
  84. package/src/use-local-storage.ts +40 -0
  85. package/src/use-window-size.ts +39 -0
  86. package/src/variables.scss +2 -0
  87. package/test/unit/App.test.tsx +207 -0
  88. package/test/unit/appIndex.test.ts +23 -0
  89. package/test/unit/components/ChangeIndicator.test.tsx +120 -0
  90. package/test/unit/components/ThemeSelector.test.tsx +41 -0
  91. package/test/unit/middleware.test.ts +116 -0
  92. package/test/unit/panels/changes/ChangesPanel.test.tsx +261 -0
  93. package/test/unit/panels/changes/utils.test.ts +40 -0
  94. package/test/unit/panels/outline/OutlinePanel.test.tsx +353 -0
  95. package/test/unit/panels/outline/__snapshots__/utils.test.ts.snap +36 -0
  96. package/test/unit/panels/outline/utils.test.ts +83 -0
  97. package/test/unit/panels/properties/Clipboard.test.tsx +18 -0
  98. package/test/unit/panels/properties/DropdownEditor.test.tsx +62 -0
  99. package/test/unit/panels/properties/Funnel.test.tsx +34 -0
  100. package/test/unit/panels/properties/HeaderField.test.tsx +36 -0
  101. package/test/unit/panels/properties/IconValueHelp.test.tsx +60 -0
  102. package/test/unit/panels/properties/InputTypeToggle.test.tsx +126 -0
  103. package/test/unit/panels/properties/InputTypeWrapper.test.tsx +430 -0
  104. package/test/unit/panels/properties/PropertyDocumentation.test.tsx +131 -0
  105. package/test/unit/panels/properties/StringEditor.test.tsx +107 -0
  106. package/test/unit/panels/properties/ViewChanger.test.tsx +190 -0
  107. package/test/unit/panels/properties/propertyValuesCache.test.ts +23 -0
  108. package/test/unit/slice.test.ts +268 -0
  109. package/test/unit/utils.tsx +67 -0
  110. package/test/utils/utils.tsx +25 -0
  111. package/tsconfig.eslint.json +4 -0
  112. package/tsconfig.json +39 -0
package/.eslintignore ADDED
@@ -0,0 +1 @@
1
+ dist
package/.eslintrc.js ADDED
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ extends: ['../../.eslintrc', 'plugin:react/recommended'],
3
+ parserOptions: {
4
+ project: './tsconfig.eslint.json',
5
+ tsconfigRootDir: __dirname
6
+ },
7
+ rules: {
8
+ // switched off temporarily until logger for webapps
9
+ 'no-console': 'off'
10
+ },
11
+ settings: {
12
+ 'react': {
13
+ 'version': 'detect'
14
+ }
15
+ }
16
+ };
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @sap-ux/control-property-editor
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0f2ac46a: Initial version of the @sap-ux/control-property-editor
package/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # Control Property Editor (Webapp)
2
+
3
+
4
+ Control Property Editor is a an webapp for Adaptation Projects.
5
+
6
+
7
+ ## License
8
+
9
+ Read [License](./LICENSE).
10
+
11
+ ## Keywords
12
+ React App
13
+ Control Property Editor
14
+ Visual Editor
15
+ SAP
16
+
package/dist/app.css ADDED
@@ -0,0 +1,2 @@
1
+ .ts-ContextualMenu-callout{box-shadow:none;background:var(--vscode-menu-background, var(--vscode-input-background));border:1px solid var(--vscode-focusBorder);border-radius:0}.ts-ContextualMenu-callout .ms-Callout-main{border-radius:0;background:var(--vscode-menu-background, var(--vscode-input-background));transform:translateZ(0)}.ts-ContextualMenu{background:var(--vscode-menu-background, var(--vscode-input-background))}.ts-ContextualMenu .ms-ContextualMenu-item>div,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link,.ts-ContextualMenu .ms-ContextualMenu-item>div>button{min-height:22px;height:auto}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link,.ts-ContextualMenu .ms-ContextualMenu-item>div>button{font-size:13px;color:var(--vscode-editorSuggestWidget-foreground);padding:0 3px 0 8px}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>div>button svg>path{fill:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link.is-disabled,.ts-ContextualMenu .ms-ContextualMenu-item>div>button.is-disabled{opacity:.2}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:hover,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:active,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link.is-expanded,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:hover,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:active,.ts-ContextualMenu .ms-ContextualMenu-item>div>button.is-expanded{background-color:var(--vscode-list-hoverBackground);color:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:hover:after,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:active:after,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link.is-expanded:after,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:hover:after,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:active:after,.ts-ContextualMenu .ms-ContextualMenu-item>div>button.is-expanded:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:hover svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:active svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link.is-expanded svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:hover svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:active svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>div>button.is-expanded svg>path{fill:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:hover~.ms-ContextualMenu-splitMenu,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:active~.ms-ContextualMenu-splitMenu,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link.is-expanded~.ms-ContextualMenu-splitMenu,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:hover~.ms-ContextualMenu-splitMenu,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:active~.ms-ContextualMenu-splitMenu,.ts-ContextualMenu .ms-ContextualMenu-item>div>button.is-expanded~.ms-ContextualMenu-splitMenu{background-color:var(--vscode-list-hoverBackground);color:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:hover~.ms-ContextualMenu-splitMenu:after,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:active~.ms-ContextualMenu-splitMenu:after,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link.is-expanded~.ms-ContextualMenu-splitMenu:after,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:hover~.ms-ContextualMenu-splitMenu:after,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:active~.ms-ContextualMenu-splitMenu:after,.ts-ContextualMenu .ms-ContextualMenu-item>div>button.is-expanded~.ms-ContextualMenu-splitMenu:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:hover~.ms-ContextualMenu-splitMenu svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:active~.ms-ContextualMenu-splitMenu svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link.is-expanded~.ms-ContextualMenu-splitMenu svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:hover~.ms-ContextualMenu-splitMenu svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>div>button:active~.ms-ContextualMenu-splitMenu svg>path,.ts-ContextualMenu .ms-ContextualMenu-item>div>button.is-expanded~.ms-ContextualMenu-splitMenu svg>path{fill:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>div>button{padding-right:0;width:calc(100% - 22px)}.ts-ContextualMenu .ms-ContextualMenu-item>div>button+span{display:none}.ts-ContextualMenu .ms-ContextualMenu-item .ms-ContextualMenu-splitMenu{padding:0;width:22px;min-width:22px}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:hover:after,.ts-ContextualMenu .ms-ContextualMenu-item>div:hover:after{content:"";position:absolute;inset:1px;z-index:1;outline:1px dashed var(--vscode-contrastActiveBorder);outline-offset:-1px;pointer-events:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:focus{background-color:var(--vscode-editorSuggestWidget-selectedBackground, var(--vscode-quickInputList-focusBackground));color:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:focus:after{content:"";position:absolute;inset:1px;z-index:1;outline:1px solid var(--vscode-focusBorder);outline-offset:-1px;pointer-events:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:focus svg>path{fill:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:focus:hover{background-color:var(--vscode-list-hoverBackground);color:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:focus:hover:after{content:"";position:absolute;inset:1px;z-index:1;outline:1px dashed var(--vscode-contrastActiveBorder);outline-offset:-1px;pointer-events:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:focus:hover svg>path{fill:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>div:hover,.ts-ContextualMenu .ms-ContextualMenu-item>div:focus{background:transparent}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus>button:first-child{background-color:var(--vscode-editorSuggestWidget-selectedBackground, var(--vscode-quickInputList-focusBackground));color:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus>button:first-child:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus>button:first-child svg>path{fill:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus>button:first-child~.ms-ContextualMenu-splitMenu{background-color:var(--vscode-editorSuggestWidget-selectedBackground, var(--vscode-quickInputList-focusBackground));color:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus>button:first-child~.ms-ContextualMenu-splitMenu:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus>button:first-child~.ms-ContextualMenu-splitMenu svg>path{fill:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus:hover>button:first-child{background-color:var(--vscode-list-hoverBackground);color:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus:hover>button:first-child:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus:hover>button:first-child svg>path{fill:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus:hover>button:first-child~.ms-ContextualMenu-splitMenu{background-color:var(--vscode-list-hoverBackground);color:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus:hover>button:first-child~.ms-ContextualMenu-splitMenu:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus:hover>button:first-child~.ms-ContextualMenu-splitMenu svg>path{fill:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>div:focus:after{content:"";position:absolute;inset:1px;z-index:1;outline:1px solid var(--vscode-focusBorder);outline-offset:-1px;pointer-events:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div:hover:after{content:"";position:absolute;inset:1px;z-index:1;outline:1px dashed var(--vscode-contrastActiveBorder);outline-offset:-1px;pointer-events:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div .ms-ContextualMenu-splitMenu.is-expanded{background-color:var(--vscode-editorSuggestWidget-selectedBackground, var(--vscode-quickInputList-focusBackground));color:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>div .ms-ContextualMenu-splitMenu.is-expanded:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div .ms-ContextualMenu-splitMenu.is-expanded svg>path{fill:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-ContextualMenu .ms-ContextualMenu-item>div .ms-ContextualMenu-splitMenu.is-expanded:hover{background-color:var(--vscode-list-hoverBackground);color:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>div .ms-ContextualMenu-splitMenu.is-expanded:hover:after{outline:none;border:none}.ts-ContextualMenu .ms-ContextualMenu-item>div .ms-ContextualMenu-splitMenu.is-expanded:hover svg>path{fill:var(--vscode-editorSuggestWidget-foreground)}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-header{padding:0 8px}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-header .ms-ContextualMenu-itemText{color:var(--vscode-editorSuggestWidget-foreground);font-size:11px;font-weight:700;text-transform:uppercase}.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-header .ms-ContextualMenu-linkContent,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-header .ms-ContextualMenu-itemText{height:22px;line-height:22px}.ts-ContextualMenu .ms-ContextualMenu-itemText{margin:0}.ts-ContextualMenu .ms-ContextualMenu-icon{display:flex;width:12px;height:12px;margin:0 6px 0 0}.ts-ContextualMenu .ms-ContextualMenu-icon svg{width:100%;height:100%}.ts-ContextualMenu .ms-ContextualMenu-divider{background-color:var(--vscode-editorWidget-border)}.ts-Menu-option{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.ts-Menu-option--highlighted{color:var(--vscode-editorSuggestWidget-highlightForeground);font-weight:700}.ts-ComboBox--selected .ts-Menu-option--highlighted,.ts-ContextualMenu .ms-ContextualMenu-item>.ms-ContextualMenu-link:focus .ts-Menu-option--highlighted,.ts-ContextualMenu .ms-ContextualMenu-item>div:focus .ts-Menu-option--highlighted{color:var(--vscode-editorSuggestWidget-focusHighlightForeground, var(--vscode-list-focusHighlightForeground))}.ts-icon{fill:var(--vscode-foreground)}.ts-message-wrapper .ts-message-body{display:flex;font-size:11px}.ts-message-wrapper .ts-message-body>span{padding-top:1px}.ts-message-wrapper .ts-message-body>i{margin:1px 2px 0 0}.ts-message-wrapper--error .ts-message-body{color:var(--vscode-errorForeground)}.ts-message-wrapper--warning .ts-message-body{color:var(--vscode-editorMarkerNavigationWarning-background)}.ts-message-wrapper--info .ts-message-body{color:var(--vscode-inputValidation-infoBorder)}.ts-message-wrapper--info .ts-icon svg path{fill:var(--vscode-inputValidation-infoBorder)}.ts-message-wrapper--horizontal{display:flex}.ts-message-wrapper--horizontal .ts-message-body{align-self:flex-end;margin:0 0 7px 5px}.ts-ComboBox .ms-ComboBox{background:var(--vscode-input-background);height:26px;padding:0 26px 0 8px;border-radius:2px}.ts-ComboBox .ms-ComboBox>.ms-Button--icon{right:0;width:26px;background:transparent;height:100%;text-align:center}.ts-ComboBox .ms-ComboBox>.ms-Button--icon i{height:100%;fill:var(--vscode-foreground)}.ts-ComboBox .ms-ComboBox>.ms-Button--icon i svg{height:100%;width:16px}.ts-ComboBox .ms-ComboBox input{background:transparent;font-family:var(--vscode-font-family)!important;font-size:13px;min-height:unset;padding:1px 0 1px 1px;outline:0}.ts-ComboBox .ms-ComboBox input,.ts-ComboBox .ms-ComboBox:hover input{color:var(--vscode-foreground)}.ts-ComboBox .ms-ComboBox input::-moz-placeholder,.ts-ComboBox .ms-ComboBox:hover input::-moz-placeholder{color:var(--vscode-input-placeholderForeground)}.ts-ComboBox .ms-ComboBox input::placeholder,.ts-ComboBox .ms-ComboBox:hover input::placeholder{color:var(--vscode-input-placeholderForeground)}.ts-ComboBox .ms-ComboBox:after{border:1px solid var(--vscode-editorWidget-border);border-radius:2px}.ts-ComboBox .ms-ComboBox:hover:after,.ts-ComboBox .ms-ComboBox:focus-within:after,.ts-ComboBox .ms-ComboBox.is-open:after{border-color:var(--vscode-focusBorder)}.ts-ComboBox--readonly .ms-ComboBox.is-disabled{background-color:var(--vscode-editor-background);font-style:italic}.ts-ComboBox--readonly .ms-ComboBox.is-disabled:after{border-style:dashed}.ts-ComboBox--readonly.ts-ComboBox--empty .ms-ComboBox:hover:after{border-color:var(--vscode-editorWidget-border)}.ts-ComboBox--disabled .ms-ComboBox.is-disabled{opacity:.5;background-color:var(--vscode-editor-inactiveSelectionBackground)}.ts-ComboBox--disabled .ms-ComboBox.is-disabled:after{border-color:var(--vscode-editorWidget-border)}.ts-ComboBox--readonly .ms-ComboBox:focus-within:after,.ts-ComboBox--disabled .ms-ComboBox:focus-within:after{border-style:solid;border-color:var(--vscode-focusBorder)!important}.ts-ComboBox--error .ms-ComboBox:after,.ts-ComboBox--error .ms-ComboBox:focus-within:after{border-color:var(--vscode-inputValidation-errorBorder)}.ts-ComboBox--warning .ms-ComboBox:after,.ts-ComboBox--warning .ms-ComboBox:focus-within:after{border-color:var(--vscode-inputValidation-warningBorder)}.ts-ComboBox--info .ms-ComboBox:after,.ts-ComboBox--info .ms-ComboBox:focus-within:after{border-color:var(--vscode-inputValidation-infoBorder)}.ts-Callout-Dropdown .ms-Callout-main{background:var(--vscode-menu-background, var(--vscode-input-background));border:1px solid var(--vscode-focusBorder);box-sizing:border-box;border-radius:0}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item{font-size:var(--vscode-font-size);font-family:var(--vscode-font-family);font-weight:var(--vscode-font-weight);min-height:22px;height:22px;line-height:22px;color:var(--vscode-editorSuggestWidget-foreground);background-color:transparent;letter-spacing:normal;border:0;padding:0 8px;font-size:13px}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:hover,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:focus,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:active,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option:hover,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option:focus,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option:active,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item:hover,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item:focus,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item:active,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:hover,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:focus,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:active,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option:hover,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option:focus,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option:active,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item:hover,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item:focus,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item:active{background-color:var(--vscode-list-hoverBackground);color:var(--vscode-editorSuggestWidget-foreground)}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:hover:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:focus:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:active:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option:hover:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option:focus:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option:active:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item:hover:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item:focus:after,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item:active:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:hover:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:focus:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:active:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option:hover:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option:focus:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option:active:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item:hover:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item:focus:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item:active:after{display:none}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:hover,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option:hover,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item:hover,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:hover,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option:hover,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item:hover{outline:1px dashed var(--vscode-contrastActiveBorder);outline-offset:-1px}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command .ts-Menu-option,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option .ts-Menu-option,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item .ts-Menu-option,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command .ts-Menu-option,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option .ts-Menu-option,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item .ts-Menu-option{font-size:13px}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command .ms-ComboBox-optionText,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command .ts-Menu-option,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option .ms-ComboBox-optionText,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option .ts-Menu-option,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item .ms-ComboBox-optionText,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item .ts-Menu-option,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command .ms-ComboBox-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command .ts-Menu-option,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option .ms-ComboBox-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option .ts-Menu-option,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item .ms-ComboBox-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item .ts-Menu-option,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item .ms-Dropdown-optionText{height:22px}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-option .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-item .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-option .ms-Dropdown-optionText,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-item .ms-Dropdown-optionText{margin:0}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Button--command:after,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Button--command:after{display:none}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ts-ComboBox--selected .ms-ComboBox-option.ms-Button--command,.ts-Callout-Dropdown .ms-Dropdown-items .ts-ComboBox--selected .ms-ComboBox-option.ms-Button--command{background-color:var(--vscode-editorSuggestWidget-selectedBackground, var(--vscode-quickInputList-focusBackground));color:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ts-ComboBox--selected .ms-Button--command,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ts-ComboBox--selected .ms-ComboBox-option:after,.ts-Callout-Dropdown .ms-Dropdown-items .ts-ComboBox--selected .ms-Button--command,.ts-Callout-Dropdown .ms-Dropdown-items .ts-ComboBox--selected .ms-ComboBox-option:after{border:none;outline:1px solid var(--vscode-focusBorder);outline-offset:-1px}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-header,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-header,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-header,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-header{min-height:22px;height:22px;line-height:22px;padding:0 8px;color:var(--vscode-editorSuggestWidget-foreground);font-size:11px;font-weight:700;text-transform:uppercase}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer>div .ms-ComboBox-header,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer>div .ms-Dropdown-header,.ts-Callout-Dropdown .ms-Dropdown-items>div .ms-ComboBox-header,.ts-Callout-Dropdown .ms-Dropdown-items>div .ms-Dropdown-header{border-top:1px solid var(--vscode-editorWidget-border)}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer>div:first-child .ms-ComboBox-header,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer>div:first-child .ms-Dropdown-header,.ts-Callout-Dropdown .ms-Dropdown-items>div:first-child .ms-ComboBox-header,.ts-Callout-Dropdown .ms-Dropdown-items>div:first-child .ms-Dropdown-header{border-top:none}.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-ComboBox-divider,.ts-Callout-Dropdown .ms-ComboBox-optionsContainer .ms-Dropdown-divider,.ts-Callout-Dropdown .ms-Dropdown-items .ms-ComboBox-divider,.ts-Callout-Dropdown .ms-Dropdown-items .ms-Dropdown-divider{background-color:var(--vscode-editorWidget-border)}.ts-Callout-Dropdown .ms-Dropdown-items>.ms-Button--command{display:block}.ts-Callout-Dropdown .ms-Dropdown-items>.ms-Button--command:focus{background:var(--vscode-editorSuggestWidget-selectedBackground, var(--vscode-quickInputList-focusBackground));color:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)));outline:1px solid var(--vscode-focusBorder);outline-offset:-1px}.ts-Callout-Dropdown .ms-Checkbox.ms-ComboBox-option .ms-Checkbox-checkbox,.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item .ms-Checkbox-checkbox{background:var(--vscode-editor-lineHighlightBorder);border-color:var(--vscode-editorWidget-border);height:16px;width:16px;margin-right:8px}.ts-Callout-Dropdown .ms-Checkbox.ms-ComboBox-option .ms-Checkbox-checkmark,.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item .ms-Checkbox-checkmark{color:var(--vscode-checkbox-border)}.ts-Callout-Dropdown .ms-Checkbox.ms-ComboBox-option.is-checked,.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item.is-checked{background-color:var(--vscode-editorSuggestWidget-selectedBackground, var(--vscode-quickInputList-focusBackground));color:var(--vscode-editorSuggestWidget-selectedForeground, var(--vscode-quickInputList-focusForeground, var(--vscode-editorSuggestWidget-foreground)))}.ts-Callout-Dropdown .ms-Checkbox.ms-ComboBox-option.is-checked .ms-Checkbox-checkmark,.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item.is-checked .ms-Checkbox-checkmark{color:var(--vscode-input-foreground)}.ts-Callout-Dropdown .ms-Checkbox.ms-ComboBox-option.is-checked:hover,.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item.is-checked:hover{outline:1px solid var(--vscode-focusBorder);outline-offset:-1px}.ts-Callout-Dropdown .ms-Checkbox.ms-ComboBox-option:hover .ms-Checkbox-checkbox,.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item:hover .ms-Checkbox-checkbox{border-color:var(--vscode-focusBorder)}.ts-Callout-Dropdown .ms-Checkbox.ms-ComboBox-option input{display:none}.ts-Callout-Dropdown .ms-Checkbox .ms-Checkbox-label{font-size:13px;padding:0}.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item input:focus+label .ms-Dropdown-optionText{z-index:1}.ts-Callout-Dropdown .ms-Checkbox.ms-Dropdown-item input:focus+label:before{outline:none;z-index:0;left:-8px;right:-8px;outline:1px solid var(--vscode-focusBorder);outline-offset:-1px}.option-loading{display:flex;padding-left:8px;width:262px;height:26px}.option-loading .uiLoaderXSmall .ms-Spinner-label{font-size:12px;font-weight:400}.ui-large-header{font-family:var(--vscode-font-family);font-weight:700;font-size:24px;font-style:normal;line-height:29px;color:var(--vscode-settings-headerForeground)}.ui-medium-header{font-family:var(--vscode-font-family);font-weight:700;font-size:14px;font-style:normal;line-height:16px;color:var(--vscode-settings-headerForeground)}.ui-small-header{font-family:var(--vscode-font-family);font-weight:700;font-size:13px;font-style:normal;line-height:15px;color:var(--vscode-settings-textInputForeground)}.ui-medium-text{font-family:var(--vscode-font-family);font-weight:400;font-size:13px;font-style:normal;line-height:18px;color:var(--vscode-settings-textInputForeground)}.ui-medium-italic-text{font-family:var(--vscode-font-family);font-weight:400;font-size:13px;font-style:italic;line-height:18px;color:var(--vscode-settings-textInputForeground)}.ui-small-text{font-family:var(--vscode-font-family);font-weight:400;font-size:11px;font-style:normal;line-height:15px;color:var(--vscode-settings-textInputForeground)}.ui-small-italic-text{font-family:var(--vscode-font-family);font-weight:400;font-size:11px;font-style:italic;line-height:15px;color:var(--vscode-settings-textInputForeground)}.ts-Callout button{font-size:var(--vscode-font-size);font-family:var(--vscode-font-family);font-weight:var(--vscode-font-weight)}.ui-large-header{font-family:var(--vscode-font-family);font-weight:700;font-size:24px;font-style:normal;line-height:29px;color:var(--vscode-settings-headerForeground)}.ui-medium-header{font-family:var(--vscode-font-family);font-weight:700;font-size:14px;font-style:normal;line-height:16px;color:var(--vscode-settings-headerForeground)}.ui-small-header{font-family:var(--vscode-font-family);font-weight:700;font-size:13px;font-style:normal;line-height:15px;color:var(--vscode-settings-textInputForeground)}.ui-medium-text{font-family:var(--vscode-font-family);font-weight:400;font-size:13px;font-style:normal;line-height:18px;color:var(--vscode-settings-textInputForeground)}.ui-medium-italic-text{font-family:var(--vscode-font-family);font-weight:400;font-size:13px;font-style:italic;line-height:18px;color:var(--vscode-settings-textInputForeground)}.ui-small-text{font-family:var(--vscode-font-family);font-weight:400;font-size:11px;font-style:normal;line-height:15px;color:var(--vscode-settings-textInputForeground)}.ui-small-italic-text{font-family:var(--vscode-font-family);font-weight:400;font-size:11px;font-style:italic;line-height:15px;color:var(--vscode-settings-textInputForeground)}.uiLoaderXLarge .ms-Spinner-circle{width:50px;height:50px}.uiLoaderXSmall .ms-Spinner-circle{border-width:1px;width:12px;height:12px}.ui-loader--delayed{opacity:0;animation:1s ease-in .3s normal forwards 1 ui-loader-fade-in;z-index:1}@keyframes ui-loader-fade-in{0%{opacity:0}to{opacity:1}}.ts-SelectBox .ms-Dropdown{background:var(--vscode-input-background)}.ts-SelectBox .ms-Dropdown .ms-Dropdown-title{background:transparent;height:26px;line-height:26px;border:1px solid transparent;padding:0 26px 0 8px;font-size:var(--vscode-font-size);font-family:var(--vscode-font-family);font-weight:var(--vscode-font-weight)}.ts-SelectBox .ms-Dropdown>.ms-Dropdown-caretDownWrapper{right:0;width:26px;background:transparent;height:100%;text-align:center}.ts-SelectBox .ms-Dropdown>.ms-Dropdown-caretDownWrapper i{height:100%;fill:var(--vscode-foreground)}.ts-SelectBox .ms-Dropdown>.ms-Dropdown-caretDownWrapper i svg{height:100%;width:16px}.ts-SelectBox .ms-Dropdown>.ms-Dropdown-caretDownWrapper i{margin-top:-1px}.ts-SelectBox .ms-Dropdown .ms-Dropdown-title,.ts-SelectBox .ms-Dropdown:hover .ms-Dropdown-title{color:var(--vscode-foreground)}.ts-SelectBox .ms-Dropdown .ms-Dropdown-titleIsPlaceHolder{color:var(--vscode-input-placeholderForeground)}.ts-SelectBox .ms-Dropdown:after{pointer-events:none;content:"";position:absolute;box-sizing:border-box;top:0;left:0;width:100%;height:100%;border:1px solid var(--vscode-editorWidget-border);border-radius:2px}.ts-SelectBox .ms-Dropdown.is-open:after,.ts-SelectBox .ms-Dropdown:focus:after,.ts-SelectBox .ms-Dropdown:hover:after{border-color:var(--vscode-focusBorder)}.ts-SelectBox .ms-Dropdown:focus:after,.ts-SelectBox .ms-Dropdown.is-open:after{border-style:solid}.ts-SelectBox--readonly .ms-Dropdown.is-disabled{background-color:var(--vscode-editor-background);font-style:italic}.ts-SelectBox--readonly .ms-Dropdown.is-disabled:after{border-style:dashed}.ts-SelectBox--readonly.ts-SelectBox--empty .ms-Dropdown:hover:after{border-color:var(--vscode-editorWidget-border)}.ts-SelectBox--disabled .ms-Dropdown.is-disabled{opacity:.5;background-color:var(--vscode-editor-inactiveSelectionBackground)}.ts-SelectBox--disabled .ms-Dropdown.is-disabled:after{border-color:var(--vscode-editorWidget-border)}.ts-SelectBox--readonly .ms-Dropdown:focus:after,.ts-SelectBox--disabled .ms-Dropdown:focus:after{border-style:solid;border-color:var(--vscode-focusBorder)!important}.ts-SelectBox--error .ms-Dropdown:after,.ts-SelectBox--error .ms-Dropdown.is-open:after{border-color:var(--vscode-inputValidation-errorBorder)}.ts-SelectBox--warning .ms-Dropdown:after,.ts-SelectBox--warning .ms-Dropdown.is-open:after{border-color:var(--vscode-inputValidation-warningBorder)}.ts-SelectBox--info .ms-Dropdown:after,.ts-SelectBox--info .ms-Dropdown.is-open:after{border-color:var(--vscode-inputValidation-infoBorder)}.ts-dropdown-item-blocker{position:absolute;inset:0}.ui-create-select-indicator-clear,.ui-create-select-indicator-dropdown{display:flex;height:16px;align-items:center;justify-content:center;align-content:center}.ui-create-select-indicator-loading{padding-right:8px}.ui-create-select__option{position:relative}.ui-create-select__option--is-selected .ts-Menu-option--highlighted{color:var(--vscode-editorSuggestWidget-focusHighlightForeground, var(--vscode-list-focusHighlightForeground))}.ui-create-select__option--is-selected:after{content:"";position:absolute;inset:1px;z-index:1;outline:1px dashed var(--vscode-contrastActiveBorder);outline-offset:-1px;pointer-events:none;border:none}.ui-create-select__option:hover:after{content:"";position:absolute;inset:1px;z-index:1;outline:1px dashed var(--vscode-contrastActiveBorder);outline-offset:-1px;pointer-events:none;border:none}.flexible-table{display:flex;flex-direction:column;width:100%;padding:1px;box-sizing:border-box}.flexible-table ul{margin-block-start:.1em;margin-block-end:0em;margin-inline-start:0px;margin-inline-end:0px;padding-inline-start:0px}.flexible-table-header{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;row-gap:5px;-moz-column-gap:10px;column-gap:10px}.flexible-table-header-primary-actions,.flexible-table-header-secondary-actions{display:flex;-moz-column-gap:10px;column-gap:10px}.flexible-table .ui-loader-blocker{margin:0}.flexible-table-content{display:flex;margin-top:10px;flex-direction:column;position:relative;border:1px solid var(--vscode-editorWidget-border)}.flexible-table-content.loading{min-height:60px}.flexible-table-content.empty-table{border:none;margin-top:0}.flexible-table-content.empty-table .flexible-table-content-table-title-row{border:1px solid var(--vscode-editorWidget-border)}.flexible-table-content.empty-table-header{margin-top:0}.flexible-table-content-table{overflow-y:auto;max-height:220px;overflow-x:hidden}.flexible-table-content-table-title-row{font-weight:700;background:var(--vscode-editor-background);border-bottom:1px solid var(--vscode-editorWidget-border)}.flexible-table-content-table-title-row-item-data-cells-value{width:100%}.flexible-table-content-table-row.even,.flexible-table-content-table-row-no-data.even{background:var(--vscode-editor-background)}.flexible-table-content-table-row.odd,.flexible-table-content-table-row-no-data.odd,.flexible-table-content-table-row.reverse-background.even,.flexible-table-content-table-row-no-data.reverse-background.even{background:var(--vscode-sideBar-background)}.flexible-table-content-table-row.reverse-background.odd,.flexible-table-content-table-row-no-data.reverse-background.odd{background:var(--vscode-editor-background)}.flexible-table-content-table-row.no-background,.flexible-table-content-table-row-no-data.no-background{background:none}.flexible-table-content-table-row.no-background .flexible-table-content-table-row-header,.flexible-table-content-table-row-no-data.no-background .flexible-table-content-table-row-header{background:transparent}.flexible-table-content-table-row.no-background.dragged,.flexible-table-content-table-row-no-data.no-background.dragged{background-color:var(--vscode-editor-background)}.flexible-table-content-table-row{border-bottom:1px solid var(--vscode-editorWidget-border)}.flexible-table-content-table-row:last-child{border-bottom:none}.flexible-table-content-table-row:focus{outline:none}.flexible-table-content-table-row:focus .flexible-table-content-table-row-wrapper{outline:1px solid var(--vscode-focusBorder)}.flexible-table-content-table-row.selected .flexible-table-content-table-row-wrapper{outline:1px solid var(--vscode-notebookStatusSuccessIcon-foreground, var(--vscode-successBackground, #84c881))}.flexible-table-content-table-row.dragged{z-index:1000000}.flexible-table-content-table-row.dragged.unlocked-axis .flexible-table-content-table-row-wrapper{outline:1px solid var(--vscode-notebookStatusSuccessIcon-foreground, var(--vscode-successBackground, #84c881))}.flexible-table-content-table-row.dragged.unlocked-axis.out-of-bounds .flexible-table-content-table-row-wrapper{outline:1px solid var(--vscode-notificationsWarningIcon-foreground, var(--vscode-warningBackground, #cca700))}.flexible-table-content-table-row.dragged.locked-axis .flexible-table-content-table-row-wrapper{box-shadow:0 5px 15px #00000026}.flexible-table-content-table-row-item-wrapper{display:flex;width:100%}.flexible-table-content-table-row-no-data{padding:5px}.flexible-table-content-table-row-header{display:flex;justify-content:space-between;flex-wrap:wrap;background-color:var(--vscode-debugView-stateLabelBackground);padding:5px 10px;align-items:center;row-gap:5px}.flexible-table-content-table-row-header-text-content{font-size:13px;font-weight:700}.flexible-table-content-table-row-header-actions{display:flex;flex-direction:row;flex-wrap:wrap}.flexible-table-content-table-row-header-actions-icon{width:16px}.flexible-table-content-table-row-header-actions-divider{margin:0 10px;height:20px}.flexible-table-content-table-row-header-actions-item-wrapper{display:flex}.flexible-table-content-table-row,.flexible-table-content-table-title-row{padding:0;margin:0;list-style-type:none}.flexible-table-content-table-row-wrapper,.flexible-table-content-table-title-row-wrapper{outline-offset:-1px;display:flex;flex-direction:column}.flexible-table-content-table-row-wrapper-cells,.flexible-table-content-table-title-row-wrapper-cells{display:flex;align-items:stretch;justify-content:space-between}.flexible-table-content-table-row-wrapper.inline-layout-cells,.flexible-table-content-table-title-row-wrapper.inline-layout-cells{flex-direction:row}.flexible-table-content-table-row-wrapper.wrapping-layout-cells,.flexible-table-content-table-title-row-wrapper.wrapping-layout-cells{flex-direction:column}.flexible-table-content-table-row-wrapper.wrapping-layout .flexible-table-content-table-row-header,.flexible-table-content-table-title-row-wrapper.wrapping-layout .flexible-table-content-table-row-header{background-color:transparent;border:1px solid var(--vscode-editorWidget-border);padding:4px 9px}.flexible-table-content-table-row-wrapper.wrapping-layout .flexible-table-content-table-row-wrapper-cells,.flexible-table-content-table-title-row-wrapper.wrapping-layout .flexible-table-content-table-row-wrapper-cells{border:1px solid var(--vscode-editorWidget-border);border-top:0}.flexible-table-content-table-row-item-title,.flexible-table-content-table-title-row-item-title{height:18px;font-weight:700;padding:0 5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.flexible-table-content-table-row-item-index,.flexible-table-content-table-title-row-item-index{border-right:1px solid var(--vscode-editorWidget-border);display:flex;flex-direction:column;justify-content:space-around}.flexible-table-content-table-row-item-index-value,.flexible-table-content-table-title-row-item-index-value{text-align:center;width:40px}.flexible-table-content-table-row-item-data-cells,.flexible-table-content-table-title-row-item-data-cells{display:flex;width:100%}.flexible-table-content-table-row-item-data-cells.in-row,.flexible-table-content-table-title-row-item-data-cells.in-row{flex-direction:row}.flexible-table-content-table-row-item-data-cells.in-column,.flexible-table-content-table-title-row-item-data-cells.in-column{flex-direction:column}.flexible-table-content-table-row-item-data-cells.in-column .flexible-table-content-table-row-item-data-cells-wrapper,.flexible-table-content-table-title-row-item-data-cells.in-column .flexible-table-content-table-row-item-data-cells-wrapper{width:auto;border-right:none}.flexible-table-content-table-row-item-data-cells.dynamic,.flexible-table-content-table-title-row-item-data-cells.dynamic{flex-direction:row;flex-wrap:wrap;width:auto;padding:5px 4px 4px}.flexible-table-content-table-row-item-data-cells-value,.flexible-table-content-table-title-row-item-data-cells-value{padding:5px}.flexible-table-content-table-row-item-data-cells-wrapper,.flexible-table-content-table-title-row-item-data-cells-wrapper{border-right:1px solid var(--vscode-editorWidget-border);padding:0;display:flex;flex-direction:column;justify-content:flex-start;width:100%}.flexible-table-content-table-row-item-data-cells-wrapper:last-of-type,.flexible-table-content-table-title-row-item-data-cells-wrapper:last-of-type{border-right:none}.flexible-table-content-table-row-item-data-cells-wrapper.not-editable,.flexible-table-content-table-title-row-item-data-cells-wrapper.not-editable{padding:10px}.flexible-table-content-table-row-item-data-cells-wrapper.not-editable span:not(:last-child),.flexible-table-content-table-title-row-item-data-cells-wrapper.not-editable span:not(:last-child){padding-bottom:4px}.flexible-table-content-table-row-item-data-cells-wrapper.not-editable span i,.flexible-table-content-table-title-row-item-data-cells-wrapper.not-editable span i{vertical-align:middle}.flexible-table-content-table-row-item-data-cells-wrapper.not-editable span i svg>path,.flexible-table-content-table-row-item-data-cells-wrapper.not-editable span i svg>rect,.flexible-table-content-table-title-row-item-data-cells-wrapper.not-editable span i svg>path,.flexible-table-content-table-title-row-item-data-cells-wrapper.not-editable span i svg>rect{fill:var(--vscode-textLink-activeForeground)}.flexible-table-content-table-row-item-actions,.flexible-table-content-table-title-row-item-actions{display:flex;flex-direction:row;justify-content:flex-start;min-width:87px;border-left:1px solid var(--vscode-editorWidget-border);padding:5px;align-items:center}.flexible-table-content-table-row-item-actions-icon,.flexible-table-content-table-title-row-item-actions-icon{width:16px}.flexible-table-content-table-row-item-actions-divider,.flexible-table-content-table-title-row-item-actions-divider{margin:0 10px;height:20px}.flexible-table-content-table.dragged .flexible-table-content-table-row.highlight-drop-warning .flexible-table-content-table-row-wrapper:before{position:absolute;width:100%;height:100%;box-sizing:border-box;content:" ";border:1px solid var(--vscode-notificationsWarningIcon-foreground, var(--vscode-warningBackground, #cca700))}.flexible-table.wrapping-layout .flexible-table-header{padding-right:5px;box-sizing:border-box}.flexible-table.wrapping-layout .flexible-table-content{border:none}.flexible-table.wrapping-layout .flexible-table-content-table{padding-right:5px;box-sizing:border-box}.flexible-table.wrapping-layout .flexible-table-content-table-row,.flexible-table.wrapping-layout .flexible-table-content-table-title-row,.flexible-table.wrapping-layout .flexible-table-content-table-row-item-index,.flexible-table.wrapping-layout .flexible-table-content-table-title-row-item-index{border:none}.flexible-table.wrapping-layout .flexible-table-content-table-row-item-data-cells-wrapper,.flexible-table.wrapping-layout .flexible-table-content-table-title-row-item-data-cells-wrapper{border-right:none}.flexible-table.wrapping-layout .flexible-table-content-table-row{margin-bottom:10px}.flexible-table.wrapping-layout .flexible-table-content-table-row:last-child{margin-bottom:0}li.flexible-table-content-table-row.dragged{border:none;margin-bottom:0}li.flexible-table-content-table-row.dragged .flexible-table-content-table-row-wrapper.wrapping-layout .flexible-table-content-table-row-item-index{border:none}li.flexible-table-content-table-row.dragged .flexible-table-content-table-row-wrapper.wrapping-layout .flexible-table-content-table-row-item-data-cells-wrapper{border-right:none}.small-cell1{width:30%}.small-cell2{width:40%}.small-cell3{width:30%}.flexible-table.readonly .flexible-table-content-table-title-row-item-index-value,.flexible-table.readonly .flexible-table-content-table-title-row-item-data-cells-value,.flexible-table.readonly .flexible-table-content-table-row-header-text-content,.flexible-table.readonly .flexible-table-content-table-row-item-index-value,.flexible-table.readonly .flexible-table-content-table-row-item-title{opacity:.4}.ui-large-header{font-family:var(--vscode-font-family);font-weight:700;font-size:24px;font-style:normal;line-height:29px;color:var(--vscode-settings-headerForeground)}.ui-medium-header{font-family:var(--vscode-font-family);font-weight:700;font-size:14px;font-style:normal;line-height:16px;color:var(--vscode-settings-headerForeground)}.ui-small-header{font-family:var(--vscode-font-family);font-weight:700;font-size:13px;font-style:normal;line-height:15px;color:var(--vscode-settings-textInputForeground)}.ui-medium-text{font-family:var(--vscode-font-family);font-weight:400;font-size:13px;font-style:normal;line-height:18px;color:var(--vscode-settings-textInputForeground)}.ui-medium-italic-text{font-family:var(--vscode-font-family);font-weight:400;font-size:13px;font-style:italic;line-height:18px;color:var(--vscode-settings-textInputForeground)}.ui-small-text{font-family:var(--vscode-font-family);font-weight:400;font-size:11px;font-style:normal;line-height:15px;color:var(--vscode-settings-textInputForeground)}.ui-small-italic-text{font-family:var(--vscode-font-family);font-weight:400;font-size:11px;font-style:italic;line-height:15px;color:var(--vscode-settings-textInputForeground)}.uiList-group-entry{padding:0 20px 0 10px;font-size:13px;font-weight:400;height:20px}.uiList-group-entry:hover{cursor:pointer;background-color:var(--vscode-dropdown-background);color:var(--vscode-dropdown-foreground)}@keyframes delayedFadeOut{0%{opacity:1}99%{opacity:0;visibility:visible}to{visibility:hidden}}.section{display:flex;flex-direction:column;overflow:hidden}.section__header>div{flex:0 1 auto;background:var(--vscode-sideBarSectionHeader-background);min-height:40px;display:flex;align-items:center;padding:0 1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--vscode-sideBarTitle-foreground)}.section__header__title{width:100%;overflow:hidden;text-overflow:ellipsis}.section__header__title.ui-medium-header{line-height:normal}.section__body{margin:1rem .75rem;flex:1 1 auto;padding:0 .25rem;height:100%}.section__body>.ui-loader-blocker:before{z-index:1}.section--clean .section__body{margin:0;padding:0}.section--scrollable .section__body{overflow:auto}.section--extended .section__header{background-color:var(--vscode-sideBar-background)}.section__collapse{position:absolute;top:0;left:0;width:13px}.section--hidden{animation:.5s delayedFadeOut;animation-fill-mode:forwards}@keyframes delayedFadeOut{0%{opacity:1}99%{opacity:0;visibility:visible}to{visibility:hidden}}.splitter{background-color:var(--vscode-panelSection-border);position:absolute;outline:none}.splitter--horizontal{top:0;bottom:0;cursor:ew-resize}.splitter--horizontal:after{border-left:1px solid var(--vscode-contrastBorder);border-right:1px solid var(--vscode-contrastBorder)}.splitter--vertical{cursor:ns-resize;left:0;right:0}.splitter--vertical:after{border-top:1px solid var(--vscode-contrastBorder);border-bottom:1px solid var(--vscode-contrastBorder)}.splitter--compact{background:var(--vscode-editorWidget-border)}.splitter--compact.splitter--vertical .splitter__grip{height:3px}.splitter--compact.splitter--horizontal .splitter__grip{width:12px}.splitter--compact.splitter--horizontal .splitter__grip svg{transform-origin:5px 7px}.splitter--toggle{cursor:pointer}.splitter--toggle .splitter__grip{height:12px}.splitter--resize.splitter--horizontal{cursor:ew-resize}.splitter--resize.splitter--vertical{cursor:ns-resize}.splitter:after{content:"";inset:0;position:absolute}.splitter__grip{position:absolute;height:16px;top:50%;transform:translateY(-50%);left:0;right:0}.splitter+.section .section__header__title,.splitter+.section .section__body{padding-left:7px}.splitter--toggle+.section .section__header__title,.splitter--toggle+.section .section__body{padding:0;margin:0}.splitter:hover{background-color:var(--vscode-focusBorder)}.splitter:hover .splitter__grip svg path{fill:var(--vscode-button-foreground)}.splitter--horizontal:hover:after{border-left:1px dashed var(--vscode-contrastActiveBorder);border-right:1px dashed var(--vscode-contrastActiveBorder)}.splitter--horizontal:focus:after{border-left:1px solid var(--vscode-focusBorder);border-right:1px solid var(--vscode-focusBorder)}.splitter--vertical:hover:after{border-top:1px dashed var(--vscode-contrastActiveBorder);border-bottom:1px dashed var(--vscode-contrastActiveBorder)}.splitter--vertical:focus:after{border-top:1px solid var(--vscode-focusBorder);border-bottom:1px solid var(--vscode-focusBorder)}.splitter--hidden{animation:.5s delayedFadeOut;animation-fill-mode:forwards}.splitter i.ts-icon{display:flex;height:100%}.splitter i.ts-icon svg{height:100%;width:100%}.splitter--toggle.splitter--horizontal .splitter__grip svg{transform:rotate(180deg)}.splitter--toggle.splitter--vertical .splitter__grip svg{transform:rotate(270deg)}.splitter--resize.splitter--standard.splitter--vertical .splitter__grip svg,.splitter--resize.splitter--compact.splitter--horizontal .splitter__grip svg{transform:rotate(90deg)}.splitter__overlay{position:absolute;z-index:1;inset:0;background:transparent}.splitter__overlay--horizontal{cursor:ew-resize}.splitter__overlay--vertical{cursor:ns-resize}.sections__item--hidden .splitter--toggle.splitter--horizontal .splitter__grip svg{transform:rotate(0) translate(-1px)}.sections__item--hidden .splitter--toggle.splitter--vertical .splitter__grip svg{transform:rotate(90deg) translate(-1px)}.sections{position:relative;overflow:hidden}.sections--horizontal,.sections--horizontal .sections__item{height:100%}.sections--vertical,.sections--vertical .sections__item{width:100%}.sections .sections__item{position:absolute}.sections--animated .sections__item{transition:all .3s ease 0s}.sections--animated.sections--horizontal .sections__item{transition-property:transform,left,right}.sections--animated.sections--vertical .sections__item{transition-property:transform,top,bottom}.sections.sections--horizontal .sections__item--toggle.sections__item--hidden{transform:translate(100%)}.sections.sections--horizontal .sections__item--toggle{max-width:calc(100% - 24px)}.sections.sections--horizontal>.sections__item:first-child{padding-right:7px}.sections.sections--vertical .sections__item--toggle.sections__item--hidden{transform:translateY(100%)}.sections.sections--vertical .sections__item--toggle{max-height:calc(100% - 24px)}.ui-DatePicker{display:flex;align-items:center;height:24px;max-height:24px;min-height:24px;margin:0}.ui-DatePicker-toggle{position:relative;margin-left:10px}.ui-DatePicker-toggle input{position:absolute;left:0;top:0;width:100%;height:100%;opacity:0;cursor:pointer}.ui-DatePicker-toggle input::-webkit-calendar-picker-indicator{position:absolute;left:0;top:0;width:100%;height:100%;margin:0;padding:0;cursor:pointer}body[data-vscode-theme-kind=vscode-dark] .ui-DatePicker-toggle input{color-scheme:dark}.ms-DetailsHeader-cell .ms-Checkbox input,.ms-DetailsList .ms-Checkbox input{display:none}.ms-DetailsHeader-cell .ms-Checkbox-label,.ms-DetailsList .ms-Checkbox-label{pointer-events:none}.ms-DetailsList-contentWrapper .ms-DetailsRow-check{height:100%}.ms-DetailsList .ms-TextField,.ms-DetailsList .ms-Dropdown,.ms-DetailsList .ts-ComboBox,.ms-DetailsList .ui-DatePicker{margin:-5px}.ms-DetailsList .ms-List-page .ms-List-cell:nth-child(odd) .ms-FocusZone{background:var(--vscode-peekViewResult-background)}.ms-DetailsList .ms-ComboBox-container{position:relative}.ms-DetailsList .ms-ComboBox-container>div[role=alert]{position:absolute;display:inline-block;left:0;right:0;top:26px;white-space:pre-wrap}.ms-DetailsList-row-number{text-align:center}.ms-DetailsHeader-cell[data-item-key=__row_number__] .ms-DetailsHeader-cellTitle{justify-content:center}.ms-ScrollablePane .ms-FocusZone{color:var(--vscode-foreground);background:transparent;border-bottom:0}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader .data-editor__header-cell{display:flex;vertical-align:baseline;overflow:hidden;position:relative;justify-content:center}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader .data-editor__header-cell .type-icon{padding:3px 10px 0 0}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader .data-editor__header-cell span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader .data-editor__header-cell .not-editable-container{margin-left:auto}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader .data-editor__header-cell .not-editable-container .not-editable-icon{padding:3px 0 0 10px}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader .data-editor__header-cell .editable-container{margin-left:auto}.ms-ScrollablePane .ms-FocusZone .ms-DetailsHeader-cell,.ms-ScrollablePane .ms-FocusZone .ms-DetailsHeader-cell:hover,.ms-ScrollablePane .ms-FocusZone .ms-DetailsHeader-cell .ms-Icon{color:var(--vscode-foreground);font-weight:700;background:transparent}.ms-ScrollablePane .ms-FocusZone:focus:hover{background:transparent}.ms-ScrollablePane .ms-FocusZone:focus .ms-DetailsRow-cell{color:var(--vscode-foreground)}.ms-ScrollablePane .ms-FocusZone .ms-DetailsHeader-cell{box-shadow:inset 0 1px 0 var(--vscode-editorWidget-border),inset 0 -1px 0 var(--vscode-editorWidget-border),inset -1px 0 0 var(--vscode-editorWidget-border)}.ms-ScrollablePane .ms-FocusZone .ms-DetailsHeader-cell:first-of-type{box-shadow:inset 0 1px 0 var(--vscode-editorWidget-border),inset 0 -1px 0 var(--vscode-editorWidget-border),inset -1px 0 0 var(--vscode-editorWidget-border),inset 1px 0 0 var(--vscode-editorWidget-border)}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader .ms-DetailsHeader-cell.selected{box-shadow:inset 0 1px 0 var(--vscode-editorWidget-border),inset 0 -3px 0 var(--vscode-focusBorder),inset 0 -1px 0 var(--vscode-editorWidget-border),inset -1px 0 0 var(--vscode-editorWidget-border)}.ms-ScrollablePane .ms-FocusZone .ms-DetailsRow-cell.uneditable{font-style:italic;-webkit-user-select:text;-moz-user-select:text;user-select:text;cursor:auto}.ms-ScrollablePane .ms-FocusZone>.ms-DetailsRow-cell{margin-right:-1px}.ms-ScrollablePane .ms-FocusZone .ms-DetailsRow{box-shadow:inset 1px 0 0 var(--vscode-editorWidget-border)}.ms-ScrollablePane .ms-FocusZone .ms-DetailsRow-fields{box-shadow:inset -1px 0 0 var(--vscode-editorWidget-border),inset 1px 0 0 var(--vscode-editorWidget-border)}.ms-ScrollablePane .ms-FocusZone .ms-List-page:last-of-type{padding-bottom:1px;box-shadow:inset 0 -1px 0 var(--vscode-editorWidget-border)}.ms-ScrollablePane .ms-FocusZone .ms-DetailsRow-fields .ms-DetailsRow-cell:last-child{padding-right:15px}.ms-ScrollablePane .ms-FocusZone .ms-DetailsRow-check--isHeader{box-shadow:inset 1px 0 0 var(--vscode-editorWidget-border)}.ms-ScrollablePane .ms-FocusZone.ms-DetailsHeader{color:var(--vscode-foreground);background:var(--vscode-editor-background);border-bottom:0;padding-top:0}.ms-ScrollablePane .ms-DetailsRow-cell span:focus-visible{outline:none}.ms-ScrollablePane .ms-DetailsRow.is-selected .ms-DetailsRow-cellCheck{margin-top:0;background-color:var(--vscode-focusBorder)}.ms-Fabric--isFocusVisible .ms-DetailsHeader-check:focus:after,.ms-Fabric--isFocusVisible .ms-DetailsList .ms-DetailsRow:focus:after,.ms-Fabric--isFocusVisible .ms-DetailsList .ms-DetailsRow-cell:focus:after{border-color:var(--vscode-focusBorder);outline-color:var(--vscode-focusBorder);inset:0 0 1px}.ms-Fabric--isFocusVisible .ms-DetailsList .ms-DetailsRow-cell:focus:after{inset:1px}.ms-Fabric--isFocusVisible .ms-DetailsHeader-check:focus:after{z-index:20}.table-item-warning{color:var(--vscode-editorMarkerNavigationWarning-background)}.ui-toggle-group-option{height:22px;width:22px;border-radius:1px;font-style:normal;font-weight:700;font-size:13px;line-height:18px;display:flex;align-items:center;text-align:center;justify-content:center;color:var(--vscode-foreground);border:none;background-color:transparent;position:relative}.ui-toggle-group-option:not(:last-child){margin:0 3px 0 0}.ui-toggle-group-option:hover{cursor:pointer;background-color:var(--vscode-menubar-selectionBackground);outline:1px dashed var(--vscode-contrastActiveBorder)}.ui-toggle-group-option:focus{border-radius:0;outline:transparent}.ui-toggle-group-option--focused:focus-visible:after{content:"";position:absolute;border:none;z-index:1;outline:1px solid var(--vscode-contrastActiveBorder, var(--vscode-button-background));inset:-1px}.ui-toggle-group-option--selected{background-color:var(--vscode-button-background);color:var(--vscode-button-foreground);outline:1px solid var(--vscode-contrastActiveBorder)}.ui-toggle-group-option--selected:hover{background-color:var(--vscode-button-hoverBackground);outline:1px dashed var(--vscode-contrastActiveBorder)}.ui-toggle-group-option--selected .ui-toggle-group-option-content-icon svg>path,.ui-toggle-group-option--selected .ui-toggle-group-option-content-icon svg>rect{fill:var(--vscode-button-foreground)}.ui-toggle-group-option--disabled{opacity:.5;background-color:transparent}.ui-toggle-group-option--disabled:hover{background-color:transparent;cursor:initial}.ui-toggle-group-option-content-icon{display:flex}.ui-toggle-group,.ui-toggle-group-label{margin-top:0}.ui-toggle-group-container{display:flex;flex-direction:row;flex-wrap:wrap}.ui-toolbar{position:fixed;top:0;left:0;width:100%;z-index:20}.ui-toolbar__container{overflow-x:scroll}.ui-toolbar__content{border-bottom:1px solid var(--vscode-contrastBorder, var(--vscode-editorIndentGuide-background));background-color:var(--vscode-editor-background);display:flex;flex-wrap:wrap;min-width:400px}.ui-toolbar .ui-divider{display:inline-block;height:20px;margin:3px 10px;border-right:1px solid var(--vscode-contrastBorder, var(--vscode-editorIndentGuide-background))}.ui-toolbar__column{display:flex;flex-grow:1}.ui-toolbar__column__content{display:flex;margin:6px 20px;height:28px}@media screen and (max-width: 640px){.ui-toolbar .ui-toolbar__content{flex-wrap:wrap}.ui-toolbar div.ui-divider.hidden-xs{display:none}}.loading-button{position:relative;pointer-events:none}.loading-button .ms-Button-icon{visibility:hidden}.loading-button .ms-Spinner{position:absolute;inset:0}.ui-translatable__input{position:relative}.ui-translatable__input .ms-TextField-suffix{background:transparent}.ui-translatable__button{position:absolute;right:0;top:0}.ui-translatable__button .ms-Button{margin:1px;box-sizing:content-box}.ui-translatable__callout .ms-Callout-main{padding:0}.ui-translatable__message{padding:20px 10px;text-align:center;font-size:var(--vscode-font-size);word-break:break-word}.ui-translatable__message .ui-translatable__actions{margin-top:16px}.ui-translatable__message .ui-translatable__actions>.ms-Button{margin-right:16px}.ui-translatable__message .ui-translatable__actions>.ms-Button:last-child{margin-right:0}.ui-treeDropdown{position:relative}.ui-treeDropdown-with-label{margin-top:29px}.ui-treeDropdown-wrapper{position:relative}.ui-treeDropdown-wrapper input{padding:0 26px 0 8px;font-family:var(--vscode-font-family)}.ui-treeDropdown-wrapper.disabled>button{z-index:-1}.ui-treeDropdown-wrapper.readonly>button{pointer-events:none}.ui-treeDropdown-caret{position:absolute;width:24px;height:24px;top:0;right:0;cursor:pointer;box-sizing:border-box}.ui-treeDropdown-caret:hover,.ui-treeDropdown-caret:active,.ui-treeDropdown-caret:focus{background-color:transparent}.ui-treeDropdown label{position:absolute;bottom:26px;margin-top:0!important;font-family:var(--vscode-font-family);font-size:13px;font-weight:700;box-sizing:border-box;box-shadow:none;margin-right:0;margin-bottom:0;margin-left:0;display:block;padding:4px 0;overflow-wrap:break-word}.ui-treeDropdown label.required:after{content:" *";color:var(--vscode-inputValidation-errorBorder)}.ui-treeDropdown label.disabled{opacity:.4}.UIActionCallout-callout{margin-top:12px;max-height:51px;cursor:pointer}.UIActionCallout-callout:hover .ms-Callout-main,.UIActionCallout-callout:hover .ms-Callout-beak{background:var(--vscode-list-hoverBackground)}.UIActionCallout-callout:hover .UIActionCallout-link{text-decoration:none}.UIActionCallout-callout .ms-Callout-beak{left:12px!important}.UIActionCallout-subText{padding-top:5px;font-size:11px}.UIActionCallout-link{vertical-align:top;padding-left:5px;font-size:13px;font-weight:700;pointer-events:none}html,#root{height:100%}body{margin:0;height:100%;font-family:var(--vscode-font-family)}html,body{font-family:var(--vscode-font-family);color:var(--vscode-foreground)}code{font-family:var(--vscode-font-family)}html[data-theme=dark]{--vscode-font-family: -apple-system, BlinkMacSystemFont, sans-serif;--vscode-font-weight: normal;--vscode-font-size: 13px;--vscode-editor-font-family: Menlo, Monaco, "Courier New", monospace;--vscode-editor-font-weight: normal;--vscode-editor-font-size: 12px;--vscode-foreground: #cccccc;--vscode-errorForeground: #f48771;--vscode-descriptionForeground: rgba(204, 204, 204, .7);--vscode-icon-foreground: #c5c5c5;--vscode-focusBorder: #007fd4;--vscode-textSeparator-foreground: rgba(255, 255, 255, .18);--vscode-textLink-foreground: #3794ff;--vscode-textLink-activeForeground: #3794ff;--vscode-textPreformat-foreground: #d7ba7d;--vscode-textBlockQuote-background: rgba(127, 127, 127, .1);--vscode-textBlockQuote-border: rgba(0, 122, 204, .5);--vscode-textCodeBlock-background: rgba(10, 10, 10, .4);--vscode-widget-shadow: rgba(0, 0, 0, .36);--vscode-input-background: #3c3c3c;--vscode-input-foreground: #cccccc;--vscode-inputOption-activeBorder: rgba(0, 122, 204, 0);--vscode-inputOption-activeBackground: rgba(0, 127, 212, .4);--vscode-inputOption-activeForeground: #ffffff;--vscode-input-placeholderForeground: #a6a6a6;--vscode-inputValidation-infoBackground: #063b49;--vscode-inputValidation-infoBorder: #007acc;--vscode-inputValidation-warningBackground: #352a05;--vscode-inputValidation-warningBorder: #b89500;--vscode-inputValidation-errorBackground: #5a1d1d;--vscode-inputValidation-errorBorder: #be1100;--vscode-dropdown-background: #3c3c3c;--vscode-dropdown-foreground: #f0f0f0;--vscode-dropdown-border: #3c3c3c;--vscode-checkbox-background: #3c3c3c;--vscode-checkbox-foreground: #f0f0f0;--vscode-checkbox-border: #3c3c3c;--vscode-button-foreground: #ffffff;--vscode-button-background: #0e639c;--vscode-button-hoverBackground: #1177bb;--vscode-button-secondaryForeground: #ffffff;--vscode-button-secondaryBackground: #3a3d41;--vscode-button-secondaryHoverBackground: #45494e;--vscode-badge-background: #4d4d4d;--vscode-badge-foreground: #ffffff;--vscode-scrollbar-shadow: #000000;--vscode-scrollbarSlider-background: rgba(121, 121, 121, .4);--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, .4);--vscode-progressBar-background: #0e70c0;--vscode-editorError-foreground: #f48771;--vscode-editorWarning-foreground: #cca700;--vscode-editorInfo-foreground: #75beff;--vscode-editorHint-foreground: rgba(238, 238, 238, .7);--vscode-sash-hoverBorder: #007fd4;--vscode-editor-background: #1e1e1e;--vscode-editor-foreground: #d4d4d4;--vscode-editorWidget-background: #252526;--vscode-editorWidget-foreground: #cccccc;--vscode-editorWidget-border: #454545;--vscode-quickInput-background: #252526;--vscode-quickInput-foreground: #cccccc;--vscode-quickInputTitle-background: rgba(255, 255, 255, .1);--vscode-quickInput-list\.focusBackground: #062f4a;--vscode-pickerGroup-foreground: #3794ff;--vscode-pickerGroup-border: #3f3f46;--vscode-editor-selectionBackground: #264f78;--vscode-editor-inactiveSelectionBackground: #3a3d41;--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, .15);--vscode-editor-findMatchBackground: #515c6a;--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, .33);--vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, .4);--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, .22);--vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, .25);--vscode-editorHoverWidget-background: #252526;--vscode-editorHoverWidget-foreground: #cccccc;--vscode-editorHoverWidget-border: #454545;--vscode-editorHoverWidget-statusBarBackground: #2c2c2d;--vscode-editorLink-activeForeground: #4e94ce;--vscode-editorInlineHint-foreground: #252526;--vscode-editorInlineHint-background: #cccccc;--vscode-editorLightBulb-foreground: #ffcc00;--vscode-editorLightBulbAutoFix-foreground: #75beff;--vscode-diffEditor-insertedTextBackground: rgba(155, 185, 85, .2);--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, .2);--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, .2);--vscode-list-focusOutline: #007fd4;--vscode-list-activeSelectionBackground: #094771;--vscode-list-activeSelectionForeground: #ffffff;--vscode-list-inactiveSelectionBackground: #37373d;--vscode-list-hoverBackground: #2a2d2e;--vscode-list-dropBackground: #383b3d;--vscode-list-highlightForeground: #0097fb;--vscode-list-invalidItemForeground: #b89500;--vscode-list-errorForeground: #f88070;--vscode-list-warningForeground: #cca700;--vscode-listFilterWidget-background: #653723;--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);--vscode-listFilterWidget-noMatchesOutline: #be1100;--vscode-list-filterMatchBackground: rgba(234, 92, 0, .33);--vscode-tree-indentGuidesStroke: #585858;--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, .13);--vscode-list-deemphasizedForeground: #8c8c8c;--vscode-menu-foreground: #cccccc;--vscode-menu-background: #252526;--vscode-menu-selectionForeground: #ffffff;--vscode-menu-selectionBackground: #094771;--vscode-menu-separatorBackground: #bbbbbb;--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, .3);--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;--vscode-breadcrumb-foreground: rgba(204, 204, 204, .8);--vscode-breadcrumb-background: #1e1e1e;--vscode-breadcrumb-focusForeground: #e0e0e0;--vscode-breadcrumb-activeSelectionForeground: #e0e0e0;--vscode-breadcrumbPicker-background: #252526;--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, .5);--vscode-merge-currentContentBackground: rgba(64, 200, 174, .2);--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, .5);--vscode-merge-incomingContentBackground: rgba(64, 166, 255, .2);--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, .4);--vscode-merge-commonContentBackground: rgba(96, 96, 96, .16);--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, .5);--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, .5);--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, .4);--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, .49);--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, .8);--vscode-minimap-findMatchHighlight: #d18616;--vscode-minimap-selectionHighlight: #264f78;--vscode-minimap-errorHighlight: rgba(255, 18, 18, .7);--vscode-minimap-warningHighlight: #cca700;--vscode-minimapSlider-background: rgba(121, 121, 121, .2);--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, .35);--vscode-minimapSlider-activeBackground: rgba(191, 191, 191, .2);--vscode-problemsErrorIcon-foreground: #f48771;--vscode-problemsWarningIcon-foreground: #cca700;--vscode-problemsInfoIcon-foreground: #75beff;--vscode-charts-foreground: #cccccc;--vscode-charts-lines: rgba(204, 204, 204, .5);--vscode-charts-red: #f48771;--vscode-charts-blue: #75beff;--vscode-charts-yellow: #cca700;--vscode-charts-orange: #d18616;--vscode-charts-green: #89d185;--vscode-charts-purple: #b180d7;--vscode-editor-lineHighlightBorder: #282828;--vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, .04);--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, .33);--vscode-editorCursor-foreground: #aeafad;--vscode-editorWhitespace-foreground: rgba(227, 228, 226, .16);--vscode-editorIndentGuide-background: #404040;--vscode-editorIndentGuide-activeBackground: #707070;--vscode-editorLineNumber-foreground: #858585;--vscode-editorActiveLineNumber-foreground: #c6c6c6;--vscode-editorLineNumber-activeForeground: #c6c6c6;--vscode-editorRuler-foreground: #5a5a5a;--vscode-editorCodeLens-foreground: #999999;--vscode-editorBracketMatch-background: rgba(0, 100, 0, .1);--vscode-editorBracketMatch-border: #888888;--vscode-editorOverviewRuler-border: rgba(127, 127, 127, .3);--vscode-editorGutter-background: #1e1e1e;--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, .67);--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, .6);--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, .7);--vscode-editorOverviewRuler-warningForeground: #cca700;--vscode-editorOverviewRuler-infoForeground: #75beff;--vscode-symbolIcon-arrayForeground: #cccccc;--vscode-symbolIcon-booleanForeground: #cccccc;--vscode-symbolIcon-classForeground: #ee9d28;--vscode-symbolIcon-colorForeground: #cccccc;--vscode-symbolIcon-constantForeground: #cccccc;--vscode-symbolIcon-constructorForeground: #b180d7;--vscode-symbolIcon-enumeratorForeground: #ee9d28;--vscode-symbolIcon-enumeratorMemberForeground: #75beff;--vscode-symbolIcon-eventForeground: #ee9d28;--vscode-symbolIcon-fieldForeground: #75beff;--vscode-symbolIcon-fileForeground: #cccccc;--vscode-symbolIcon-folderForeground: #cccccc;--vscode-symbolIcon-functionForeground: #b180d7;--vscode-symbolIcon-interfaceForeground: #75beff;--vscode-symbolIcon-keyForeground: #cccccc;--vscode-symbolIcon-keywordForeground: #cccccc;--vscode-symbolIcon-methodForeground: #b180d7;--vscode-symbolIcon-moduleForeground: #cccccc;--vscode-symbolIcon-namespaceForeground: #cccccc;--vscode-symbolIcon-nullForeground: #cccccc;--vscode-symbolIcon-numberForeground: #cccccc;--vscode-symbolIcon-objectForeground: #cccccc;--vscode-symbolIcon-operatorForeground: #cccccc;--vscode-symbolIcon-packageForeground: #cccccc;--vscode-symbolIcon-propertyForeground: #cccccc;--vscode-symbolIcon-referenceForeground: #cccccc;--vscode-symbolIcon-snippetForeground: #cccccc;--vscode-symbolIcon-stringForeground: #cccccc;--vscode-symbolIcon-structForeground: #cccccc;--vscode-symbolIcon-textForeground: #cccccc;--vscode-symbolIcon-typeParameterForeground: #cccccc;--vscode-symbolIcon-unitForeground: #cccccc;--vscode-symbolIcon-variableForeground: #75beff;--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, .3);--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, .72);--vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, .72);--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, .8);--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, .8);--vscode-editor-foldBackground: rgba(38, 79, 120, .3);--vscode-editorGutter-foldingControlForeground: #c5c5c5;--vscode-peekViewTitle-background: #1e1e1e;--vscode-peekViewTitleLabel-foreground: #ffffff;--vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, .7);--vscode-peekView-border: #007acc;--vscode-peekViewResult-background: #252526;--vscode-peekViewResult-lineForeground: #bbbbbb;--vscode-peekViewResult-fileForeground: #ffffff;--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, .2);--vscode-peekViewResult-selectionForeground: #ffffff;--vscode-peekViewEditor-background: #001f33;--vscode-peekViewEditorGutter-background: #001f33;--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, .3);--vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, .6);--vscode-editorMarkerNavigationError-background: #f48771;--vscode-editorMarkerNavigationWarning-background: #cca700;--vscode-editorMarkerNavigationInfo-background: #75beff;--vscode-editorMarkerNavigation-background: #2d2d30;--vscode-editorSuggestWidget-background: #252526;--vscode-editorSuggestWidget-border: #454545;--vscode-editorSuggestWidget-foreground: #d4d4d4;--vscode-editorSuggestWidget-selectedBackground: #062f4a;--vscode-editorSuggestWidget-highlightForeground: #0097fb;--vscode-tab-activeBackground: #1e1e1e;--vscode-tab-unfocusedActiveBackground: #1e1e1e;--vscode-tab-inactiveBackground: #2d2d2d;--vscode-tab-unfocusedInactiveBackground: #2d2d2d;--vscode-tab-activeForeground: #ffffff;--vscode-tab-inactiveForeground: rgba(255, 255, 255, .5);--vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, .5);--vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, .25);--vscode-tab-border: #252526;--vscode-tab-lastPinnedBorder: rgba(204, 204, 204, .2);--vscode-tab-activeModifiedBorder: #3399cc;--vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, .5);--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, .5);--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, .25);--vscode-editorPane-background: #1e1e1e;--vscode-editorGroupHeader-tabsBackground: #252526;--vscode-editorGroupHeader-noTabsBackground: #1e1e1e;--vscode-editorGroup-border: #444444;--vscode-editorGroup-dropBackground: rgba(83, 89, 93, .5);--vscode-imagePreview-border: rgba(128, 128, 128, .35);--vscode-panel-background: #1e1e1e;--vscode-panel-border: rgba(128, 128, 128, .35);--vscode-panelTitle-activeForeground: #e7e7e7;--vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, .6);--vscode-panelTitle-activeBorder: #e7e7e7;--vscode-panel-dropBorder: #e7e7e7;--vscode-panelSection-dropBackground: rgba(83, 89, 93, .5);--vscode-panelSectionHeader-background: rgba(128, 128, 128, .2);--vscode-panelSection-border: rgba(128, 128, 128, .35);--vscode-statusBar-foreground: #ffffff;--vscode-statusBar-noFolderForeground: #ffffff;--vscode-statusBar-background: #007acc;--vscode-statusBar-noFolderBackground: #68217a;--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, .18);--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-prominentForeground: #ffffff;--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, .5);--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, .3);--vscode-statusBarItem-errorBackground: #c72e0f;--vscode-statusBarItem-errorForeground: #ffffff;--vscode-activityBar-background: #333333;--vscode-activityBar-foreground: #ffffff;--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, .4);--vscode-activityBar-activeBorder: #ffffff;--vscode-activityBar-dropBorder: #ffffff;--vscode-activityBarBadge-background: #007acc;--vscode-activityBarBadge-foreground: #ffffff;--vscode-statusBarItem-remoteBackground: #16825d;--vscode-statusBarItem-remoteForeground: #ffffff;--vscode-extensionBadge-remoteBackground: #007acc;--vscode-extensionBadge-remoteForeground: #ffffff;--vscode-sideBar-background: #252526;--vscode-sideBarTitle-foreground: #bbbbbb;--vscode-sideBar-dropBackground: rgba(83, 89, 93, .5);--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);--vscode-sideBarSectionHeader-border: rgba(204, 204, 204, .2);--vscode-titleBar-activeForeground: #cccccc;--vscode-titleBar-inactiveForeground: rgba(204, 204, 204, .6);--vscode-titleBar-activeBackground: #3c3c3c;--vscode-titleBar-inactiveBackground: rgba(60, 60, 60, .6);--vscode-menubar-selectionForeground: #cccccc;--vscode-menubar-selectionBackground: rgba(255, 255, 255, .1);--vscode-notifications-foreground: #cccccc;--vscode-notifications-background: #252526;--vscode-notificationLink-foreground: #3794ff;--vscode-notificationCenterHeader-background: #303031;--vscode-notifications-border: #303031;--vscode-notificationsErrorIcon-foreground: #f48771;--vscode-notificationsWarningIcon-foreground: #cca700;--vscode-notificationsInfoIcon-foreground: #75beff;--vscode-editorGutter-commentRangeForeground: #c5c5c5;--vscode-debugToolBar-background: #333333;--vscode-debugIcon-startForeground: #89d185;--vscode-settings-headerForeground: #e7e7e7;--vscode-settings-modifiedItemIndicator: #0c7d9d;--vscode-settings-dropdownBackground: #3c3c3c;--vscode-settings-dropdownForeground: #f0f0f0;--vscode-settings-dropdownBorder: #3c3c3c;--vscode-settings-dropdownListBorder: #454545;--vscode-settings-checkboxBackground: #3c3c3c;--vscode-settings-checkboxForeground: #f0f0f0;--vscode-settings-checkboxBorder: #3c3c3c;--vscode-settings-textInputBackground: #3c3c3c;--vscode-settings-textInputForeground: #cccccc;--vscode-settings-numberInputBackground: #3c3c3c;--vscode-settings-numberInputForeground: #cccccc;--vscode-settings-focusedRowBackground: rgba(128, 128, 128, .14);--vscode-notebook-rowHoverBackground: rgba(128, 128, 128, .07);--vscode-notebook-focusedRowBorder: rgba(255, 255, 255, .12);--vscode-terminal-foreground: #cccccc;--vscode-terminal-selectionBackground: rgba(255, 255, 255, .25);--vscode-terminal-border: rgba(128, 128, 128, .35);--vscode-testing-iconFailed: #f14c4c;--vscode-testing-iconErrored: #f14c4c;--vscode-testing-iconPassed: #73c991;--vscode-testing-runAction: #73c991;--vscode-testing-iconQueued: #cca700;--vscode-testing-iconUnset: #848484;--vscode-testing-iconSkipped: #848484;--vscode-testing-peekBorder: #f48771;--vscode-testing-message\.error\.decorationForeground: #f48771;--vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, .2);--vscode-testing-message\.warning\.decorationForeground: #cca700;--vscode-testing-message\.warning\.lineBackground: rgba(255, 208, 0, .2);--vscode-testing-message\.info\.decorationForeground: #75beff;--vscode-testing-message\.info\.lineBackground: rgba(0, 127, 255, .2);--vscode-testing-message\.hint\.decorationForeground: rgba(238, 238, 238, .7);--vscode-welcomePage-tileBackground: #252526;--vscode-welcomePage-tileHoverBackground: #2c2c2d;--vscode-welcomePage-progress\.background: #3c3c3c;--vscode-welcomePage-progress\.foreground: #3794ff;--vscode-statusBar-debuggingBackground: #cc6633;--vscode-statusBar-debuggingForeground: #ffffff;--vscode-debugExceptionWidget-border: #a31515;--vscode-debugExceptionWidget-background: #420b0d;--vscode-editorGutter-modifiedBackground: #0c7d9d;--vscode-editorGutter-addedBackground: #587c0c;--vscode-editorGutter-deletedBackground: #94151b;--vscode-minimapGutter-modifiedBackground: #0c7d9d;--vscode-minimapGutter-addedBackground: #587c0c;--vscode-minimapGutter-deletedBackground: #94151b;--vscode-editorOverviewRuler-modifiedForeground: rgba(12, 125, 157, .6);--vscode-editorOverviewRuler-addedForeground: rgba(88, 124, 12, .6);--vscode-editorOverviewRuler-deletedForeground: rgba(148, 21, 27, .6);--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, .2);--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, .3);--vscode-debugIcon-breakpointForeground: #e51400;--vscode-debugIcon-breakpointDisabledForeground: #848484;--vscode-debugIcon-breakpointUnverifiedForeground: #848484;--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;--vscode-debugIcon-breakpointStackframeForeground: #89d185;--vscode-scm-providerBorder: #454545;--vscode-notebook-cellBorderColor: #37373d;--vscode-notebook-focusedEditorBorder: #007fd4;--vscode-notebookStatusSuccessIcon-foreground: #89d185;--vscode-notebookStatusErrorIcon-foreground: #f48771;--vscode-notebookStatusRunningIcon-foreground: #cccccc;--vscode-notebook-outputContainerBackgroundColor: #37373d;--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, .35);--vscode-notebook-selectedCellBackground: rgba(56, 59, 61, .31);--vscode-notebook-selectedCellBorder: #37373d;--vscode-notebook-focusedCellBorder: #007fd4;--vscode-notebook-inactiveFocusedCellBorder: #37373d;--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, .15);--vscode-notebook-cellInsertionIndicator: #007fd4;--vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, .4);--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, .4);--vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, .04);--vscode-extensionButton-prominentBackground: #0e639c;--vscode-extensionButton-prominentForeground: #ffffff;--vscode-extensionButton-prominentHoverBackground: #1177bb;--vscode-extensionIcon-starForeground: #ff8e00;--vscode-terminal-ansiBlack: #000000;--vscode-terminal-ansiRed: #cd3131;--vscode-terminal-ansiGreen: #0dbc79;--vscode-terminal-ansiYellow: #e5e510;--vscode-terminal-ansiBlue: #2472c8;--vscode-terminal-ansiMagenta: #bc3fbc;--vscode-terminal-ansiCyan: #11a8cd;--vscode-terminal-ansiWhite: #e5e5e5;--vscode-terminal-ansiBrightBlack: #666666;--vscode-terminal-ansiBrightRed: #f14c4c;--vscode-terminal-ansiBrightGreen: #23d18b;--vscode-terminal-ansiBrightYellow: #f5f543;--vscode-terminal-ansiBrightBlue: #3b8eea;--vscode-terminal-ansiBrightMagenta: #d670d6;--vscode-terminal-ansiBrightCyan: #29b8db;--vscode-terminal-ansiBrightWhite: #e5e5e5;--vscode-debugTokenExpression-name: #c586c0;--vscode-debugTokenExpression-value: rgba(204, 204, 204, .6);--vscode-debugTokenExpression-string: #ce9178;--vscode-debugTokenExpression-boolean: #4e94ce;--vscode-debugTokenExpression-number: #b5cea8;--vscode-debugTokenExpression-error: #f48771;--vscode-debugView-exceptionLabelForeground: #cccccc;--vscode-debugView-exceptionLabelBackground: #6c2022;--vscode-debugView-stateLabelForeground: #cccccc;--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, .27);--vscode-debugView-valueChangedHighlight: #569cd6;--vscode-debugConsole-infoForeground: #75beff;--vscode-debugConsole-warningForeground: #cca700;--vscode-debugConsole-errorForeground: #f48771;--vscode-debugConsole-sourceForeground: #cccccc;--vscode-debugConsoleInputIcon-foreground: #cccccc;--vscode-debugIcon-pauseForeground: #75beff;--vscode-debugIcon-stopForeground: #f48771;--vscode-debugIcon-disconnectForeground: #f48771;--vscode-debugIcon-restartForeground: #89d185;--vscode-debugIcon-stepOverForeground: #75beff;--vscode-debugIcon-stepIntoForeground: #75beff;--vscode-debugIcon-stepOutForeground: #75beff;--vscode-debugIcon-continueForeground: #75beff;--vscode-debugIcon-stepBackForeground: #75beff;--vscode-gitDecoration-addedResourceForeground: #81b88b;--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;--vscode-gitDecoration-deletedResourceForeground: #c74e39;--vscode-gitDecoration-renamedResourceForeground: #73c991;--vscode-gitDecoration-untrackedResourceForeground: #73c991;--vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;--vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;--vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;--vscode-gitDecoration-conflictingResourceForeground: #e4676b;--vscode-gitDecoration-submoduleResourceForeground: #8db9e2}html[data-theme=light]{--vscode-font-family: -apple-system, BlinkMacSystemFont, sans-serif;--vscode-font-weight: normal;--vscode-font-size: 13px;--vscode-editor-font-family: Menlo, Monaco, "Courier New", monospace;--vscode-editor-font-weight: normal;--vscode-editor-font-size: 12px;--vscode-foreground: #616161;--vscode-errorForeground: #a1260d;--vscode-descriptionForeground: #717171;--vscode-icon-foreground: #424242;--vscode-focusBorder: #0090f1;--vscode-textSeparator-foreground: rgba(0, 0, 0, .18);--vscode-textLink-foreground: #006ab1;--vscode-textLink-activeForeground: #006ab1;--vscode-textPreformat-foreground: #a31515;--vscode-textBlockQuote-background: rgba(127, 127, 127, .1);--vscode-textBlockQuote-border: rgba(0, 122, 204, .5);--vscode-textCodeBlock-background: rgba(220, 220, 220, .4);--vscode-widget-shadow: rgba(0, 0, 0, .16);--vscode-input-background: #ffffff;--vscode-input-foreground: #616161;--vscode-inputOption-activeBorder: rgba(0, 122, 204, 0);--vscode-inputOption-activeBackground: rgba(0, 144, 241, .2);--vscode-inputOption-activeForeground: #000000;--vscode-input-placeholderForeground: #767676;--vscode-inputValidation-infoBackground: #d6ecf2;--vscode-inputValidation-infoBorder: #007acc;--vscode-inputValidation-warningBackground: #f6f5d2;--vscode-inputValidation-warningBorder: #b89500;--vscode-inputValidation-errorBackground: #f2dede;--vscode-inputValidation-errorBorder: #be1100;--vscode-dropdown-background: #ffffff;--vscode-dropdown-border: #cecece;--vscode-checkbox-background: #ffffff;--vscode-checkbox-border: #cecece;--vscode-button-foreground: #ffffff;--vscode-button-background: #007acc;--vscode-button-hoverBackground: #0062a3;--vscode-button-secondaryForeground: #ffffff;--vscode-button-secondaryBackground: #5f6a79;--vscode-button-secondaryHoverBackground: #4c5561;--vscode-badge-background: #c4c4c4;--vscode-badge-foreground: #333333;--vscode-scrollbar-shadow: #dddddd;--vscode-scrollbarSlider-background: rgba(100, 100, 100, .4);--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, .6);--vscode-progressBar-background: #0e70c0;--vscode-editorError-foreground: #e51400;--vscode-editorWarning-foreground: #bf8803;--vscode-editorInfo-foreground: #75beff;--vscode-editorHint-foreground: #6c6c6c;--vscode-sash-hoverBorder: #0090f1;--vscode-editor-background: #ffffff;--vscode-editor-foreground: #000000;--vscode-editorWidget-background: #f3f3f3;--vscode-editorWidget-foreground: #616161;--vscode-editorWidget-border: #c8c8c8;--vscode-quickInput-background: #f3f3f3;--vscode-quickInput-foreground: #616161;--vscode-quickInputTitle-background: rgba(0, 0, 0, .06);--vscode-quickInput-list\.focusBackground: #d6ebff;--vscode-pickerGroup-foreground: #0066bf;--vscode-pickerGroup-border: #cccedb;--vscode-editor-selectionBackground: #add6ff;--vscode-editor-inactiveSelectionBackground: #e5ebf1;--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, .5);--vscode-editor-findMatchBackground: #a8ac94;--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, .33);--vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, .3);--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, .22);--vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, .15);--vscode-editorHoverWidget-background: #f3f3f3;--vscode-editorHoverWidget-foreground: #616161;--vscode-editorHoverWidget-border: #c8c8c8;--vscode-editorHoverWidget-statusBarBackground: #e7e7e7;--vscode-editorLink-activeForeground: #0000ff;--vscode-editorInlineHint-foreground: #616161;--vscode-editorInlineHint-background: #f3f3f3;--vscode-editorLightBulb-foreground: #ddb100;--vscode-editorLightBulbAutoFix-foreground: #007acc;--vscode-diffEditor-insertedTextBackground: rgba(155, 185, 85, .2);--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, .2);--vscode-diffEditor-diagonalFill: rgba(34, 34, 34, .2);--vscode-list-focusOutline: #0090f1;--vscode-list-activeSelectionBackground: #0060c0;--vscode-list-activeSelectionForeground: #ffffff;--vscode-list-inactiveSelectionBackground: #e4e6f1;--vscode-list-hoverBackground: #e8e8e8;--vscode-list-highlightForeground: #0066bf;--vscode-list-invalidItemForeground: #b89500;--vscode-list-errorForeground: #b01011;--vscode-list-warningForeground: #855f00;--vscode-listFilterWidget-background: #efc1ad;--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);--vscode-listFilterWidget-noMatchesOutline: #be1100;--vscode-list-filterMatchBackground: rgba(234, 92, 0, .33);--vscode-tree-indentGuidesStroke: #a9a9a9;--vscode-tree-tableColumnsBorder: rgba(97, 97, 97, .13);--vscode-list-deemphasizedForeground: #8e8e90;--vscode-menu-foreground: #616161;--vscode-menu-background: #ffffff;--vscode-menu-selectionForeground: #ffffff;--vscode-menu-selectionBackground: #0060c0;--vscode-menu-separatorBackground: #888888;--vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, .2);--vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, .5);--vscode-breadcrumb-foreground: rgba(97, 97, 97, .8);--vscode-breadcrumb-background: #ffffff;--vscode-breadcrumb-focusForeground: #4e4e4e;--vscode-breadcrumb-activeSelectionForeground: #4e4e4e;--vscode-breadcrumbPicker-background: #f3f3f3;--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, .5);--vscode-merge-currentContentBackground: rgba(64, 200, 174, .2);--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, .5);--vscode-merge-incomingContentBackground: rgba(64, 166, 255, .2);--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, .4);--vscode-merge-commonContentBackground: rgba(96, 96, 96, .16);--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, .5);--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, .5);--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, .4);--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, .49);--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, .8);--vscode-minimap-findMatchHighlight: #d18616;--vscode-minimap-selectionHighlight: #add6ff;--vscode-minimap-errorHighlight: rgba(255, 18, 18, .7);--vscode-minimap-warningHighlight: #bf8803;--vscode-minimapSlider-background: rgba(100, 100, 100, .2);--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, .35);--vscode-minimapSlider-activeBackground: rgba(0, 0, 0, .3);--vscode-problemsErrorIcon-foreground: #e51400;--vscode-problemsWarningIcon-foreground: #bf8803;--vscode-problemsInfoIcon-foreground: #75beff;--vscode-charts-foreground: #616161;--vscode-charts-lines: rgba(97, 97, 97, .5);--vscode-charts-red: #e51400;--vscode-charts-blue: #75beff;--vscode-charts-yellow: #bf8803;--vscode-charts-orange: #d18616;--vscode-charts-green: #388a34;--vscode-charts-purple: #652d90;--vscode-editor-lineHighlightBorder: #eeeeee;--vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, .2);--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, .33);--vscode-editorCursor-foreground: #000000;--vscode-editorWhitespace-foreground: rgba(51, 51, 51, .2);--vscode-editorIndentGuide-background: #d3d3d3;--vscode-editorIndentGuide-activeBackground: #939393;--vscode-editorLineNumber-foreground: #237893;--vscode-editorActiveLineNumber-foreground: #0b216f;--vscode-editorLineNumber-activeForeground: #0b216f;--vscode-editorRuler-foreground: #d3d3d3;--vscode-editorCodeLens-foreground: #999999;--vscode-editorBracketMatch-background: rgba(0, 100, 0, .1);--vscode-editorBracketMatch-border: #b9b9b9;--vscode-editorOverviewRuler-border: rgba(127, 127, 127, .3);--vscode-editorGutter-background: #ffffff;--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, .47);--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, .6);--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, .7);--vscode-editorOverviewRuler-warningForeground: #bf8803;--vscode-editorOverviewRuler-infoForeground: #75beff;--vscode-symbolIcon-arrayForeground: #616161;--vscode-symbolIcon-booleanForeground: #616161;--vscode-symbolIcon-classForeground: #d67e00;--vscode-symbolIcon-colorForeground: #616161;--vscode-symbolIcon-constantForeground: #616161;--vscode-symbolIcon-constructorForeground: #652d90;--vscode-symbolIcon-enumeratorForeground: #d67e00;--vscode-symbolIcon-enumeratorMemberForeground: #007acc;--vscode-symbolIcon-eventForeground: #d67e00;--vscode-symbolIcon-fieldForeground: #007acc;--vscode-symbolIcon-fileForeground: #616161;--vscode-symbolIcon-folderForeground: #616161;--vscode-symbolIcon-functionForeground: #652d90;--vscode-symbolIcon-interfaceForeground: #007acc;--vscode-symbolIcon-keyForeground: #616161;--vscode-symbolIcon-keywordForeground: #616161;--vscode-symbolIcon-methodForeground: #652d90;--vscode-symbolIcon-moduleForeground: #616161;--vscode-symbolIcon-namespaceForeground: #616161;--vscode-symbolIcon-nullForeground: #616161;--vscode-symbolIcon-numberForeground: #616161;--vscode-symbolIcon-objectForeground: #616161;--vscode-symbolIcon-operatorForeground: #616161;--vscode-symbolIcon-packageForeground: #616161;--vscode-symbolIcon-propertyForeground: #616161;--vscode-symbolIcon-referenceForeground: #616161;--vscode-symbolIcon-snippetForeground: #616161;--vscode-symbolIcon-stringForeground: #616161;--vscode-symbolIcon-structForeground: #616161;--vscode-symbolIcon-textForeground: #616161;--vscode-symbolIcon-typeParameterForeground: #616161;--vscode-symbolIcon-unitForeground: #616161;--vscode-symbolIcon-variableForeground: #007acc;--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, .3);--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, .25);--vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, .25);--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, .8);--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, .8);--vscode-editor-foldBackground: rgba(173, 214, 255, .3);--vscode-editorGutter-foldingControlForeground: #424242;--vscode-peekViewTitle-background: #ffffff;--vscode-peekViewTitleLabel-foreground: #333333;--vscode-peekViewTitleDescription-foreground: rgba(97, 97, 97, .9);--vscode-peekView-border: #007acc;--vscode-peekViewResult-background: #f3f3f3;--vscode-peekViewResult-lineForeground: #646465;--vscode-peekViewResult-fileForeground: #1e1e1e;--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, .2);--vscode-peekViewResult-selectionForeground: #6c6c6c;--vscode-peekViewEditor-background: #f2f8fc;--vscode-peekViewEditorGutter-background: #f2f8fc;--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, .3);--vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, .87);--vscode-editorMarkerNavigationError-background: #e51400;--vscode-editorMarkerNavigationWarning-background: #bf8803;--vscode-editorMarkerNavigationInfo-background: #75beff;--vscode-editorMarkerNavigation-background: #ffffff;--vscode-editorSuggestWidget-background: #f3f3f3;--vscode-editorSuggestWidget-border: #c8c8c8;--vscode-editorSuggestWidget-foreground: #000000;--vscode-editorSuggestWidget-selectedBackground: #d6ebff;--vscode-editorSuggestWidget-highlightForeground: #0066bf;--vscode-tab-activeBackground: #ffffff;--vscode-tab-unfocusedActiveBackground: #ffffff;--vscode-tab-inactiveBackground: #ececec;--vscode-tab-unfocusedInactiveBackground: #ececec;--vscode-tab-activeForeground: #333333;--vscode-tab-inactiveForeground: rgba(51, 51, 51, .7);--vscode-tab-unfocusedActiveForeground: rgba(51, 51, 51, .7);--vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, .35);--vscode-tab-border: #f3f3f3;--vscode-tab-lastPinnedBorder: rgba(97, 97, 97, .19);--vscode-tab-activeModifiedBorder: #33aaee;--vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, .5);--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, .7);--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, .25);--vscode-editorPane-background: #ffffff;--vscode-editorGroupHeader-tabsBackground: #f3f3f3;--vscode-editorGroupHeader-noTabsBackground: #ffffff;--vscode-editorGroup-border: #e7e7e7;--vscode-editorGroup-dropBackground: rgba(38, 119, 203, .18);--vscode-imagePreview-border: rgba(128, 128, 128, .35);--vscode-panel-background: #ffffff;--vscode-panel-border: rgba(128, 128, 128, .35);--vscode-panelTitle-activeForeground: #424242;--vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, .75);--vscode-panelTitle-activeBorder: #424242;--vscode-panelInput-border: #dddddd;--vscode-panel-dropBorder: #424242;--vscode-panelSection-dropBackground: rgba(38, 119, 203, .18);--vscode-panelSectionHeader-background: rgba(128, 128, 128, .2);--vscode-panelSection-border: rgba(128, 128, 128, .35);--vscode-statusBar-foreground: #ffffff;--vscode-statusBar-noFolderForeground: #ffffff;--vscode-statusBar-background: #007acc;--vscode-statusBar-noFolderBackground: #68217a;--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, .18);--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-prominentForeground: #ffffff;--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, .5);--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, .3);--vscode-statusBarItem-errorBackground: #c72e0f;--vscode-statusBarItem-errorForeground: #ffffff;--vscode-activityBar-background: #2c2c2c;--vscode-activityBar-foreground: #ffffff;--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, .4);--vscode-activityBar-activeBorder: #ffffff;--vscode-activityBar-dropBorder: #ffffff;--vscode-activityBarBadge-background: #007acc;--vscode-activityBarBadge-foreground: #ffffff;--vscode-statusBarItem-remoteBackground: #16825d;--vscode-statusBarItem-remoteForeground: #ffffff;--vscode-extensionBadge-remoteBackground: #007acc;--vscode-extensionBadge-remoteForeground: #ffffff;--vscode-sideBar-background: #f3f3f3;--vscode-sideBarTitle-foreground: #6f6f6f;--vscode-sideBar-dropBackground: rgba(38, 119, 203, .18);--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);--vscode-sideBarSectionHeader-border: rgba(97, 97, 97, .19);--vscode-titleBar-activeForeground: #333333;--vscode-titleBar-inactiveForeground: rgba(51, 51, 51, .6);--vscode-titleBar-activeBackground: #dddddd;--vscode-titleBar-inactiveBackground: rgba(221, 221, 221, .6);--vscode-menubar-selectionForeground: #333333;--vscode-menubar-selectionBackground: rgba(0, 0, 0, .1);--vscode-notifications-foreground: #616161;--vscode-notifications-background: #f3f3f3;--vscode-notificationLink-foreground: #006ab1;--vscode-notificationCenterHeader-background: #e7e7e7;--vscode-notifications-border: #e7e7e7;--vscode-notificationsErrorIcon-foreground: #e51400;--vscode-notificationsWarningIcon-foreground: #bf8803;--vscode-notificationsInfoIcon-foreground: #75beff;--vscode-editorGutter-commentRangeForeground: #c5c5c5;--vscode-debugToolBar-background: #f3f3f3;--vscode-debugIcon-startForeground: #388a34;--vscode-settings-headerForeground: #444444;--vscode-settings-modifiedItemIndicator: #66afe0;--vscode-settings-dropdownBackground: #ffffff;--vscode-settings-dropdownBorder: #cecece;--vscode-settings-dropdownListBorder: #c8c8c8;--vscode-settings-checkboxBackground: #ffffff;--vscode-settings-checkboxBorder: #cecece;--vscode-settings-textInputBackground: #ffffff;--vscode-settings-textInputForeground: #616161;--vscode-settings-textInputBorder: #cecece;--vscode-settings-numberInputBackground: #ffffff;--vscode-settings-numberInputForeground: #616161;--vscode-settings-numberInputBorder: #cecece;--vscode-notebook-focusedRowBorder: rgba(0, 0, 0, .12);--vscode-terminal-foreground: #333333;--vscode-terminal-selectionBackground: rgba(0, 0, 0, .25);--vscode-terminal-border: rgba(128, 128, 128, .35);--vscode-testing-iconFailed: #f14c4c;--vscode-testing-iconErrored: #f14c4c;--vscode-testing-iconPassed: #73c991;--vscode-testing-runAction: #73c991;--vscode-testing-iconQueued: #cca700;--vscode-testing-iconUnset: #848484;--vscode-testing-iconSkipped: #848484;--vscode-testing-peekBorder: #e51400;--vscode-testing-message\.error\.decorationForeground: #e51400;--vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, .2);--vscode-testing-message\.warning\.decorationForeground: #bf8803;--vscode-testing-message\.warning\.lineBackground: rgba(255, 208, 0, .2);--vscode-testing-message\.info\.decorationForeground: #75beff;--vscode-testing-message\.info\.lineBackground: rgba(0, 127, 255, .2);--vscode-testing-message\.hint\.decorationForeground: #6c6c6c;--vscode-welcomePage-tileBackground: #f3f3f3;--vscode-welcomePage-tileHoverBackground: #dbdbdb;--vscode-welcomePage-progress\.background: #ffffff;--vscode-welcomePage-progress\.foreground: #006ab1;--vscode-statusBar-debuggingBackground: #cc6633;--vscode-statusBar-debuggingForeground: #ffffff;--vscode-debugExceptionWidget-border: #a31515;--vscode-debugExceptionWidget-background: #f1dfde;--vscode-editorGutter-modifiedBackground: #66afe0;--vscode-editorGutter-addedBackground: #81b88b;--vscode-editorGutter-deletedBackground: #ca4b51;--vscode-minimapGutter-modifiedBackground: #66afe0;--vscode-minimapGutter-addedBackground: #81b88b;--vscode-minimapGutter-deletedBackground: #ca4b51;--vscode-editorOverviewRuler-modifiedForeground: rgba(102, 175, 224, .6);--vscode-editorOverviewRuler-addedForeground: rgba(129, 184, 139, .6);--vscode-editorOverviewRuler-deletedForeground: rgba(202, 75, 81, .6);--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, .45);--vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, .45);--vscode-debugIcon-breakpointForeground: #e51400;--vscode-debugIcon-breakpointDisabledForeground: #848484;--vscode-debugIcon-breakpointUnverifiedForeground: #848484;--vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;--vscode-debugIcon-breakpointStackframeForeground: #89d185;--vscode-scm-providerBorder: #c8c8c8;--vscode-notebook-cellBorderColor: #e8e8e8;--vscode-notebook-focusedEditorBorder: #0090f1;--vscode-notebookStatusSuccessIcon-foreground: #388a34;--vscode-notebookStatusErrorIcon-foreground: #a1260d;--vscode-notebookStatusRunningIcon-foreground: #616161;--vscode-notebook-outputContainerBackgroundColor: #e8e8e8;--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, .35);--vscode-notebook-selectedCellBackground: rgba(200, 221, 241, .31);--vscode-notebook-selectedCellBorder: #e8e8e8;--vscode-notebook-focusedCellBorder: #0090f1;--vscode-notebook-inactiveFocusedCellBorder: #e8e8e8;--vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, .08);--vscode-notebook-cellInsertionIndicator: #0090f1;--vscode-notebookScrollbarSlider-background: rgba(100, 100, 100, .4);--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, .6);--vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, .2);--vscode-searchEditor-textInputBorder: #cecece;--vscode-extensionButton-prominentBackground: #007acc;--vscode-extensionButton-prominentForeground: #ffffff;--vscode-extensionButton-prominentHoverBackground: #0062a3;--vscode-extensionIcon-starForeground: #df6100;--vscode-terminal-ansiBlack: #000000;--vscode-terminal-ansiRed: #cd3131;--vscode-terminal-ansiGreen: #00bc00;--vscode-terminal-ansiYellow: #949800;--vscode-terminal-ansiBlue: #0451a5;--vscode-terminal-ansiMagenta: #bc05bc;--vscode-terminal-ansiCyan: #0598bc;--vscode-terminal-ansiWhite: #555555;--vscode-terminal-ansiBrightBlack: #666666;--vscode-terminal-ansiBrightRed: #cd3131;--vscode-terminal-ansiBrightGreen: #14ce14;--vscode-terminal-ansiBrightYellow: #b5ba00;--vscode-terminal-ansiBrightBlue: #0451a5;--vscode-terminal-ansiBrightMagenta: #bc05bc;--vscode-terminal-ansiBrightCyan: #0598bc;--vscode-terminal-ansiBrightWhite: #a5a5a5;--vscode-debugTokenExpression-name: #9b46b0;--vscode-debugTokenExpression-value: rgba(108, 108, 108, .8);--vscode-debugTokenExpression-string: #a31515;--vscode-debugTokenExpression-boolean: #0000ff;--vscode-debugTokenExpression-number: #098658;--vscode-debugTokenExpression-error: #e51400;--vscode-debugView-exceptionLabelForeground: #ffffff;--vscode-debugView-exceptionLabelBackground: #a31515;--vscode-debugView-stateLabelForeground: #616161;--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, .27);--vscode-debugView-valueChangedHighlight: #569cd6;--vscode-debugConsole-infoForeground: #75beff;--vscode-debugConsole-warningForeground: #bf8803;--vscode-debugConsole-errorForeground: #a1260d;--vscode-debugConsole-sourceForeground: #616161;--vscode-debugConsoleInputIcon-foreground: #616161;--vscode-debugIcon-pauseForeground: #007acc;--vscode-debugIcon-stopForeground: #a1260d;--vscode-debugIcon-disconnectForeground: #a1260d;--vscode-debugIcon-restartForeground: #388a34;--vscode-debugIcon-stepOverForeground: #007acc;--vscode-debugIcon-stepIntoForeground: #007acc;--vscode-debugIcon-stepOutForeground: #007acc;--vscode-debugIcon-continueForeground: #007acc;--vscode-debugIcon-stepBackForeground: #007acc;--vscode-gitDecoration-addedResourceForeground: #587c0c;--vscode-gitDecoration-modifiedResourceForeground: #895503;--vscode-gitDecoration-deletedResourceForeground: #ad0707;--vscode-gitDecoration-renamedResourceForeground: #007100;--vscode-gitDecoration-untrackedResourceForeground: #007100;--vscode-gitDecoration-ignoredResourceForeground: #8e8e90;--vscode-gitDecoration-stageModifiedResourceForeground: #895503;--vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;--vscode-gitDecoration-conflictingResourceForeground: #ad0707;--vscode-gitDecoration-submoduleResourceForeground: #1258a7}html[data-theme="high contrast"]{--vscode-font-family: -apple-system, BlinkMacSystemFont, sans-serif;--vscode-font-weight: normal;--vscode-font-size: 13px;--vscode-editor-font-family: Menlo, Monaco, "Courier New", monospace;--vscode-editor-font-weight: normal;--vscode-editor-font-size: 12px;--vscode-foreground: #ffffff;--vscode-errorForeground: #f48771;--vscode-descriptionForeground: rgba(255, 255, 255, .7);--vscode-icon-foreground: #ffffff;--vscode-focusBorder: #f38518;--vscode-contrastBorder: #6fc3df;--vscode-contrastActiveBorder: #f38518;--vscode-selection-background: #008000;--vscode-textSeparator-foreground: #000000;--vscode-textLink-foreground: #3794ff;--vscode-textLink-activeForeground: #3794ff;--vscode-textPreformat-foreground: #d7ba7d;--vscode-textBlockQuote-border: #ffffff;--vscode-textCodeBlock-background: #000000;--vscode-input-background: #000000;--vscode-input-foreground: #ffffff;--vscode-input-border: #6fc3df;--vscode-inputOption-activeBorder: #6fc3df;--vscode-inputOption-activeBackground: rgba(0, 0, 0, 0);--vscode-input-placeholderForeground: rgba(255, 255, 255, .7);--vscode-inputValidation-infoBackground: #000000;--vscode-inputValidation-infoBorder: #6fc3df;--vscode-inputValidation-warningBackground: #000000;--vscode-inputValidation-warningBorder: #6fc3df;--vscode-inputValidation-errorBackground: #000000;--vscode-inputValidation-errorBorder: #6fc3df;--vscode-dropdown-background: #000000;--vscode-dropdown-listBackground: #000000;--vscode-dropdown-foreground: #ffffff;--vscode-dropdown-border: #6fc3df;--vscode-checkbox-background: #000000;--vscode-checkbox-foreground: #ffffff;--vscode-checkbox-border: #6fc3df;--vscode-button-foreground: #ffffff;--vscode-button-secondaryForeground: #ffffff;--vscode-badge-background: #000000;--vscode-badge-foreground: #ffffff;--vscode-scrollbarSlider-background: rgba(111, 195, 223, .6);--vscode-scrollbarSlider-hoverBackground: rgba(111, 195, 223, .8);--vscode-scrollbarSlider-activeBackground: #6fc3df;--vscode-progressBar-background: #6fc3df;--vscode-editorError-border: rgba(228, 119, 119, .8);--vscode-editorWarning-border: rgba(255, 204, 0, .8);--vscode-editorInfo-border: rgba(117, 190, 255, .8);--vscode-editorHint-border: rgba(238, 238, 238, .8);--vscode-sash-hoverBorder: #f38518;--vscode-editor-background: #000000;--vscode-editor-foreground: #ffffff;--vscode-editorWidget-background: #0c141f;--vscode-editorWidget-foreground: #ffffff;--vscode-editorWidget-border: #6fc3df;--vscode-quickInput-background: #0c141f;--vscode-quickInput-foreground: #ffffff;--vscode-quickInputTitle-background: #000000;--vscode-pickerGroup-foreground: #ffffff;--vscode-pickerGroup-border: #ffffff;--vscode-editor-selectionBackground: #ffffff;--vscode-editor-selectionForeground: #000000;--vscode-editor-inactiveSelectionBackground: rgba(255, 255, 255, .5);--vscode-editor-selectionHighlightBorder: #f38518;--vscode-editor-findMatchBorder: #f38518;--vscode-editor-findMatchHighlightBorder: #f38518;--vscode-editor-findRangeHighlightBorder: rgba(243, 133, 24, .4);--vscode-searchEditor-findMatchBorder: #f38518;--vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, .15);--vscode-editorHoverWidget-background: #0c141f;--vscode-editorHoverWidget-foreground: #ffffff;--vscode-editorHoverWidget-border: #6fc3df;--vscode-editorHoverWidget-statusBarBackground: #0c141f;--vscode-editorLink-activeForeground: #00ffff;--vscode-editorInlineHint-foreground: #0c141f;--vscode-editorInlineHint-background: #ffffff;--vscode-editorLightBulb-foreground: #ffcc00;--vscode-editorLightBulbAutoFix-foreground: #75beff;--vscode-diffEditor-insertedTextBorder: #33ff2e;--vscode-diffEditor-removedTextBorder: #ff008f;--vscode-diffEditor-border: #6fc3df;--vscode-list-focusOutline: #f38518;--vscode-list-highlightForeground: #f38518;--vscode-list-invalidItemForeground: #b89500;--vscode-list-activeSelectionBackground: #ffffff;--vscode-list-activeSelectionForeground: #0c141f;--vscode-listFilterWidget-background: #000000;--vscode-listFilterWidget-outline: #f38518;--vscode-listFilterWidget-noMatchesOutline: #6fc3df;--vscode-list-filterMatchBorder: #6fc3df;--vscode-tree-indentGuidesStroke: #a9a9a9;--vscode-list-deemphasizedForeground: #a7a8a9;--vscode-menu-border: #6fc3df;--vscode-menu-foreground: #ffffff;--vscode-menu-background: #000000;--vscode-menu-selectionBorder: #f38518;--vscode-menu-separatorBackground: #6fc3df;--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, .3);--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;--vscode-breadcrumb-foreground: rgba(255, 255, 255, .8);--vscode-breadcrumb-background: #000000;--vscode-breadcrumb-focusForeground: #ffffff;--vscode-breadcrumb-activeSelectionForeground: #ffffff;--vscode-breadcrumbPicker-background: #0c141f;--vscode-merge-border: #c3df6f;--vscode-editorOverviewRuler-currentContentForeground: #c3df6f;--vscode-editorOverviewRuler-incomingContentForeground: #c3df6f;--vscode-editorOverviewRuler-commonContentForeground: #c3df6f;--vscode-editorOverviewRuler-findMatchForeground: #ab5a00;--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, .8);--vscode-minimap-findMatchHighlight: #ab5a00;--vscode-minimap-selectionHighlight: #ffffff;--vscode-minimap-errorHighlight: #ff3232;--vscode-minimap-warningHighlight: rgba(255, 204, 0, .8);--vscode-minimapSlider-background: rgba(111, 195, 223, .3);--vscode-minimapSlider-hoverBackground: rgba(111, 195, 223, .4);--vscode-minimapSlider-activeBackground: rgba(111, 195, 223, .5);--vscode-charts-foreground: #ffffff;--vscode-charts-lines: rgba(255, 255, 255, .5);--vscode-charts-orange: #ab5a00;--vscode-charts-green: #89d185;--vscode-charts-purple: #b180d7;--vscode-editor-lineHighlightBorder: #f38518;--vscode-editor-rangeHighlightBorder: #f38518;--vscode-editor-symbolHighlightBorder: #f38518;--vscode-editorCursor-foreground: #ffffff;--vscode-editorWhitespace-foreground: rgba(227, 228, 226, .16);--vscode-editorIndentGuide-background: #ffffff;--vscode-editorIndentGuide-activeBackground: #ffffff;--vscode-editorLineNumber-foreground: #ffffff;--vscode-editorActiveLineNumber-foreground: #f38518;--vscode-editorLineNumber-activeForeground: #f38518;--vscode-editorRuler-foreground: #ffffff;--vscode-editorCodeLens-foreground: #999999;--vscode-editorBracketMatch-background: rgba(0, 100, 0, .1);--vscode-editorBracketMatch-border: #6fc3df;--vscode-editorOverviewRuler-border: rgba(127, 127, 127, .3);--vscode-editorGutter-background: #000000;--vscode-editorUnnecessaryCode-border: rgba(255, 255, 255, .8);--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, .6);--vscode-editorOverviewRuler-errorForeground: #ff3232;--vscode-editorOverviewRuler-warningForeground: rgba(255, 204, 0, .8);--vscode-editorOverviewRuler-infoForeground: rgba(117, 190, 255, .8);--vscode-symbolIcon-arrayForeground: #ffffff;--vscode-symbolIcon-booleanForeground: #ffffff;--vscode-symbolIcon-classForeground: #ee9d28;--vscode-symbolIcon-colorForeground: #ffffff;--vscode-symbolIcon-constantForeground: #ffffff;--vscode-symbolIcon-constructorForeground: #b180d7;--vscode-symbolIcon-enumeratorForeground: #ee9d28;--vscode-symbolIcon-enumeratorMemberForeground: #75beff;--vscode-symbolIcon-eventForeground: #ee9d28;--vscode-symbolIcon-fieldForeground: #75beff;--vscode-symbolIcon-fileForeground: #ffffff;--vscode-symbolIcon-folderForeground: #ffffff;--vscode-symbolIcon-functionForeground: #b180d7;--vscode-symbolIcon-interfaceForeground: #75beff;--vscode-symbolIcon-keyForeground: #ffffff;--vscode-symbolIcon-keywordForeground: #ffffff;--vscode-symbolIcon-methodForeground: #b180d7;--vscode-symbolIcon-moduleForeground: #ffffff;--vscode-symbolIcon-namespaceForeground: #ffffff;--vscode-symbolIcon-nullForeground: #ffffff;--vscode-symbolIcon-numberForeground: #ffffff;--vscode-symbolIcon-objectForeground: #ffffff;--vscode-symbolIcon-operatorForeground: #ffffff;--vscode-symbolIcon-packageForeground: #ffffff;--vscode-symbolIcon-propertyForeground: #ffffff;--vscode-symbolIcon-referenceForeground: #ffffff;--vscode-symbolIcon-snippetForeground: #ffffff;--vscode-symbolIcon-stringForeground: #ffffff;--vscode-symbolIcon-structForeground: #ffffff;--vscode-symbolIcon-textForeground: #ffffff;--vscode-symbolIcon-typeParameterForeground: #ffffff;--vscode-symbolIcon-unitForeground: #ffffff;--vscode-symbolIcon-variableForeground: #75beff;--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, .3);--vscode-editor-wordHighlightBorder: #f38518;--vscode-editor-wordHighlightStrongBorder: #f38518;--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, .8);--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, .8);--vscode-editorGutter-foldingControlForeground: #ffffff;--vscode-peekViewTitle-background: #0c141f;--vscode-peekViewTitleLabel-foreground: #ffffff;--vscode-peekViewTitleDescription-foreground: rgba(255, 255, 255, .6);--vscode-peekView-border: #6fc3df;--vscode-peekViewResult-background: #000000;--vscode-peekViewResult-lineForeground: #ffffff;--vscode-peekViewResult-fileForeground: #ffffff;--vscode-peekViewResult-selectionForeground: #ffffff;--vscode-peekViewEditor-background: #000000;--vscode-peekViewEditorGutter-background: #000000;--vscode-peekViewEditor-matchHighlightBorder: #f38518;--vscode-editorMarkerNavigationError-background: rgba(228, 119, 119, .8);--vscode-editorMarkerNavigationWarning-background: rgba(255, 204, 0, .8);--vscode-editorMarkerNavigationInfo-background: rgba(117, 190, 255, .8);--vscode-editorMarkerNavigation-background: #0c141f;--vscode-editorSuggestWidget-background: #0c141f;--vscode-editorSuggestWidget-border: #6fc3df;--vscode-editorSuggestWidget-foreground: #ffffff;--vscode-editorSuggestWidget-highlightForeground: #f38518;--vscode-tab-activeBackground: #000000;--vscode-tab-unfocusedActiveBackground: #000000;--vscode-tab-activeForeground: #ffffff;--vscode-tab-inactiveForeground: #ffffff;--vscode-tab-unfocusedActiveForeground: #ffffff;--vscode-tab-unfocusedInactiveForeground: #ffffff;--vscode-tab-border: #6fc3df;--vscode-tab-lastPinnedBorder: #6fc3df;--vscode-tab-inactiveModifiedBorder: #ffffff;--vscode-tab-unfocusedActiveModifiedBorder: #ffffff;--vscode-tab-unfocusedInactiveModifiedBorder: #ffffff;--vscode-editorPane-background: #000000;--vscode-editorGroup-focusedEmptyBorder: #f38518;--vscode-editorGroupHeader-noTabsBackground: #000000;--vscode-editorGroupHeader-border: #6fc3df;--vscode-editorGroup-border: #6fc3df;--vscode-imagePreview-border: #6fc3df;--vscode-panel-background: #000000;--vscode-panel-border: #6fc3df;--vscode-panelTitle-activeForeground: #ffffff;--vscode-panelTitle-inactiveForeground: #ffffff;--vscode-panelTitle-activeBorder: #6fc3df;--vscode-panel-dropBorder: #ffffff;--vscode-panelSectionHeader-border: #6fc3df;--vscode-panelSection-border: #6fc3df;--vscode-statusBar-foreground: #ffffff;--vscode-statusBar-noFolderForeground: #ffffff;--vscode-statusBar-border: #6fc3df;--vscode-statusBar-noFolderBorder: #6fc3df;--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, .18);--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-prominentForeground: #ffffff;--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, .5);--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, .3);--vscode-statusBarItem-errorForeground: #ffffff;--vscode-activityBar-background: #000000;--vscode-activityBar-foreground: #ffffff;--vscode-activityBar-inactiveForeground: #ffffff;--vscode-activityBar-border: #6fc3df;--vscode-activityBar-dropBorder: #ffffff;--vscode-activityBarBadge-background: #000000;--vscode-activityBarBadge-foreground: #ffffff;--vscode-statusBarItem-remoteBackground: rgba(0, 0, 0, 0);--vscode-statusBarItem-remoteForeground: #ffffff;--vscode-extensionBadge-remoteBackground: #000000;--vscode-extensionBadge-remoteForeground: #ffffff;--vscode-sideBar-background: #000000;--vscode-sideBar-border: #6fc3df;--vscode-sideBarTitle-foreground: #ffffff;--vscode-sideBarSectionHeader-border: #6fc3df;--vscode-titleBar-activeForeground: #ffffff;--vscode-titleBar-activeBackground: #000000;--vscode-titleBar-border: #6fc3df;--vscode-menubar-selectionForeground: #ffffff;--vscode-menubar-selectionBorder: #f38518;--vscode-notificationCenter-border: #6fc3df;--vscode-notificationToast-border: #6fc3df;--vscode-notifications-foreground: #ffffff;--vscode-notifications-background: #0c141f;--vscode-notificationLink-foreground: #3794ff;--vscode-notificationCenterHeader-background: #0c141f;--vscode-notifications-border: #0c141f;--vscode-window-activeBorder: #6fc3df;--vscode-window-inactiveBorder: #6fc3df;--vscode-editorGutter-commentRangeForeground: #c5c5c5;--vscode-debugToolBar-background: #000000;--vscode-debugIcon-startForeground: #89d185;--vscode-settings-headerForeground: #ffffff;--vscode-settings-modifiedItemIndicator: #00497a;--vscode-settings-dropdownBackground: #000000;--vscode-settings-dropdownForeground: #ffffff;--vscode-settings-dropdownBorder: #6fc3df;--vscode-settings-dropdownListBorder: #6fc3df;--vscode-settings-checkboxBackground: #000000;--vscode-settings-checkboxForeground: #ffffff;--vscode-settings-checkboxBorder: #6fc3df;--vscode-settings-textInputBackground: #000000;--vscode-settings-textInputForeground: #ffffff;--vscode-settings-textInputBorder: #6fc3df;--vscode-settings-numberInputBackground: #000000;--vscode-settings-numberInputForeground: #ffffff;--vscode-settings-numberInputBorder: #6fc3df;--vscode-notebook-focusedRowBorder: #f38518;--vscode-terminal-foreground: #ffffff;--vscode-terminal-selectionBackground: rgba(255, 255, 255, .5);--vscode-terminal-border: #6fc3df;--vscode-testing-iconFailed: #000000;--vscode-testing-iconErrored: #000000;--vscode-testing-iconPassed: #000000;--vscode-testing-runAction: #000000;--vscode-testing-iconQueued: #000000;--vscode-testing-iconUnset: #848484;--vscode-testing-iconSkipped: #848484;--vscode-testing-message\.error\.decorationForeground: #ffffff;--vscode-testing-message\.warning\.decorationForeground: #ffffff;--vscode-testing-message\.info\.decorationForeground: #ffffff;--vscode-testing-message\.hint\.decorationForeground: #ffffff;--vscode-testing-message\.hint\.lineBackground: #ffffff;--vscode-welcomePage-tileBackground: #000000;--vscode-welcomePage-progress\.background: #000000;--vscode-welcomePage-progress\.foreground: #3794ff;--vscode-statusBar-debuggingBackground: #cc6633;--vscode-statusBar-debuggingForeground: #ffffff;--vscode-statusBar-debuggingBorder: #6fc3df;--vscode-debugExceptionWidget-border: #a31515;--vscode-debugExceptionWidget-background: #420b0d;--vscode-editorGutter-modifiedBackground: #009bf9;--vscode-editorGutter-addedBackground: #33ab4e;--vscode-editorGutter-deletedBackground: #fc5d6d;--vscode-minimapGutter-modifiedBackground: #009bf9;--vscode-minimapGutter-addedBackground: #33ab4e;--vscode-minimapGutter-deletedBackground: #fc5d6d;--vscode-editorOverviewRuler-modifiedForeground: rgba(0, 155, 249, .6);--vscode-editorOverviewRuler-addedForeground: rgba(51, 171, 78, .6);--vscode-editorOverviewRuler-deletedForeground: rgba(252, 93, 109, .6);--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, .2);--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, .3);--vscode-debugIcon-breakpointForeground: #e51400;--vscode-debugIcon-breakpointDisabledForeground: #848484;--vscode-debugIcon-breakpointUnverifiedForeground: #848484;--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;--vscode-debugIcon-breakpointStackframeForeground: #89d185;--vscode-scm-providerBorder: #6fc3df;--vscode-notebook-cellBorderColor: #6fc3df;--vscode-notebook-focusedEditorBorder: #f38518;--vscode-notebookStatusSuccessIcon-foreground: #89d185;--vscode-notebookStatusErrorIcon-foreground: #f48771;--vscode-notebookStatusRunningIcon-foreground: #ffffff;--vscode-notebook-cellToolbarSeparator: #6fc3df;--vscode-notebook-selectedCellBorder: #6fc3df;--vscode-notebook-focusedCellBorder: #f38518;--vscode-notebook-inactiveFocusedCellBorder: #6fc3df;--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, .15);--vscode-notebook-cellInsertionIndicator: #f38518;--vscode-notebookScrollbarSlider-background: rgba(111, 195, 223, .6);--vscode-notebookScrollbarSlider-hoverBackground: rgba(111, 195, 223, .8);--vscode-notebookScrollbarSlider-activeBackground: #6fc3df;--vscode-searchEditor-textInputBorder: #6fc3df;--vscode-extensionIcon-starForeground: #ff8e00;--vscode-terminal-ansiBlack: #000000;--vscode-terminal-ansiRed: #cd0000;--vscode-terminal-ansiGreen: #00cd00;--vscode-terminal-ansiYellow: #cdcd00;--vscode-terminal-ansiBlue: #0000ee;--vscode-terminal-ansiMagenta: #cd00cd;--vscode-terminal-ansiCyan: #00cdcd;--vscode-terminal-ansiWhite: #e5e5e5;--vscode-terminal-ansiBrightBlack: #7f7f7f;--vscode-terminal-ansiBrightRed: #ff0000;--vscode-terminal-ansiBrightGreen: #00ff00;--vscode-terminal-ansiBrightYellow: #ffff00;--vscode-terminal-ansiBrightBlue: #5c5cff;--vscode-terminal-ansiBrightMagenta: #ff00ff;--vscode-terminal-ansiBrightCyan: #00ffff;--vscode-terminal-ansiBrightWhite: #ffffff;--vscode-debugTokenExpression-name: #ffffff;--vscode-debugTokenExpression-value: #ffffff;--vscode-debugTokenExpression-string: #f48771;--vscode-debugTokenExpression-boolean: #75bdfe;--vscode-debugTokenExpression-number: #89d185;--vscode-debugTokenExpression-error: #f48771;--vscode-debugView-exceptionLabelForeground: #ffffff;--vscode-debugView-exceptionLabelBackground: #6c2022;--vscode-debugView-stateLabelForeground: #ffffff;--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, .27);--vscode-debugView-valueChangedHighlight: #569cd6;--vscode-debugConsole-infoForeground: #ffffff;--vscode-debugConsole-warningForeground: #008000;--vscode-debugConsole-errorForeground: #f48771;--vscode-debugConsole-sourceForeground: #ffffff;--vscode-debugConsoleInputIcon-foreground: #ffffff;--vscode-debugIcon-pauseForeground: #75beff;--vscode-debugIcon-stopForeground: #f48771;--vscode-debugIcon-disconnectForeground: #f48771;--vscode-debugIcon-restartForeground: #89d185;--vscode-debugIcon-stepOverForeground: #75beff;--vscode-debugIcon-stepIntoForeground: #75beff;--vscode-debugIcon-stepOutForeground: #75beff;--vscode-debugIcon-continueForeground: #75beff;--vscode-debugIcon-stepBackForeground: #75beff;--vscode-gitDecoration-addedResourceForeground: #1b5225;--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;--vscode-gitDecoration-deletedResourceForeground: #c74e39;--vscode-gitDecoration-renamedResourceForeground: #73c991;--vscode-gitDecoration-untrackedResourceForeground: #73c991;--vscode-gitDecoration-ignoredResourceForeground: #a7a8a9;--vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;--vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;--vscode-gitDecoration-conflictingResourceForeground: #c74e39;--vscode-gitDecoration-submoduleResourceForeground: #8db9e2}.property-content{padding:20px 15px}.space{margin-bottom:10px}.space:last-child{margin-bottom:0}.space-toggle{margin-bottom:12px}.space-toggle label{font-size:13px;font-weight:700;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.space-toggle-disabled label{opacity:.55}.dropdownEditor{color:var(--vscode-foreground);font-size:13px;margin-bottom:12px}.dropdownEditor label{font-weight:700;padding-bottom:2px;height:auto}.stringEditor{font-weight:700;font-size:13px;margin-bottom:12px}.stringEditor div label{font-weight:700!important;margin-bottom:0!important}.stringEditorDisabled div div{opacity:.4}.properties-no-control-selected-text{font-style:normal;font-weight:700;font-size:24px;line-height:29px;text-align:center;padding-top:30px;color:var(--vscode-foreground)}.properties-modify-text{font-style:normal;font-weight:400;font-size:13px;line-height:18px;text-align:center;margin:10%;color:var(--vscode-foreground)}.properties-control-select-icon{text-align:center}.filter-properties{display:flex;margin:0 15px 10px;flex-direction:row;align-items:center}.funnel-properties-icon{margin-left:16px}.funnel-properties-icon i{line-height:20px}label[for=editable-properties-checkbox] .ms-Checkbox-text{font-size:13px!important}#theme-light{border-radius:50%;width:14px;height:14px;background:#ffffff}#theme-dark{border-radius:50%;width:14px;height:14px;background-color:#3c3c3c}#theme-high-contrast{border-radius:50%;width:14px;height:14px;background:#f38518}.theme-child{display:flex;float:left;width:20px;height:20px;margin:10px 0 10px 10px;border-radius:1px}.selected{border-radius:1px;background-color:var(--vscode-progressBar-background)}div#theme-light{margin-left:3px;margin-bottom:3px;margin-top:3px}div#theme-dark,div#theme-high-contrast{margin-left:3px;margin-top:3px}.ui-toolbar{position:static;top:initial;left:initial}.ui-toolbar__container{overflow:hidden}.ui-toolbar .column-right{justify-content:flex-end;flex-grow:0}.ui-toolbar .column-left{overflow:hidden}.ui-toolbar .ui-toolbar__content{justify-content:space-between;background-color:inherit;flex-wrap:nowrap;min-width:0}.ui-toolbar .ui-toolbar__column__content{align-items:center;margin:9px 15px}.ui-toolbar .ui-toolbar__column__content>.ms-Button:first-child{margin-left:0}.ui-toolbar .ui-toolbar__column__content>.ms-Button:last-child{margin-right:0}.ui-toolbar .ui-divider{margin:0}.sapUiIcon:before{content:attr(data-sap-ui-icon-content);speak:none;font-weight:400;-webkit-font-smoothing:antialiased}.icon-dialog .ms-Dialog-main{height:100%;max-height:calc(100% - 23rem)}.icon-dialog .ms-Dialog-main .ms-Modal-scrollableContent{height:100%}.icon-dialog .ms-Dialog-main .ms-Modal-scrollableContent>div{height:100%;display:flex;flex-direction:column}.icon-dialog .ms-Dialog-main .ms-Modal-scrollableContent>div .ms-Dialog-inner{height:100%;display:flex;flex-direction:column}.icon-dialog .ms-Dialog-main .ms-Modal-scrollableContent>div .ms-Dialog-inner .ms-Dialog-content{height:100%;bottom:10px;overflow:hidden}@media screen and (max-height: 800px){.icon-dialog .ms-Dialog-main{max-height:calc(100% - 8rem)}}@media screen and (max-height: 600px){.icon-dialog .ms-Dialog-main{max-height:calc(100% - 4rem)}}@media screen and (max-height: 400px){.icon-dialog .ms-Dialog-main{max-height:calc(100% - 50px)}}.icon-table{margin-bottom:46px;overflow-x:hidden;border-bottom:1px solid var(--vscode-scm-providerBorder)}.icon-table .ms-DetailsHeader-cell .not-editable-icon{display:none}.icon-table .ms-DetailsRow-fields:hover{cursor:pointer;background-color:var(--vscode-dropdown-background);color:var(--vscode-dropdown-foreground)}.icon-table .is-selected .ms-DetailsRow-fields{color:var(--vscode-list-activeSelectionForeground)!important;background-color:var(--vscode-list-activeSelectionBackground)!important}.icon-table .root-226:focus .ms-DetailsRow-cell{color:var(--vscode-background)!important}.icon-table .ms-ScrollablePane .ms-FocusZone .ms-DetailsHeader-cell{box-shadow:inset 0 1px 0 var(--vscode-scm-providerBorder),inset 0 -1px 0 var(--vscode-scm-providerBorder),inset -1px 0 0 var(--vscode-scm-providerBorder),inset 1px 0 0 var(--vscode-scm-providerBorder)}.icon-table .ms-ScrollablePane .ms-FocusZone .ms-DetailsRow-fields .ms-DetailsRow-cell:last-child{box-shadow:none}.icon-textField .ms-TextField-wrapper .ms-TextField-fieldGroup .ms-TextField-suffix{color:var(--vscode-input-foreground);background-color:var(--vscode-input-background);padding:1px}.tablediv .ms-ScrollablePane .ms-FocusZone{background:var(--vscode-tab-inactiveBackground)}.filter-icon-div .filter-icons{margin-top:20px}.filter-outline{display:flex;margin:20px 14px 30px;flex-direction:row;align-items:center;overflow-y:auto}.funnel-icon{margin-left:16px}.funnel-icon i{line-height:20px}.funnel-call-out-checkbox{padding-bottom:5px}.tree-no-control-found{font-style:normal;font-weight:700;font-size:24px;line-height:29px;text-align:center;color:var(--vscode-foreground)}.tree-modify-search-input{font-style:normal;font-weight:400;font-size:13px;line-height:18px;text-align:center;padding-top:20px;color:var(--vscode-foreground)}.tree-search-icon{text-align:center}.tree-cell{display:flex;font-size:13px;font-weight:400;white-space:nowrap;text-overflow:ellipsis;height:18px;padding:5px 0;min-width:0px;align-items:center}.tree-row{display:flex;justify-content:space-between;align-items:center}.tree-row:hover{cursor:pointer;background-color:var(--vscode-dropdown-background);color:var(--vscode-dropdown-foreground);outline:1px dashed var(--vscode-contrastActiveBorder)}.app-panel-scroller>div{padding-top:0}.focusEditable{opacity:.55}.tree-row-icon{display:flex;flex-wrap:nowrap;flex-shrink:0;position:relative}.right-chevron-icon{margin-right:3px;transform:rotate(0);transform-origin:50% 50%;transition:transform .1s linear 0s}.down-chevron-icon{margin-right:3px;transform:rotate(90deg);transform-origin:50% 50%;transition:transform .1s linear 0s}.app-panel-selected-bg.tree-row{color:var(--vscode-list-activeSelectionForeground);background-color:var(--vscode-list-activeSelectionBackground);outline:1px solid var(--vscode-contrastActiveBorder)}.editor__outline .section__body{margin:0;padding-left:0!important;padding-right:0}.editor__outline .tree-no-control-found{display:block}.editor__outline .tree-modify-search-input{display:block;margin-bottom:20px}*:not([data-icon-name=CheckMark]):not(.sapUiIcon){font-family:var(--vscode-font-family)!important}html{overflow:hidden}.app{display:flex;height:100%;background-color:var(--vscode-editor-background);min-width:0;min-height:0;overflow:hidden;justify-content:space-between}.app-preview{height:100%;border-width:0}.app-content{flex-grow:1;display:flex;overflow-x:auto;overflow-y:hidden;background-color:inherit;padding:19px}.app-canvas{flex-shrink:1;margin:0 auto}.app-panel{height:100%;width:300px;background:var(--vscode-sideBar-background);color:var(--vscode-foreground);display:flex;flex-direction:column;flex-shrink:0}.app-panel-scroller{overflow-y:auto;overflow-x:hidden}.app-panel-left{border-right:1px solid var(--vscode-contrastBorder)}.app-panel-right{border-left:1px solid var(--vscode-contrastBorder)}.ms-TextField .ms-TextField-field{font-family:var(--vscode-font-family)}.ms-TextField .ms-Label{margin-top:0;margin-bottom:4px;padding:0;font-weight:400;height:18px}.ms-Dialog .ms-Dialog-title,.ms-Dialog .ms-Dialog-subText{color:var(--vscode-foreground)}.ms-GroupHeader.app-panel-selected-bg .ms-GroupHeader-title{color:var(--vscode-list-activeSelectionForeground)}.ms-GroupHeader.app-panel-selected-bg .ms-GroupHeader-expand svg path{fill:var(--vscode-list-activeSelectionForeground)}.uiList-group-entry:hover{outline:1px dashed var(--vscode-contrastActiveBorder)}.ms-Button.ms-Button--icon.is-checked{background-color:var(--vscode-button-hoverBackground);outline:1px solid var(--vscode-contrastActiveBorder)}.ms-Button.ms-Button--icon.is-checked svg path,.ms-Button.ms-Button--icon.is-checked svg rect{fill:var(--vscode-button-foreground)}.app-panel-selected-bg .ms-GroupHeader-expand:hover{color:var(--vscode-list-activeSelectionForeground);background-color:var(--vscode-list-activeSelectionBackground)}.app-panel-hc-selected-bg{outline:1px solid var(--vscode-contrastActiveBorder)}.ms-GroupHeader.ms-GroupHeader--compact:hover{outline:1px dashed var(--vscode-contrastActiveBorder)}.ms-GroupHeader.ms-GroupHeader--compact .ms-GroupHeader-title{height:18px;padding:5px 0;font-family:var(--vscode-font-family)}.ms-GroupHeader.ms-GroupHeader--compact>div{height:28px}
2
+ /*# sourceMappingURL=app.css.map */