@checkly/playwright-core 1.51.17-beta.1 → 1.54.2-beta.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 (376) hide show
  1. package/ThirdPartyNotices.txt +65 -123
  2. package/browsers.json +16 -14
  3. package/index.js +1 -1
  4. package/lib/androidServerImpl.js +47 -50
  5. package/lib/browserServerImpl.js +89 -69
  6. package/lib/checkly/escapeRegExp.js +23 -27
  7. package/lib/checkly/fetch.js +64 -46
  8. package/lib/checkly/secretsFilter.js +49 -36
  9. package/lib/cli/driver.js +71 -69
  10. package/lib/cli/program.js +400 -359
  11. package/lib/cli/programWithTestStub.js +51 -45
  12. package/lib/client/accessibility.js +31 -32
  13. package/lib/client/android.js +151 -242
  14. package/lib/client/api.js +135 -283
  15. package/lib/client/artifact.js +39 -36
  16. package/lib/client/browser.js +96 -71
  17. package/lib/client/browserContext.js +314 -345
  18. package/lib/client/browserType.js +103 -127
  19. package/lib/client/cdpSession.js +29 -31
  20. package/lib/client/channelOwner.js +90 -113
  21. package/lib/client/clientHelper.js +48 -39
  22. package/lib/client/clientInstrumentation.js +40 -37
  23. package/lib/client/clientStackTrace.js +41 -37
  24. package/lib/client/clock.js +36 -36
  25. package/lib/client/connection.js +188 -214
  26. package/lib/client/consoleMessage.js +31 -28
  27. package/lib/client/coverage.js +25 -22
  28. package/lib/client/dialog.js +30 -31
  29. package/lib/client/download.js +25 -25
  30. package/lib/client/electron.js +80 -77
  31. package/lib/client/elementHandle.js +120 -159
  32. package/lib/client/errors.js +53 -53
  33. package/lib/client/eventEmitter.js +124 -121
  34. package/lib/client/events.js +72 -68
  35. package/lib/client/fetch.js +166 -190
  36. package/lib/client/fileChooser.js +25 -24
  37. package/lib/client/fileUtils.js +31 -28
  38. package/lib/client/frame.js +207 -306
  39. package/lib/client/harRouter.js +42 -52
  40. package/lib/client/input.js +42 -69
  41. package/lib/client/jsHandle.js +54 -69
  42. package/lib/client/jsonPipe.js +27 -23
  43. package/lib/client/localUtils.js +29 -29
  44. package/lib/client/locator.js +145 -237
  45. package/lib/client/network.js +282 -307
  46. package/lib/client/page.js +269 -318
  47. package/lib/client/platform.js +46 -43
  48. package/lib/client/playwright.js +51 -76
  49. package/lib/client/selectors.js +45 -63
  50. package/lib/client/stream.js +29 -25
  51. package/lib/client/timeoutSettings.js +55 -41
  52. package/lib/client/tracing.js +49 -96
  53. package/lib/client/types.js +26 -22
  54. package/lib/client/video.js +35 -27
  55. package/lib/client/waiter.js +69 -88
  56. package/lib/client/webError.js +25 -23
  57. package/lib/client/webSocket.js +43 -56
  58. package/lib/client/worker.js +48 -56
  59. package/lib/client/writableStream.js +27 -23
  60. package/lib/generated/bindingsControllerSource.js +28 -0
  61. package/lib/generated/clockSource.js +26 -6
  62. package/lib/generated/consoleApiSource.js +26 -6
  63. package/lib/generated/injectedScriptSource.js +26 -6
  64. package/lib/generated/pollingRecorderSource.js +26 -6
  65. package/lib/generated/storageScriptSource.js +28 -0
  66. package/lib/generated/utilityScriptSource.js +26 -6
  67. package/lib/generated/webSocketMockSource.js +333 -5
  68. package/lib/inProcessFactory.js +51 -53
  69. package/lib/inprocess.js +2 -19
  70. package/lib/outofprocess.js +51 -46
  71. package/lib/protocol/serializers.js +153 -134
  72. package/lib/protocol/validator.js +2807 -2739
  73. package/lib/protocol/validatorPrimitives.js +114 -73
  74. package/lib/remote/playwrightConnection.js +88 -242
  75. package/lib/remote/playwrightServer.js +305 -92
  76. package/lib/server/accessibility.js +44 -37
  77. package/lib/server/android/android.js +251 -241
  78. package/lib/server/android/backendAdb.js +87 -82
  79. package/lib/server/artifact.js +78 -55
  80. package/lib/server/bidi/bidiBrowser.js +297 -158
  81. package/lib/server/bidi/bidiChromium.js +119 -89
  82. package/lib/server/bidi/bidiConnection.js +66 -83
  83. package/lib/server/bidi/bidiExecutionContext.js +129 -113
  84. package/lib/server/bidi/bidiFirefox.js +86 -76
  85. package/lib/server/bidi/bidiInput.js +106 -117
  86. package/lib/server/bidi/bidiNetworkManager.js +142 -159
  87. package/lib/server/bidi/bidiOverCdp.js +57 -58
  88. package/lib/server/bidi/bidiPage.js +260 -260
  89. package/lib/server/bidi/bidiPdf.js +52 -86
  90. package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
  91. package/lib/server/bidi/third_party/bidiDeserializer.js +55 -50
  92. package/lib/server/bidi/third_party/bidiKeyboard.js +236 -220
  93. package/lib/server/bidi/third_party/bidiProtocol.js +22 -137
  94. package/lib/server/bidi/third_party/bidiProtocolCore.js +152 -0
  95. package/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
  96. package/lib/server/bidi/third_party/bidiSerializer.js +67 -63
  97. package/lib/server/bidi/third_party/firefoxPrefs.js +141 -119
  98. package/lib/server/browser.js +93 -95
  99. package/lib/server/browserContext.js +419 -429
  100. package/lib/server/browserType.js +186 -216
  101. package/lib/server/callLog.js +47 -44
  102. package/lib/server/chromium/chromium.js +235 -203
  103. package/lib/server/chromium/chromiumSwitches.js +100 -67
  104. package/lib/server/chromium/crAccessibility.js +157 -131
  105. package/lib/server/chromium/crBrowser.js +310 -292
  106. package/lib/server/chromium/crConnection.js +95 -121
  107. package/lib/server/chromium/crCoverage.js +121 -131
  108. package/lib/server/chromium/crDevTools.js +60 -51
  109. package/lib/server/chromium/crDragDrop.js +68 -84
  110. package/lib/server/chromium/crExecutionContext.js +89 -83
  111. package/lib/server/chromium/crInput.js +118 -113
  112. package/lib/server/chromium/crNetworkManager.js +274 -375
  113. package/lib/server/chromium/crPage.js +536 -593
  114. package/lib/server/chromium/crPdf.js +54 -86
  115. package/lib/server/chromium/crProtocolHelper.js +92 -80
  116. package/lib/server/chromium/crServiceWorker.js +84 -73
  117. package/lib/server/chromium/defaultFontFamilies.js +152 -135
  118. package/lib/server/chromium/protocol.d.js +16 -0
  119. package/lib/server/chromium/videoRecorder.js +66 -99
  120. package/lib/server/clock.js +107 -83
  121. package/lib/server/codegen/csharp.js +192 -162
  122. package/lib/server/codegen/java.js +156 -129
  123. package/lib/server/codegen/javascript.js +163 -148
  124. package/lib/server/codegen/jsonl.js +32 -28
  125. package/lib/server/codegen/language.js +75 -52
  126. package/lib/server/codegen/languages.js +65 -27
  127. package/lib/server/codegen/python.js +141 -126
  128. package/lib/server/codegen/types.js +15 -4
  129. package/lib/server/console.js +28 -32
  130. package/lib/server/cookieStore.js +108 -86
  131. package/lib/server/debugController.js +147 -151
  132. package/lib/server/debugger.js +86 -78
  133. package/lib/server/deviceDescriptors.js +37 -24
  134. package/lib/server/deviceDescriptorsSource.json +238 -128
  135. package/lib/server/dialog.js +84 -39
  136. package/lib/server/dispatchers/androidDispatcher.js +257 -148
  137. package/lib/server/dispatchers/artifactDispatcher.js +79 -79
  138. package/lib/server/dispatchers/browserContextDispatcher.js +289 -259
  139. package/lib/server/dispatchers/browserDispatcher.js +96 -148
  140. package/lib/server/dispatchers/browserTypeDispatcher.js +50 -41
  141. package/lib/server/dispatchers/cdpSessionDispatcher.js +35 -39
  142. package/lib/server/dispatchers/debugControllerDispatcher.js +65 -83
  143. package/lib/server/dispatchers/dialogDispatcher.js +34 -31
  144. package/lib/server/dispatchers/dispatcher.js +208 -248
  145. package/lib/server/dispatchers/electronDispatcher.js +66 -70
  146. package/lib/server/dispatchers/elementHandlerDispatcher.js +164 -216
  147. package/lib/server/dispatchers/frameDispatcher.js +211 -272
  148. package/lib/server/dispatchers/jsHandleDispatcher.js +63 -75
  149. package/lib/server/dispatchers/jsonPipeDispatcher.js +37 -38
  150. package/lib/server/dispatchers/localUtilsDispatcher.js +121 -119
  151. package/lib/server/dispatchers/networkDispatchers.js +117 -128
  152. package/lib/server/dispatchers/pageDispatcher.js +256 -248
  153. package/lib/server/dispatchers/playwrightDispatcher.js +92 -87
  154. package/lib/server/dispatchers/streamDispatcher.js +52 -48
  155. package/lib/server/dispatchers/tracingDispatcher.js +47 -52
  156. package/lib/server/dispatchers/webSocketRouteDispatcher.js +126 -150
  157. package/lib/server/dispatchers/writableStreamDispatcher.js +65 -43
  158. package/lib/server/dom.js +485 -582
  159. package/lib/server/download.js +47 -37
  160. package/lib/server/electron/electron.js +216 -243
  161. package/lib/server/electron/loader.js +9 -37
  162. package/lib/server/errors.js +47 -46
  163. package/lib/server/fetch.js +317 -360
  164. package/lib/server/fileChooser.js +25 -24
  165. package/lib/server/fileUploadUtils.js +66 -60
  166. package/lib/server/firefox/ffAccessibility.js +153 -131
  167. package/lib/server/firefox/ffBrowser.js +268 -305
  168. package/lib/server/firefox/ffConnection.js +63 -84
  169. package/lib/server/firefox/ffExecutionContext.js +92 -73
  170. package/lib/server/firefox/ffInput.js +82 -84
  171. package/lib/server/firefox/ffNetworkManager.js +137 -114
  172. package/lib/server/firefox/ffPage.js +261 -293
  173. package/lib/server/firefox/firefox.js +80 -72
  174. package/lib/server/firefox/protocol.d.js +16 -0
  175. package/lib/server/formData.js +107 -35
  176. package/lib/server/frameSelectors.js +98 -114
  177. package/lib/server/frames.js +845 -1055
  178. package/lib/server/har/harRecorder.js +85 -77
  179. package/lib/server/har/harTracer.js +290 -223
  180. package/lib/server/harBackend.js +80 -80
  181. package/lib/server/helper.js +55 -59
  182. package/lib/server/index.js +59 -99
  183. package/lib/server/input.js +151 -189
  184. package/lib/server/instrumentation.js +57 -44
  185. package/lib/server/javascript.js +133 -134
  186. package/lib/server/launchApp.js +113 -75
  187. package/lib/server/localUtils.js +150 -142
  188. package/lib/server/macEditingCommands.js +141 -137
  189. package/lib/server/network.js +299 -303
  190. package/lib/server/page.js +513 -544
  191. package/lib/server/pipeTransport.js +49 -45
  192. package/lib/server/playwright.js +58 -67
  193. package/lib/server/progress.js +137 -68
  194. package/lib/server/protocolError.js +34 -31
  195. package/lib/server/recorder/chat.js +70 -86
  196. package/lib/server/recorder/recorderApp.js +341 -176
  197. package/lib/server/recorder/recorderInTraceViewer.js +65 -94
  198. package/lib/server/recorder/recorderRunner.js +93 -116
  199. package/lib/server/recorder/recorderSignalProcessor.js +83 -0
  200. package/lib/server/recorder/recorderUtils.js +104 -47
  201. package/lib/server/recorder/throttledFile.js +42 -30
  202. package/lib/server/recorder.js +395 -275
  203. package/lib/server/registry/browserFetcher.js +106 -101
  204. package/lib/server/registry/dependencies.js +245 -196
  205. package/lib/server/registry/index.js +930 -803
  206. package/lib/server/registry/nativeDeps.js +1073 -464
  207. package/lib/server/registry/oopDownloadBrowserMain.js +57 -75
  208. package/lib/server/screenshotter.js +160 -191
  209. package/lib/server/selectors.js +90 -51
  210. package/lib/server/socksClientCertificatesInterceptor.js +171 -186
  211. package/lib/server/socksInterceptor.js +62 -70
  212. package/lib/server/trace/recorder/snapshotter.js +76 -102
  213. package/lib/server/trace/recorder/snapshotterInjected.js +238 -217
  214. package/lib/server/trace/recorder/tracing.js +354 -362
  215. package/lib/server/trace/test/inMemorySnapshotter.js +46 -52
  216. package/lib/server/trace/viewer/traceViewer.js +160 -147
  217. package/lib/server/transport.js +119 -134
  218. package/lib/server/types.js +26 -22
  219. package/lib/server/usKeyboardLayout.js +135 -545
  220. package/lib/server/utils/ascii.js +39 -26
  221. package/lib/server/utils/comparators.js +105 -103
  222. package/lib/server/utils/crypto.js +157 -112
  223. package/lib/server/utils/debug.js +36 -32
  224. package/lib/server/utils/debugLogger.js +77 -48
  225. package/lib/server/utils/env.js +52 -37
  226. package/lib/server/utils/eventsHelper.js +29 -28
  227. package/lib/server/utils/expectUtils.js +31 -26
  228. package/lib/server/utils/fileUtils.js +123 -136
  229. package/lib/server/utils/happyEyeballs.js +141 -126
  230. package/lib/server/utils/hostPlatform.js +84 -120
  231. package/lib/server/utils/httpServer.js +106 -121
  232. package/lib/server/utils/image_tools/colorUtils.js +42 -51
  233. package/lib/server/utils/image_tools/compare.js +44 -43
  234. package/lib/server/utils/image_tools/imageChannel.js +38 -30
  235. package/lib/server/utils/image_tools/stats.js +40 -40
  236. package/lib/server/utils/linuxUtils.js +50 -37
  237. package/lib/server/utils/network.js +152 -96
  238. package/lib/server/utils/nodePlatform.js +87 -79
  239. package/lib/server/utils/pipeTransport.js +44 -42
  240. package/lib/server/utils/processLauncher.js +111 -121
  241. package/lib/server/utils/profiler.js +52 -39
  242. package/lib/server/utils/socksProxy.js +280 -339
  243. package/lib/server/utils/spawnAsync.js +37 -41
  244. package/lib/server/utils/task.js +31 -38
  245. package/lib/server/utils/userAgent.js +73 -66
  246. package/lib/server/utils/wsServer.js +68 -75
  247. package/lib/server/utils/zipFile.js +36 -37
  248. package/lib/server/utils/zones.js +37 -34
  249. package/lib/server/webkit/protocol.d.js +16 -0
  250. package/lib/server/webkit/webkit.js +77 -61
  251. package/lib/server/webkit/wkAccessibility.js +161 -118
  252. package/lib/server/webkit/wkBrowser.js +193 -184
  253. package/lib/server/webkit/wkConnection.js +59 -83
  254. package/lib/server/webkit/wkExecutionContext.js +85 -70
  255. package/lib/server/webkit/wkInput.js +97 -95
  256. package/lib/server/webkit/wkInterceptableRequest.js +102 -95
  257. package/lib/server/webkit/wkPage.js +568 -667
  258. package/lib/server/webkit/wkProvisionalPage.js +45 -56
  259. package/lib/server/webkit/wkWorkers.js +79 -79
  260. package/lib/utils/expectUtils.js +31 -26
  261. package/lib/utils/isomorphic/ariaSnapshot.js +149 -152
  262. package/lib/utils/isomorphic/assert.js +28 -22
  263. package/lib/utils/isomorphic/colors.js +66 -59
  264. package/lib/utils/isomorphic/cssParser.js +120 -125
  265. package/lib/utils/isomorphic/cssTokenizer.js +436 -364
  266. package/lib/utils/isomorphic/headers.js +38 -37
  267. package/lib/utils/isomorphic/locatorGenerators.js +358 -357
  268. package/lib/utils/isomorphic/locatorParser.js +96 -105
  269. package/lib/utils/isomorphic/locatorUtils.js +63 -44
  270. package/lib/utils/isomorphic/manualPromise.js +46 -39
  271. package/lib/utils/isomorphic/mimeType.js +447 -25
  272. package/lib/utils/isomorphic/multimap.js +34 -27
  273. package/lib/utils/isomorphic/protocolFormatter.js +68 -0
  274. package/lib/utils/isomorphic/protocolMetainfo.js +321 -0
  275. package/lib/utils/isomorphic/recorderUtils.js +140 -181
  276. package/lib/utils/isomorphic/rtti.js +35 -33
  277. package/lib/utils/isomorphic/selectorParser.js +182 -193
  278. package/lib/utils/isomorphic/semaphore.js +27 -24
  279. package/lib/utils/isomorphic/stackTrace.js +87 -98
  280. package/lib/utils/isomorphic/stringUtils.js +98 -112
  281. package/lib/utils/isomorphic/time.js +46 -22
  282. package/lib/utils/isomorphic/timeoutRunner.js +53 -53
  283. package/lib/utils/isomorphic/traceUtils.js +37 -41
  284. package/lib/utils/isomorphic/types.js +15 -4
  285. package/lib/utils/isomorphic/urlMatch.js +113 -67
  286. package/lib/utils/isomorphic/utilityScriptSerializers.js +251 -0
  287. package/lib/utils.js +101 -443
  288. package/lib/utilsBundle.js +101 -52
  289. package/lib/utilsBundleImpl/index.js +160 -150
  290. package/lib/zipBundle.js +32 -23
  291. package/lib/zipBundleImpl.js +4 -4
  292. package/package.json +1 -1
  293. package/types/protocol.d.ts +1267 -1057
  294. package/types/types.d.ts +131 -29
  295. package/lib/common/socksProxy.js +0 -569
  296. package/lib/common/timeoutSettings.js +0 -73
  297. package/lib/common/types.js +0 -5
  298. package/lib/image_tools/colorUtils.js +0 -98
  299. package/lib/image_tools/compare.js +0 -108
  300. package/lib/image_tools/imageChannel.js +0 -70
  301. package/lib/image_tools/stats.js +0 -102
  302. package/lib/protocol/debug.js +0 -27
  303. package/lib/protocol/transport.js +0 -82
  304. package/lib/server/dispatchers/selectorsDispatcher.js +0 -36
  305. package/lib/server/isomorphic/utilityScriptSerializers.js +0 -229
  306. package/lib/server/recorder/contextRecorder.js +0 -290
  307. package/lib/server/recorder/recorderCollection.js +0 -104
  308. package/lib/server/recorder/recorderFrontend.js +0 -5
  309. package/lib/server/storageScript.js +0 -160
  310. package/lib/server/timeoutSettings.js +0 -74
  311. package/lib/third_party/diff_match_patch.js +0 -2222
  312. package/lib/utils/ascii.js +0 -31
  313. package/lib/utils/comparators.js +0 -171
  314. package/lib/utils/crypto.js +0 -174
  315. package/lib/utils/debug.js +0 -46
  316. package/lib/utils/debugLogger.js +0 -91
  317. package/lib/utils/env.js +0 -49
  318. package/lib/utils/eventsHelper.js +0 -38
  319. package/lib/utils/fileUtils.js +0 -205
  320. package/lib/utils/happy-eyeballs.js +0 -210
  321. package/lib/utils/headers.js +0 -52
  322. package/lib/utils/hostPlatform.js +0 -133
  323. package/lib/utils/httpServer.js +0 -237
  324. package/lib/utils/index.js +0 -368
  325. package/lib/utils/linuxUtils.js +0 -78
  326. package/lib/utils/manualPromise.js +0 -109
  327. package/lib/utils/multimap.js +0 -75
  328. package/lib/utils/network.js +0 -160
  329. package/lib/utils/processLauncher.js +0 -248
  330. package/lib/utils/profiler.js +0 -53
  331. package/lib/utils/rtti.js +0 -44
  332. package/lib/utils/semaphore.js +0 -51
  333. package/lib/utils/spawnAsync.js +0 -45
  334. package/lib/utils/stackTrace.js +0 -121
  335. package/lib/utils/task.js +0 -58
  336. package/lib/utils/time.js +0 -37
  337. package/lib/utils/timeoutRunner.js +0 -66
  338. package/lib/utils/traceUtils.js +0 -44
  339. package/lib/utils/userAgent.js +0 -105
  340. package/lib/utils/wsServer.js +0 -127
  341. package/lib/utils/zipFile.js +0 -75
  342. package/lib/utils/zones.js +0 -62
  343. package/lib/vite/htmlReport/index.html +0 -69
  344. package/lib/vite/recorder/assets/codeMirrorModule-DrMbgOIo.js +0 -16684
  345. package/lib/vite/recorder/assets/codeMirrorModule-DuST8d_k.css +0 -344
  346. package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  347. package/lib/vite/recorder/assets/index-5NM3V7eb.css +0 -2524
  348. package/lib/vite/recorder/assets/index-CT-scFHn.js +0 -16848
  349. package/lib/vite/recorder/index.html +0 -29
  350. package/lib/vite/recorder/playwright-logo.svg +0 -9
  351. package/lib/vite/traceViewer/assets/codeMirrorModule-CB-2okZ8.js +0 -16684
  352. package/lib/vite/traceViewer/assets/defaultSettingsView-CBiB4avC.js +0 -217
  353. package/lib/vite/traceViewer/assets/inspectorTab-CwgfffWb.js +0 -25143
  354. package/lib/vite/traceViewer/assets/workbench-CWZselvp.js +0 -2470
  355. package/lib/vite/traceViewer/assets/xtermModule-Es_gt_u7.js +0 -5994
  356. package/lib/vite/traceViewer/codeMirrorModule.DuST8d_k.css +0 -344
  357. package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  358. package/lib/vite/traceViewer/defaultSettingsView.Dp3b_92q.css +0 -41
  359. package/lib/vite/traceViewer/embedded.BeldSa2G.css +0 -68
  360. package/lib/vite/traceViewer/embedded.gzudoghF.js +0 -106
  361. package/lib/vite/traceViewer/embedded.html +0 -18
  362. package/lib/vite/traceViewer/index.DilotR1h.js +0 -314
  363. package/lib/vite/traceViewer/index.QewjJ85u.css +0 -131
  364. package/lib/vite/traceViewer/index.html +0 -47
  365. package/lib/vite/traceViewer/inspectorTab.DnGm18kV.css +0 -3178
  366. package/lib/vite/traceViewer/playwright-logo.svg +0 -9
  367. package/lib/vite/traceViewer/recorder.DLgqV9db.css +0 -15
  368. package/lib/vite/traceViewer/recorder.DVrkq3Um.js +0 -551
  369. package/lib/vite/traceViewer/recorder.html +0 -17
  370. package/lib/vite/traceViewer/snapshot.html +0 -21
  371. package/lib/vite/traceViewer/sw.bundle.js +0 -3
  372. package/lib/vite/traceViewer/uiMode.C9_OcpPU.js +0 -1756
  373. package/lib/vite/traceViewer/uiMode.c5ORgcrX.css +0 -1424
  374. package/lib/vite/traceViewer/uiMode.html +0 -21
  375. package/lib/vite/traceViewer/workbench.xUZSA8PY.css +0 -787
  376. package/lib/vite/traceViewer/xtermModule.EsaqrrTX.css +0 -209
@@ -1,3178 +0,0 @@
1
- /*
2
- Copyright (c) Microsoft Corporation.
3
-
4
- Licensed under the Apache License, Version 2.0 (the "License");
5
- you may not use this file except in compliance with the License.
6
- You may obtain a copy of the License at
7
-
8
- http://www.apache.org/licenses/LICENSE-2.0
9
-
10
- Unless required by applicable law or agreed to in writing, software
11
- distributed under the License is distributed on an "AS IS" BASIS,
12
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- See the License for the specific language governing permissions and
14
- limitations under the License.
15
- */
16
-
17
- :root {
18
- color-scheme: light dark;
19
- }
20
-
21
- body {
22
- --transparent-blue: #2196F355;
23
- --light-pink: #ff69b460;
24
- --gray: #888888;
25
- --sidebar-width: 250px;
26
- --box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
27
- }
28
-
29
- html, body {
30
- width: 100%;
31
- height: 100%;
32
- padding: 0;
33
- margin: 0;
34
- overflow: hidden;
35
- display: flex;
36
- overscroll-behavior-x: none;
37
- }
38
-
39
- #root {
40
- width: 100%;
41
- height: 100%;
42
- display: flex;
43
- }
44
-
45
- body, dialog {
46
- background-color: var(--vscode-panel-background);
47
- color: var(--vscode-foreground);
48
- font-family: var(--vscode-font-family);
49
- font-weight: var(--vscode-font-weight);
50
- font-size: var(--vscode-font-size);
51
- -webkit-font-smoothing: antialiased;
52
- }
53
-
54
- a {
55
- color: var(--vscode-textLink-foreground);
56
- }
57
-
58
- dialog {
59
- border: none;
60
- padding: 0;
61
- box-shadow: var(--box-shadow);
62
- line-height: 28px;
63
- max-width: 400px;
64
- }
65
-
66
- dialog .title {
67
- display: flex;
68
- align-items: center;
69
- margin: 0;
70
- padding: 0 5px;
71
- height: 32px;
72
- background-color: var(--vscode-sideBar-background);
73
- max-width: 400px;
74
- }
75
-
76
- dialog .title .codicon {
77
- margin-right: 3px;
78
- }
79
-
80
- dialog .body {
81
- padding: 10px;
82
- text-align: center;
83
- }
84
-
85
- .button {
86
- color: var(--vscode-button-foreground);
87
- background: var(--vscode-button-background);
88
- margin: 10px;
89
- border: none;
90
- height: 28px;
91
- min-width: 40px;
92
- cursor: pointer;
93
- user-select: none;
94
- }
95
-
96
- .button:focus {
97
- outline: 1px solid var(--vscode-focusBorder);
98
- }
99
-
100
- .button:hover {
101
- background: var(--vscode-button-hoverBackground);
102
- }
103
-
104
- .button.secondary {
105
- color: var(--vscode-button-secondaryForeground);
106
- background: var(--vscode-button-secondaryBackground);
107
- }
108
-
109
- .button.secondary:hover {
110
- background: var(--vscode-button-secondaryHoverBackground);
111
- }
112
-
113
- * {
114
- box-sizing: border-box;
115
- min-width: 0;
116
- min-height: 0;
117
- }
118
-
119
- *[hidden],
120
- .hidden {
121
- display: none !important;
122
- }
123
-
124
- .invisible {
125
- visibility: hidden !important;
126
- }
127
-
128
- svg {
129
- fill: currentColor;
130
- }
131
-
132
- .vbox {
133
- display: flex;
134
- flex-direction: column;
135
- flex: auto;
136
- position: relative;
137
- }
138
-
139
- .fill {
140
- position: absolute;
141
- top: 0;
142
- right: 0;
143
- bottom: 0;
144
- left: 0;
145
- }
146
-
147
- .hbox {
148
- display: flex;
149
- flex: auto;
150
- position: relative;
151
- }
152
-
153
- .spacer {
154
- flex: auto;
155
- }
156
-
157
- .codicon-check {
158
- color: var(--vscode-charts-green);
159
- }
160
-
161
- .codicon-error {
162
- color: var(--vscode-errorForeground);
163
- }
164
-
165
- .codicon-warning {
166
- color: var(--vscode-list-warningForeground);
167
- }
168
-
169
- .codicon-circle-outline {
170
- color: var(--vscode-disabledForeground);
171
- }
172
-
173
- input[type=text], input[type=search] {
174
- color: var(--vscode-input-foreground);
175
- background-color: var(--vscode-input-background);
176
- border: none;
177
- outline: none;
178
- }
179
-
180
- body.dark-mode ::-webkit-scrollbar {
181
- width: 10px;
182
- }
183
-
184
- body.dark-mode ::-webkit-scrollbar-thumb {
185
- background-color: #555;
186
- }
187
-
188
- body.dark-mode ::-webkit-scrollbar-track {
189
- background-color: #333;
190
- }
191
-
192
- body.dark-mode ::-webkit-scrollbar-thumb:hover {
193
- background-color: #777;
194
- }
195
-
196
- body.dark-mode ::-webkit-scrollbar-track:hover {
197
- background-color: #444;
198
- }
199
-
200
- .codicon-loading {
201
- animation: spin 1s infinite linear;
202
- }
203
-
204
- ::placeholder {
205
- color: var(--vscode-input-placeholderForeground);
206
- }
207
-
208
- @keyframes spin {
209
- 100% {
210
- transform: rotate(360deg);
211
- }
212
- }
213
- /*---------------------------------------------------------------------------------------------
214
- * Copyright (c) Microsoft Corporation. All rights reserved.
215
- * Licensed under the MIT License. See License.txt in the project root for license information.
216
- *--------------------------------------------------------------------------------------------*/
217
-
218
- @font-face {
219
- font-family: "codicon";
220
- src: url("./codicon.DCmgc-ay.ttf") format("truetype");
221
- }
222
-
223
- .codicon {
224
- font: normal normal normal 16px/1 codicon;
225
- flex: none;
226
- display: inline-block;
227
- text-decoration: none;
228
- text-rendering: auto;
229
- text-align: center;
230
- -webkit-font-smoothing: antialiased;
231
- -moz-osx-font-smoothing: grayscale;
232
- -webkit-user-select: none;
233
- -moz-user-select: none;
234
- -ms-user-select: none;
235
- user-select: none;
236
- }
237
-
238
- .codicon-add:before { content: '\ea60'; }
239
- .codicon-plus:before { content: '\ea60'; }
240
- .codicon-gist-new:before { content: '\ea60'; }
241
- .codicon-repo-create:before { content: '\ea60'; }
242
- .codicon-lightbulb:before { content: '\ea61'; }
243
- .codicon-light-bulb:before { content: '\ea61'; }
244
- .codicon-repo:before { content: '\ea62'; }
245
- .codicon-repo-delete:before { content: '\ea62'; }
246
- .codicon-gist-fork:before { content: '\ea63'; }
247
- .codicon-repo-forked:before { content: '\ea63'; }
248
- .codicon-git-pull-request:before { content: '\ea64'; }
249
- .codicon-git-pull-request-abandoned:before { content: '\ea64'; }
250
- .codicon-record-keys:before { content: '\ea65'; }
251
- .codicon-keyboard:before { content: '\ea65'; }
252
- .codicon-tag:before { content: '\ea66'; }
253
- .codicon-git-pull-request-label:before { content: '\ea66'; }
254
- .codicon-tag-add:before { content: '\ea66'; }
255
- .codicon-tag-remove:before { content: '\ea66'; }
256
- .codicon-person:before { content: '\ea67'; }
257
- .codicon-person-follow:before { content: '\ea67'; }
258
- .codicon-person-outline:before { content: '\ea67'; }
259
- .codicon-person-filled:before { content: '\ea67'; }
260
- .codicon-git-branch:before { content: '\ea68'; }
261
- .codicon-git-branch-create:before { content: '\ea68'; }
262
- .codicon-git-branch-delete:before { content: '\ea68'; }
263
- .codicon-source-control:before { content: '\ea68'; }
264
- .codicon-mirror:before { content: '\ea69'; }
265
- .codicon-mirror-public:before { content: '\ea69'; }
266
- .codicon-star:before { content: '\ea6a'; }
267
- .codicon-star-add:before { content: '\ea6a'; }
268
- .codicon-star-delete:before { content: '\ea6a'; }
269
- .codicon-star-empty:before { content: '\ea6a'; }
270
- .codicon-comment:before { content: '\ea6b'; }
271
- .codicon-comment-add:before { content: '\ea6b'; }
272
- .codicon-alert:before { content: '\ea6c'; }
273
- .codicon-warning:before { content: '\ea6c'; }
274
- .codicon-search:before { content: '\ea6d'; }
275
- .codicon-search-save:before { content: '\ea6d'; }
276
- .codicon-log-out:before { content: '\ea6e'; }
277
- .codicon-sign-out:before { content: '\ea6e'; }
278
- .codicon-log-in:before { content: '\ea6f'; }
279
- .codicon-sign-in:before { content: '\ea6f'; }
280
- .codicon-eye:before { content: '\ea70'; }
281
- .codicon-eye-unwatch:before { content: '\ea70'; }
282
- .codicon-eye-watch:before { content: '\ea70'; }
283
- .codicon-circle-filled:before { content: '\ea71'; }
284
- .codicon-primitive-dot:before { content: '\ea71'; }
285
- .codicon-close-dirty:before { content: '\ea71'; }
286
- .codicon-debug-breakpoint:before { content: '\ea71'; }
287
- .codicon-debug-breakpoint-disabled:before { content: '\ea71'; }
288
- .codicon-debug-hint:before { content: '\ea71'; }
289
- .codicon-terminal-decoration-success:before { content: '\ea71'; }
290
- .codicon-primitive-square:before { content: '\ea72'; }
291
- .codicon-edit:before { content: '\ea73'; }
292
- .codicon-pencil:before { content: '\ea73'; }
293
- .codicon-info:before { content: '\ea74'; }
294
- .codicon-issue-opened:before { content: '\ea74'; }
295
- .codicon-gist-private:before { content: '\ea75'; }
296
- .codicon-git-fork-private:before { content: '\ea75'; }
297
- .codicon-lock:before { content: '\ea75'; }
298
- .codicon-mirror-private:before { content: '\ea75'; }
299
- .codicon-close:before { content: '\ea76'; }
300
- .codicon-remove-close:before { content: '\ea76'; }
301
- .codicon-x:before { content: '\ea76'; }
302
- .codicon-repo-sync:before { content: '\ea77'; }
303
- .codicon-sync:before { content: '\ea77'; }
304
- .codicon-clone:before { content: '\ea78'; }
305
- .codicon-desktop-download:before { content: '\ea78'; }
306
- .codicon-beaker:before { content: '\ea79'; }
307
- .codicon-microscope:before { content: '\ea79'; }
308
- .codicon-vm:before { content: '\ea7a'; }
309
- .codicon-device-desktop:before { content: '\ea7a'; }
310
- .codicon-file:before { content: '\ea7b'; }
311
- .codicon-file-text:before { content: '\ea7b'; }
312
- .codicon-more:before { content: '\ea7c'; }
313
- .codicon-ellipsis:before { content: '\ea7c'; }
314
- .codicon-kebab-horizontal:before { content: '\ea7c'; }
315
- .codicon-mail-reply:before { content: '\ea7d'; }
316
- .codicon-reply:before { content: '\ea7d'; }
317
- .codicon-organization:before { content: '\ea7e'; }
318
- .codicon-organization-filled:before { content: '\ea7e'; }
319
- .codicon-organization-outline:before { content: '\ea7e'; }
320
- .codicon-new-file:before { content: '\ea7f'; }
321
- .codicon-file-add:before { content: '\ea7f'; }
322
- .codicon-new-folder:before { content: '\ea80'; }
323
- .codicon-file-directory-create:before { content: '\ea80'; }
324
- .codicon-trash:before { content: '\ea81'; }
325
- .codicon-trashcan:before { content: '\ea81'; }
326
- .codicon-history:before { content: '\ea82'; }
327
- .codicon-clock:before { content: '\ea82'; }
328
- .codicon-folder:before { content: '\ea83'; }
329
- .codicon-file-directory:before { content: '\ea83'; }
330
- .codicon-symbol-folder:before { content: '\ea83'; }
331
- .codicon-logo-github:before { content: '\ea84'; }
332
- .codicon-mark-github:before { content: '\ea84'; }
333
- .codicon-github:before { content: '\ea84'; }
334
- .codicon-terminal:before { content: '\ea85'; }
335
- .codicon-console:before { content: '\ea85'; }
336
- .codicon-repl:before { content: '\ea85'; }
337
- .codicon-zap:before { content: '\ea86'; }
338
- .codicon-symbol-event:before { content: '\ea86'; }
339
- .codicon-error:before { content: '\ea87'; }
340
- .codicon-stop:before { content: '\ea87'; }
341
- .codicon-variable:before { content: '\ea88'; }
342
- .codicon-symbol-variable:before { content: '\ea88'; }
343
- .codicon-array:before { content: '\ea8a'; }
344
- .codicon-symbol-array:before { content: '\ea8a'; }
345
- .codicon-symbol-module:before { content: '\ea8b'; }
346
- .codicon-symbol-package:before { content: '\ea8b'; }
347
- .codicon-symbol-namespace:before { content: '\ea8b'; }
348
- .codicon-symbol-object:before { content: '\ea8b'; }
349
- .codicon-symbol-method:before { content: '\ea8c'; }
350
- .codicon-symbol-function:before { content: '\ea8c'; }
351
- .codicon-symbol-constructor:before { content: '\ea8c'; }
352
- .codicon-symbol-boolean:before { content: '\ea8f'; }
353
- .codicon-symbol-null:before { content: '\ea8f'; }
354
- .codicon-symbol-numeric:before { content: '\ea90'; }
355
- .codicon-symbol-number:before { content: '\ea90'; }
356
- .codicon-symbol-structure:before { content: '\ea91'; }
357
- .codicon-symbol-struct:before { content: '\ea91'; }
358
- .codicon-symbol-parameter:before { content: '\ea92'; }
359
- .codicon-symbol-type-parameter:before { content: '\ea92'; }
360
- .codicon-symbol-key:before { content: '\ea93'; }
361
- .codicon-symbol-text:before { content: '\ea93'; }
362
- .codicon-symbol-reference:before { content: '\ea94'; }
363
- .codicon-go-to-file:before { content: '\ea94'; }
364
- .codicon-symbol-enum:before { content: '\ea95'; }
365
- .codicon-symbol-value:before { content: '\ea95'; }
366
- .codicon-symbol-ruler:before { content: '\ea96'; }
367
- .codicon-symbol-unit:before { content: '\ea96'; }
368
- .codicon-activate-breakpoints:before { content: '\ea97'; }
369
- .codicon-archive:before { content: '\ea98'; }
370
- .codicon-arrow-both:before { content: '\ea99'; }
371
- .codicon-arrow-down:before { content: '\ea9a'; }
372
- .codicon-arrow-left:before { content: '\ea9b'; }
373
- .codicon-arrow-right:before { content: '\ea9c'; }
374
- .codicon-arrow-small-down:before { content: '\ea9d'; }
375
- .codicon-arrow-small-left:before { content: '\ea9e'; }
376
- .codicon-arrow-small-right:before { content: '\ea9f'; }
377
- .codicon-arrow-small-up:before { content: '\eaa0'; }
378
- .codicon-arrow-up:before { content: '\eaa1'; }
379
- .codicon-bell:before { content: '\eaa2'; }
380
- .codicon-bold:before { content: '\eaa3'; }
381
- .codicon-book:before { content: '\eaa4'; }
382
- .codicon-bookmark:before { content: '\eaa5'; }
383
- .codicon-debug-breakpoint-conditional-unverified:before { content: '\eaa6'; }
384
- .codicon-debug-breakpoint-conditional:before { content: '\eaa7'; }
385
- .codicon-debug-breakpoint-conditional-disabled:before { content: '\eaa7'; }
386
- .codicon-debug-breakpoint-data-unverified:before { content: '\eaa8'; }
387
- .codicon-debug-breakpoint-data:before { content: '\eaa9'; }
388
- .codicon-debug-breakpoint-data-disabled:before { content: '\eaa9'; }
389
- .codicon-debug-breakpoint-log-unverified:before { content: '\eaaa'; }
390
- .codicon-debug-breakpoint-log:before { content: '\eaab'; }
391
- .codicon-debug-breakpoint-log-disabled:before { content: '\eaab'; }
392
- .codicon-briefcase:before { content: '\eaac'; }
393
- .codicon-broadcast:before { content: '\eaad'; }
394
- .codicon-browser:before { content: '\eaae'; }
395
- .codicon-bug:before { content: '\eaaf'; }
396
- .codicon-calendar:before { content: '\eab0'; }
397
- .codicon-case-sensitive:before { content: '\eab1'; }
398
- .codicon-check:before { content: '\eab2'; }
399
- .codicon-checklist:before { content: '\eab3'; }
400
- .codicon-chevron-down:before { content: '\eab4'; }
401
- .codicon-chevron-left:before { content: '\eab5'; }
402
- .codicon-chevron-right:before { content: '\eab6'; }
403
- .codicon-chevron-up:before { content: '\eab7'; }
404
- .codicon-chrome-close:before { content: '\eab8'; }
405
- .codicon-chrome-maximize:before { content: '\eab9'; }
406
- .codicon-chrome-minimize:before { content: '\eaba'; }
407
- .codicon-chrome-restore:before { content: '\eabb'; }
408
- .codicon-circle-outline:before { content: '\eabc'; }
409
- .codicon-circle:before { content: '\eabc'; }
410
- .codicon-debug-breakpoint-unverified:before { content: '\eabc'; }
411
- .codicon-terminal-decoration-incomplete:before { content: '\eabc'; }
412
- .codicon-circle-slash:before { content: '\eabd'; }
413
- .codicon-circuit-board:before { content: '\eabe'; }
414
- .codicon-clear-all:before { content: '\eabf'; }
415
- .codicon-clippy:before { content: '\eac0'; }
416
- .codicon-close-all:before { content: '\eac1'; }
417
- .codicon-cloud-download:before { content: '\eac2'; }
418
- .codicon-cloud-upload:before { content: '\eac3'; }
419
- .codicon-code:before { content: '\eac4'; }
420
- .codicon-collapse-all:before { content: '\eac5'; }
421
- .codicon-color-mode:before { content: '\eac6'; }
422
- .codicon-comment-discussion:before { content: '\eac7'; }
423
- .codicon-credit-card:before { content: '\eac9'; }
424
- .codicon-dash:before { content: '\eacc'; }
425
- .codicon-dashboard:before { content: '\eacd'; }
426
- .codicon-database:before { content: '\eace'; }
427
- .codicon-debug-continue:before { content: '\eacf'; }
428
- .codicon-debug-disconnect:before { content: '\ead0'; }
429
- .codicon-debug-pause:before { content: '\ead1'; }
430
- .codicon-debug-restart:before { content: '\ead2'; }
431
- .codicon-debug-start:before { content: '\ead3'; }
432
- .codicon-debug-step-into:before { content: '\ead4'; }
433
- .codicon-debug-step-out:before { content: '\ead5'; }
434
- .codicon-debug-step-over:before { content: '\ead6'; }
435
- .codicon-debug-stop:before { content: '\ead7'; }
436
- .codicon-debug:before { content: '\ead8'; }
437
- .codicon-device-camera-video:before { content: '\ead9'; }
438
- .codicon-device-camera:before { content: '\eada'; }
439
- .codicon-device-mobile:before { content: '\eadb'; }
440
- .codicon-diff-added:before { content: '\eadc'; }
441
- .codicon-diff-ignored:before { content: '\eadd'; }
442
- .codicon-diff-modified:before { content: '\eade'; }
443
- .codicon-diff-removed:before { content: '\eadf'; }
444
- .codicon-diff-renamed:before { content: '\eae0'; }
445
- .codicon-diff:before { content: '\eae1'; }
446
- .codicon-diff-sidebyside:before { content: '\eae1'; }
447
- .codicon-discard:before { content: '\eae2'; }
448
- .codicon-editor-layout:before { content: '\eae3'; }
449
- .codicon-empty-window:before { content: '\eae4'; }
450
- .codicon-exclude:before { content: '\eae5'; }
451
- .codicon-extensions:before { content: '\eae6'; }
452
- .codicon-eye-closed:before { content: '\eae7'; }
453
- .codicon-file-binary:before { content: '\eae8'; }
454
- .codicon-file-code:before { content: '\eae9'; }
455
- .codicon-file-media:before { content: '\eaea'; }
456
- .codicon-file-pdf:before { content: '\eaeb'; }
457
- .codicon-file-submodule:before { content: '\eaec'; }
458
- .codicon-file-symlink-directory:before { content: '\eaed'; }
459
- .codicon-file-symlink-file:before { content: '\eaee'; }
460
- .codicon-file-zip:before { content: '\eaef'; }
461
- .codicon-files:before { content: '\eaf0'; }
462
- .codicon-filter:before { content: '\eaf1'; }
463
- .codicon-flame:before { content: '\eaf2'; }
464
- .codicon-fold-down:before { content: '\eaf3'; }
465
- .codicon-fold-up:before { content: '\eaf4'; }
466
- .codicon-fold:before { content: '\eaf5'; }
467
- .codicon-folder-active:before { content: '\eaf6'; }
468
- .codicon-folder-opened:before { content: '\eaf7'; }
469
- .codicon-gear:before { content: '\eaf8'; }
470
- .codicon-gift:before { content: '\eaf9'; }
471
- .codicon-gist-secret:before { content: '\eafa'; }
472
- .codicon-gist:before { content: '\eafb'; }
473
- .codicon-git-commit:before { content: '\eafc'; }
474
- .codicon-git-compare:before { content: '\eafd'; }
475
- .codicon-compare-changes:before { content: '\eafd'; }
476
- .codicon-git-merge:before { content: '\eafe'; }
477
- .codicon-github-action:before { content: '\eaff'; }
478
- .codicon-github-alt:before { content: '\eb00'; }
479
- .codicon-globe:before { content: '\eb01'; }
480
- .codicon-grabber:before { content: '\eb02'; }
481
- .codicon-graph:before { content: '\eb03'; }
482
- .codicon-gripper:before { content: '\eb04'; }
483
- .codicon-heart:before { content: '\eb05'; }
484
- .codicon-home:before { content: '\eb06'; }
485
- .codicon-horizontal-rule:before { content: '\eb07'; }
486
- .codicon-hubot:before { content: '\eb08'; }
487
- .codicon-inbox:before { content: '\eb09'; }
488
- .codicon-issue-reopened:before { content: '\eb0b'; }
489
- .codicon-issues:before { content: '\eb0c'; }
490
- .codicon-italic:before { content: '\eb0d'; }
491
- .codicon-jersey:before { content: '\eb0e'; }
492
- .codicon-json:before { content: '\eb0f'; }
493
- .codicon-kebab-vertical:before { content: '\eb10'; }
494
- .codicon-key:before { content: '\eb11'; }
495
- .codicon-law:before { content: '\eb12'; }
496
- .codicon-lightbulb-autofix:before { content: '\eb13'; }
497
- .codicon-link-external:before { content: '\eb14'; }
498
- .codicon-link:before { content: '\eb15'; }
499
- .codicon-list-ordered:before { content: '\eb16'; }
500
- .codicon-list-unordered:before { content: '\eb17'; }
501
- .codicon-live-share:before { content: '\eb18'; }
502
- .codicon-loading:before { content: '\eb19'; }
503
- .codicon-location:before { content: '\eb1a'; }
504
- .codicon-mail-read:before { content: '\eb1b'; }
505
- .codicon-mail:before { content: '\eb1c'; }
506
- .codicon-markdown:before { content: '\eb1d'; }
507
- .codicon-megaphone:before { content: '\eb1e'; }
508
- .codicon-mention:before { content: '\eb1f'; }
509
- .codicon-milestone:before { content: '\eb20'; }
510
- .codicon-git-pull-request-milestone:before { content: '\eb20'; }
511
- .codicon-mortar-board:before { content: '\eb21'; }
512
- .codicon-move:before { content: '\eb22'; }
513
- .codicon-multiple-windows:before { content: '\eb23'; }
514
- .codicon-mute:before { content: '\eb24'; }
515
- .codicon-no-newline:before { content: '\eb25'; }
516
- .codicon-note:before { content: '\eb26'; }
517
- .codicon-octoface:before { content: '\eb27'; }
518
- .codicon-open-preview:before { content: '\eb28'; }
519
- .codicon-package:before { content: '\eb29'; }
520
- .codicon-paintcan:before { content: '\eb2a'; }
521
- .codicon-pin:before { content: '\eb2b'; }
522
- .codicon-play:before { content: '\eb2c'; }
523
- .codicon-run:before { content: '\eb2c'; }
524
- .codicon-plug:before { content: '\eb2d'; }
525
- .codicon-preserve-case:before { content: '\eb2e'; }
526
- .codicon-preview:before { content: '\eb2f'; }
527
- .codicon-project:before { content: '\eb30'; }
528
- .codicon-pulse:before { content: '\eb31'; }
529
- .codicon-question:before { content: '\eb32'; }
530
- .codicon-quote:before { content: '\eb33'; }
531
- .codicon-radio-tower:before { content: '\eb34'; }
532
- .codicon-reactions:before { content: '\eb35'; }
533
- .codicon-references:before { content: '\eb36'; }
534
- .codicon-refresh:before { content: '\eb37'; }
535
- .codicon-regex:before { content: '\eb38'; }
536
- .codicon-remote-explorer:before { content: '\eb39'; }
537
- .codicon-remote:before { content: '\eb3a'; }
538
- .codicon-remove:before { content: '\eb3b'; }
539
- .codicon-replace-all:before { content: '\eb3c'; }
540
- .codicon-replace:before { content: '\eb3d'; }
541
- .codicon-repo-clone:before { content: '\eb3e'; }
542
- .codicon-repo-force-push:before { content: '\eb3f'; }
543
- .codicon-repo-pull:before { content: '\eb40'; }
544
- .codicon-repo-push:before { content: '\eb41'; }
545
- .codicon-report:before { content: '\eb42'; }
546
- .codicon-request-changes:before { content: '\eb43'; }
547
- .codicon-rocket:before { content: '\eb44'; }
548
- .codicon-root-folder-opened:before { content: '\eb45'; }
549
- .codicon-root-folder:before { content: '\eb46'; }
550
- .codicon-rss:before { content: '\eb47'; }
551
- .codicon-ruby:before { content: '\eb48'; }
552
- .codicon-save-all:before { content: '\eb49'; }
553
- .codicon-save-as:before { content: '\eb4a'; }
554
- .codicon-save:before { content: '\eb4b'; }
555
- .codicon-screen-full:before { content: '\eb4c'; }
556
- .codicon-screen-normal:before { content: '\eb4d'; }
557
- .codicon-search-stop:before { content: '\eb4e'; }
558
- .codicon-server:before { content: '\eb50'; }
559
- .codicon-settings-gear:before { content: '\eb51'; }
560
- .codicon-settings:before { content: '\eb52'; }
561
- .codicon-shield:before { content: '\eb53'; }
562
- .codicon-smiley:before { content: '\eb54'; }
563
- .codicon-sort-precedence:before { content: '\eb55'; }
564
- .codicon-split-horizontal:before { content: '\eb56'; }
565
- .codicon-split-vertical:before { content: '\eb57'; }
566
- .codicon-squirrel:before { content: '\eb58'; }
567
- .codicon-star-full:before { content: '\eb59'; }
568
- .codicon-star-half:before { content: '\eb5a'; }
569
- .codicon-symbol-class:before { content: '\eb5b'; }
570
- .codicon-symbol-color:before { content: '\eb5c'; }
571
- .codicon-symbol-constant:before { content: '\eb5d'; }
572
- .codicon-symbol-enum-member:before { content: '\eb5e'; }
573
- .codicon-symbol-field:before { content: '\eb5f'; }
574
- .codicon-symbol-file:before { content: '\eb60'; }
575
- .codicon-symbol-interface:before { content: '\eb61'; }
576
- .codicon-symbol-keyword:before { content: '\eb62'; }
577
- .codicon-symbol-misc:before { content: '\eb63'; }
578
- .codicon-symbol-operator:before { content: '\eb64'; }
579
- .codicon-symbol-property:before { content: '\eb65'; }
580
- .codicon-wrench:before { content: '\eb65'; }
581
- .codicon-wrench-subaction:before { content: '\eb65'; }
582
- .codicon-symbol-snippet:before { content: '\eb66'; }
583
- .codicon-tasklist:before { content: '\eb67'; }
584
- .codicon-telescope:before { content: '\eb68'; }
585
- .codicon-text-size:before { content: '\eb69'; }
586
- .codicon-three-bars:before { content: '\eb6a'; }
587
- .codicon-thumbsdown:before { content: '\eb6b'; }
588
- .codicon-thumbsup:before { content: '\eb6c'; }
589
- .codicon-tools:before { content: '\eb6d'; }
590
- .codicon-triangle-down:before { content: '\eb6e'; }
591
- .codicon-triangle-left:before { content: '\eb6f'; }
592
- .codicon-triangle-right:before { content: '\eb70'; }
593
- .codicon-triangle-up:before { content: '\eb71'; }
594
- .codicon-twitter:before { content: '\eb72'; }
595
- .codicon-unfold:before { content: '\eb73'; }
596
- .codicon-unlock:before { content: '\eb74'; }
597
- .codicon-unmute:before { content: '\eb75'; }
598
- .codicon-unverified:before { content: '\eb76'; }
599
- .codicon-verified:before { content: '\eb77'; }
600
- .codicon-versions:before { content: '\eb78'; }
601
- .codicon-vm-active:before { content: '\eb79'; }
602
- .codicon-vm-outline:before { content: '\eb7a'; }
603
- .codicon-vm-running:before { content: '\eb7b'; }
604
- .codicon-watch:before { content: '\eb7c'; }
605
- .codicon-whitespace:before { content: '\eb7d'; }
606
- .codicon-whole-word:before { content: '\eb7e'; }
607
- .codicon-window:before { content: '\eb7f'; }
608
- .codicon-word-wrap:before { content: '\eb80'; }
609
- .codicon-zoom-in:before { content: '\eb81'; }
610
- .codicon-zoom-out:before { content: '\eb82'; }
611
- .codicon-list-filter:before { content: '\eb83'; }
612
- .codicon-list-flat:before { content: '\eb84'; }
613
- .codicon-list-selection:before { content: '\eb85'; }
614
- .codicon-selection:before { content: '\eb85'; }
615
- .codicon-list-tree:before { content: '\eb86'; }
616
- .codicon-debug-breakpoint-function-unverified:before { content: '\eb87'; }
617
- .codicon-debug-breakpoint-function:before { content: '\eb88'; }
618
- .codicon-debug-breakpoint-function-disabled:before { content: '\eb88'; }
619
- .codicon-debug-stackframe-active:before { content: '\eb89'; }
620
- .codicon-circle-small-filled:before { content: '\eb8a'; }
621
- .codicon-debug-stackframe-dot:before { content: '\eb8a'; }
622
- .codicon-terminal-decoration-mark:before { content: '\eb8a'; }
623
- .codicon-debug-stackframe:before { content: '\eb8b'; }
624
- .codicon-debug-stackframe-focused:before { content: '\eb8b'; }
625
- .codicon-debug-breakpoint-unsupported:before { content: '\eb8c'; }
626
- .codicon-symbol-string:before { content: '\eb8d'; }
627
- .codicon-debug-reverse-continue:before { content: '\eb8e'; }
628
- .codicon-debug-step-back:before { content: '\eb8f'; }
629
- .codicon-debug-restart-frame:before { content: '\eb90'; }
630
- .codicon-debug-alt:before { content: '\eb91'; }
631
- .codicon-call-incoming:before { content: '\eb92'; }
632
- .codicon-call-outgoing:before { content: '\eb93'; }
633
- .codicon-menu:before { content: '\eb94'; }
634
- .codicon-expand-all:before { content: '\eb95'; }
635
- .codicon-feedback:before { content: '\eb96'; }
636
- .codicon-git-pull-request-reviewer:before { content: '\eb96'; }
637
- .codicon-group-by-ref-type:before { content: '\eb97'; }
638
- .codicon-ungroup-by-ref-type:before { content: '\eb98'; }
639
- .codicon-account:before { content: '\eb99'; }
640
- .codicon-git-pull-request-assignee:before { content: '\eb99'; }
641
- .codicon-bell-dot:before { content: '\eb9a'; }
642
- .codicon-debug-console:before { content: '\eb9b'; }
643
- .codicon-library:before { content: '\eb9c'; }
644
- .codicon-output:before { content: '\eb9d'; }
645
- .codicon-run-all:before { content: '\eb9e'; }
646
- .codicon-sync-ignored:before { content: '\eb9f'; }
647
- .codicon-pinned:before { content: '\eba0'; }
648
- .codicon-github-inverted:before { content: '\eba1'; }
649
- .codicon-server-process:before { content: '\eba2'; }
650
- .codicon-server-environment:before { content: '\eba3'; }
651
- .codicon-pass:before { content: '\eba4'; }
652
- .codicon-issue-closed:before { content: '\eba4'; }
653
- .codicon-stop-circle:before { content: '\eba5'; }
654
- .codicon-play-circle:before { content: '\eba6'; }
655
- .codicon-record:before { content: '\eba7'; }
656
- .codicon-debug-alt-small:before { content: '\eba8'; }
657
- .codicon-vm-connect:before { content: '\eba9'; }
658
- .codicon-cloud:before { content: '\ebaa'; }
659
- .codicon-merge:before { content: '\ebab'; }
660
- .codicon-export:before { content: '\ebac'; }
661
- .codicon-graph-left:before { content: '\ebad'; }
662
- .codicon-magnet:before { content: '\ebae'; }
663
- .codicon-notebook:before { content: '\ebaf'; }
664
- .codicon-redo:before { content: '\ebb0'; }
665
- .codicon-check-all:before { content: '\ebb1'; }
666
- .codicon-pinned-dirty:before { content: '\ebb2'; }
667
- .codicon-pass-filled:before { content: '\ebb3'; }
668
- .codicon-circle-large-filled:before { content: '\ebb4'; }
669
- .codicon-circle-large:before { content: '\ebb5'; }
670
- .codicon-circle-large-outline:before { content: '\ebb5'; }
671
- .codicon-combine:before { content: '\ebb6'; }
672
- .codicon-gather:before { content: '\ebb6'; }
673
- .codicon-table:before { content: '\ebb7'; }
674
- .codicon-variable-group:before { content: '\ebb8'; }
675
- .codicon-type-hierarchy:before { content: '\ebb9'; }
676
- .codicon-type-hierarchy-sub:before { content: '\ebba'; }
677
- .codicon-type-hierarchy-super:before { content: '\ebbb'; }
678
- .codicon-git-pull-request-create:before { content: '\ebbc'; }
679
- .codicon-run-above:before { content: '\ebbd'; }
680
- .codicon-run-below:before { content: '\ebbe'; }
681
- .codicon-notebook-template:before { content: '\ebbf'; }
682
- .codicon-debug-rerun:before { content: '\ebc0'; }
683
- .codicon-workspace-trusted:before { content: '\ebc1'; }
684
- .codicon-workspace-untrusted:before { content: '\ebc2'; }
685
- .codicon-workspace-unknown:before { content: '\ebc3'; }
686
- .codicon-terminal-cmd:before { content: '\ebc4'; }
687
- .codicon-terminal-debian:before { content: '\ebc5'; }
688
- .codicon-terminal-linux:before { content: '\ebc6'; }
689
- .codicon-terminal-powershell:before { content: '\ebc7'; }
690
- .codicon-terminal-tmux:before { content: '\ebc8'; }
691
- .codicon-terminal-ubuntu:before { content: '\ebc9'; }
692
- .codicon-terminal-bash:before { content: '\ebca'; }
693
- .codicon-arrow-swap:before { content: '\ebcb'; }
694
- .codicon-copy:before { content: '\ebcc'; }
695
- .codicon-person-add:before { content: '\ebcd'; }
696
- .codicon-filter-filled:before { content: '\ebce'; }
697
- .codicon-wand:before { content: '\ebcf'; }
698
- .codicon-debug-line-by-line:before { content: '\ebd0'; }
699
- .codicon-inspect:before { content: '\ebd1'; }
700
- .codicon-layers:before { content: '\ebd2'; }
701
- .codicon-layers-dot:before { content: '\ebd3'; }
702
- .codicon-layers-active:before { content: '\ebd4'; }
703
- .codicon-compass:before { content: '\ebd5'; }
704
- .codicon-compass-dot:before { content: '\ebd6'; }
705
- .codicon-compass-active:before { content: '\ebd7'; }
706
- .codicon-azure:before { content: '\ebd8'; }
707
- .codicon-issue-draft:before { content: '\ebd9'; }
708
- .codicon-git-pull-request-closed:before { content: '\ebda'; }
709
- .codicon-git-pull-request-draft:before { content: '\ebdb'; }
710
- .codicon-debug-all:before { content: '\ebdc'; }
711
- .codicon-debug-coverage:before { content: '\ebdd'; }
712
- .codicon-run-errors:before { content: '\ebde'; }
713
- .codicon-folder-library:before { content: '\ebdf'; }
714
- .codicon-debug-continue-small:before { content: '\ebe0'; }
715
- .codicon-beaker-stop:before { content: '\ebe1'; }
716
- .codicon-graph-line:before { content: '\ebe2'; }
717
- .codicon-graph-scatter:before { content: '\ebe3'; }
718
- .codicon-pie-chart:before { content: '\ebe4'; }
719
- .codicon-bracket:before { content: '\eb0f'; }
720
- .codicon-bracket-dot:before { content: '\ebe5'; }
721
- .codicon-bracket-error:before { content: '\ebe6'; }
722
- .codicon-lock-small:before { content: '\ebe7'; }
723
- .codicon-azure-devops:before { content: '\ebe8'; }
724
- .codicon-verified-filled:before { content: '\ebe9'; }
725
- .codicon-newline:before { content: '\ebea'; }
726
- .codicon-layout:before { content: '\ebeb'; }
727
- .codicon-layout-activitybar-left:before { content: '\ebec'; }
728
- .codicon-layout-activitybar-right:before { content: '\ebed'; }
729
- .codicon-layout-panel-left:before { content: '\ebee'; }
730
- .codicon-layout-panel-center:before { content: '\ebef'; }
731
- .codicon-layout-panel-justify:before { content: '\ebf0'; }
732
- .codicon-layout-panel-right:before { content: '\ebf1'; }
733
- .codicon-layout-panel:before { content: '\ebf2'; }
734
- .codicon-layout-sidebar-left:before { content: '\ebf3'; }
735
- .codicon-layout-sidebar-right:before { content: '\ebf4'; }
736
- .codicon-layout-statusbar:before { content: '\ebf5'; }
737
- .codicon-layout-menubar:before { content: '\ebf6'; }
738
- .codicon-layout-centered:before { content: '\ebf7'; }
739
- .codicon-target:before { content: '\ebf8'; }
740
- .codicon-indent:before { content: '\ebf9'; }
741
- .codicon-record-small:before { content: '\ebfa'; }
742
- .codicon-error-small:before { content: '\ebfb'; }
743
- .codicon-terminal-decoration-error:before { content: '\ebfb'; }
744
- .codicon-arrow-circle-down:before { content: '\ebfc'; }
745
- .codicon-arrow-circle-left:before { content: '\ebfd'; }
746
- .codicon-arrow-circle-right:before { content: '\ebfe'; }
747
- .codicon-arrow-circle-up:before { content: '\ebff'; }
748
- .codicon-layout-sidebar-right-off:before { content: '\ec00'; }
749
- .codicon-layout-panel-off:before { content: '\ec01'; }
750
- .codicon-layout-sidebar-left-off:before { content: '\ec02'; }
751
- .codicon-blank:before { content: '\ec03'; }
752
- .codicon-heart-filled:before { content: '\ec04'; }
753
- .codicon-map:before { content: '\ec05'; }
754
- .codicon-map-horizontal:before { content: '\ec05'; }
755
- .codicon-fold-horizontal:before { content: '\ec05'; }
756
- .codicon-map-filled:before { content: '\ec06'; }
757
- .codicon-map-horizontal-filled:before { content: '\ec06'; }
758
- .codicon-fold-horizontal-filled:before { content: '\ec06'; }
759
- .codicon-circle-small:before { content: '\ec07'; }
760
- .codicon-bell-slash:before { content: '\ec08'; }
761
- .codicon-bell-slash-dot:before { content: '\ec09'; }
762
- .codicon-comment-unresolved:before { content: '\ec0a'; }
763
- .codicon-git-pull-request-go-to-changes:before { content: '\ec0b'; }
764
- .codicon-git-pull-request-new-changes:before { content: '\ec0c'; }
765
- .codicon-search-fuzzy:before { content: '\ec0d'; }
766
- .codicon-comment-draft:before { content: '\ec0e'; }
767
- .codicon-send:before { content: '\ec0f'; }
768
- .codicon-sparkle:before { content: '\ec10'; }
769
- .codicon-insert:before { content: '\ec11'; }
770
- .codicon-mic:before { content: '\ec12'; }
771
- .codicon-thumbsdown-filled:before { content: '\ec13'; }
772
- .codicon-thumbsup-filled:before { content: '\ec14'; }
773
- .codicon-coffee:before { content: '\ec15'; }
774
- .codicon-snake:before { content: '\ec16'; }
775
- .codicon-game:before { content: '\ec17'; }
776
- .codicon-vr:before { content: '\ec18'; }
777
- .codicon-chip:before { content: '\ec19'; }
778
- .codicon-piano:before { content: '\ec1a'; }
779
- .codicon-music:before { content: '\ec1b'; }
780
- .codicon-mic-filled:before { content: '\ec1c'; }
781
- .codicon-repo-fetch:before { content: '\ec1d'; }
782
- .codicon-copilot:before { content: '\ec1e'; }
783
- .codicon-lightbulb-sparkle:before { content: '\ec1f'; }
784
- .codicon-robot:before { content: '\ec20'; }
785
- .codicon-sparkle-filled:before { content: '\ec21'; }
786
- .codicon-diff-single:before { content: '\ec22'; }
787
- .codicon-diff-multiple:before { content: '\ec23'; }
788
- .codicon-surround-with:before { content: '\ec24'; }
789
- .codicon-share:before { content: '\ec25'; }
790
- .codicon-git-stash:before { content: '\ec26'; }
791
- .codicon-git-stash-apply:before { content: '\ec27'; }
792
- .codicon-git-stash-pop:before { content: '\ec28'; }
793
- .codicon-vscode:before { content: '\ec29'; }
794
- .codicon-vscode-insiders:before { content: '\ec2a'; }
795
- .codicon-code-oss:before { content: '\ec2b'; }
796
- .codicon-run-coverage:before { content: '\ec2c'; }
797
- .codicon-run-all-coverage:before { content: '\ec2d'; }
798
- .codicon-coverage:before { content: '\ec2e'; }
799
- .codicon-github-project:before { content: '\ec2f'; }
800
- .codicon-map-vertical:before { content: '\ec30'; }
801
- .codicon-fold-vertical:before { content: '\ec30'; }
802
- .codicon-map-vertical-filled:before { content: '\ec31'; }
803
- .codicon-fold-vertical-filled:before { content: '\ec31'; }
804
- .codicon-go-to-search:before { content: '\ec32'; }
805
- .codicon-percentage:before { content: '\ec33'; }
806
- .codicon-sort-percentage:before { content: '\ec33'; }
807
- .codicon-attach:before { content: '\ec34'; }
808
- .codicon-git-fetch:before { content: '\f101'; }
809
- /*
810
- Copyright (c) Microsoft Corporation.
811
-
812
- Licensed under the Apache License, Version 2.0 (the "License");
813
- you may not use this file except in compliance with the License.
814
- You may obtain a copy of the License at
815
-
816
- http://www.apache.org/licenses/LICENSE-2.0
817
-
818
- Unless required by applicable law or agreed to in writing, software
819
- distributed under the License is distributed on an "AS IS" BASIS,
820
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
821
- See the License for the specific language governing permissions and
822
- limitations under the License.
823
- */
824
-
825
- .split-view {
826
- display: flex;
827
- flex: auto;
828
- position: relative;
829
- }
830
-
831
- .split-view.vertical {
832
- flex-direction: column;
833
- }
834
-
835
- .split-view.vertical.sidebar-first {
836
- flex-direction: column-reverse;
837
- }
838
-
839
- .split-view.horizontal {
840
- flex-direction: row;
841
- }
842
-
843
- .split-view.horizontal.sidebar-first {
844
- flex-direction: row-reverse;
845
- }
846
-
847
- .split-view-main {
848
- display: flex;
849
- flex: auto;
850
- }
851
-
852
- .split-view-sidebar {
853
- display: flex;
854
- flex: none;
855
- }
856
-
857
- .split-view.vertical:not(.sidebar-first) > .split-view-sidebar {
858
- border-top: 1px solid var(--vscode-panel-border);
859
- }
860
-
861
- .split-view.horizontal:not(.sidebar-first) > .split-view-sidebar {
862
- border-left: 1px solid var(--vscode-panel-border);
863
- }
864
-
865
- .split-view.vertical.sidebar-first > .split-view-sidebar {
866
- border-bottom: 1px solid var(--vscode-panel-border);
867
- }
868
-
869
- .split-view.horizontal.sidebar-first > .split-view-sidebar {
870
- border-right: 1px solid var(--vscode-panel-border);
871
- }
872
-
873
- .split-view-resizer {
874
- position: absolute;
875
- z-index: 100;
876
- }
877
-
878
- .split-view.vertical > .split-view-resizer {
879
- left: 0;
880
- right: 0;
881
- height: 12px;
882
- cursor: ns-resize;
883
- }
884
-
885
- .split-view.horizontal > .split-view-resizer {
886
- top: 0;
887
- bottom: 0;
888
- width: 12px;
889
- cursor: ew-resize;
890
- }
891
- /*
892
- Copyright (c) Microsoft Corporation.
893
-
894
- Licensed under the Apache License, Version 2.0 (the "License");
895
- you may not use this file except in compliance with the License.
896
- You may obtain a copy of the License at
897
-
898
- http://www.apache.org/licenses/LICENSE-2.0
899
-
900
- Unless required by applicable law or agreed to in writing, software
901
- distributed under the License is distributed on an "AS IS" BASIS,
902
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
903
- See the License for the specific language governing permissions and
904
- limitations under the License.
905
- */
906
-
907
- .action-title {
908
- display: block;
909
- overflow: hidden;
910
- text-overflow: ellipsis;
911
- }
912
-
913
- .action-location {
914
- display: flex;
915
- flex: none;
916
- margin: 0 4px;
917
- color: var(--vscode-foreground);
918
- }
919
-
920
- .action-location > span {
921
- margin: 0 4px;
922
- cursor: pointer;
923
- text-decoration: underline;
924
- }
925
-
926
- .action-duration {
927
- display: flex;
928
- flex: none;
929
- align-items: center;
930
- margin: 0 4px;
931
- color: var(--vscode-editorCodeLens-foreground);
932
- }
933
-
934
- .action-skipped {
935
- margin-right: 4px;
936
- }
937
-
938
- .action-icon {
939
- flex: none;
940
- display: flex;
941
- align-items: center;
942
- padding-right: 3px;
943
- }
944
-
945
- .action-icons {
946
- flex: none;
947
- display: flex;
948
- flex-direction: row;
949
- cursor: pointer;
950
- height: 20px;
951
- position: relative;
952
- top: 1px;
953
- border-bottom: 1px solid transparent;
954
- }
955
-
956
- .action-icons:hover {
957
- border-bottom: 1px solid var(--vscode-sideBarTitle-foreground);
958
- }
959
-
960
- .action-error {
961
- color: var(--vscode-errorForeground);
962
- position: relative;
963
- margin-right: 2px;
964
- flex: none;
965
- }
966
-
967
- .action-parameter {
968
- display: inline;
969
- flex: none;
970
- padding-left: 5px;
971
- }
972
-
973
- .action-locator-parameter {
974
- color: var(--vscode-charts-orange);
975
- }
976
-
977
- .action-generic-parameter {
978
- color: var(--vscode-charts-purple);
979
- }
980
-
981
- .action-url {
982
- display: inline;
983
- flex: none;
984
- padding-left: 5px;
985
- color: var(--vscode-charts-blue);
986
- }
987
-
988
- .action-list-show-all {
989
- display: flex;
990
- cursor: pointer;
991
- height: 28px;
992
- align-items: center;
993
- }
994
- /*
995
- Copyright (c) Microsoft Corporation.
996
-
997
- Licensed under the Apache License, Version 2.0 (the "License");
998
- you may not use this file except in compliance with the License.
999
- You may obtain a copy of the License at
1000
-
1001
- http://www.apache.org/licenses/LICENSE-2.0
1002
-
1003
- Unless required by applicable law or agreed to in writing, software
1004
- distributed under the License is distributed on an "AS IS" BASIS,
1005
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1006
- See the License for the specific language governing permissions and
1007
- limitations under the License.
1008
- */
1009
-
1010
- .toolbar-button {
1011
- flex: none;
1012
- border: none;
1013
- outline: none;
1014
- color: var(--vscode-sideBarTitle-foreground);
1015
- background: transparent;
1016
- padding: 4px;
1017
- cursor: pointer;
1018
- display: inline-flex;
1019
- align-items: center;
1020
- }
1021
-
1022
- .toolbar-button:disabled {
1023
- color: var(--vscode-disabledForeground) !important;
1024
- cursor: default;
1025
- }
1026
-
1027
- .toolbar-button:not(:disabled):hover {
1028
- background-color: var(--vscode-toolbar-hoverBackground);
1029
- }
1030
-
1031
- .toolbar-button:not(:disabled):active {
1032
- background-color: var(--vscode-toolbar-activeBackground);
1033
- }
1034
-
1035
- .toolbar-button.toggled {
1036
- color: var(--vscode-notificationLink-foreground);
1037
- }
1038
-
1039
- .toolbar-separator {
1040
- flex: none;
1041
- background-color: var(--vscode-menu-separatorBackground);
1042
- width: 1px;
1043
- padding: 0;
1044
- margin: 5px 4px;
1045
- height: 16px;
1046
- }
1047
- /*
1048
- Copyright (c) Microsoft Corporation.
1049
-
1050
- Licensed under the Apache License, Version 2.0 (the "License");
1051
- you may not use this file except in compliance with the License.
1052
- You may obtain a copy of the License at
1053
-
1054
- http://www.apache.org/licenses/LICENSE-2.0
1055
-
1056
- Unless required by applicable law or agreed to in writing, software
1057
- distributed under the License is distributed on an "AS IS" BASIS,
1058
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1059
- See the License for the specific language governing permissions and
1060
- limitations under the License.
1061
- */
1062
-
1063
- .copy-to-clipboard-text-button {
1064
- background-color: var(--vscode-editor-inactiveSelectionBackground);
1065
- border: none;
1066
- padding: 4px 12px;
1067
- cursor: pointer;
1068
- }/*
1069
- Copyright (c) Microsoft Corporation.
1070
-
1071
- Licensed under the Apache License, Version 2.0 (the "License");
1072
- you may not use this file except in compliance with the License.
1073
- You may obtain a copy of the License at
1074
-
1075
- http://www.apache.org/licenses/LICENSE-2.0
1076
-
1077
- Unless required by applicable law or agreed to in writing, software
1078
- distributed under the License is distributed on an "AS IS" BASIS,
1079
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1080
- See the License for the specific language governing permissions and
1081
- limitations under the License.
1082
- */
1083
-
1084
- .list-view-content {
1085
- display: flex;
1086
- flex-direction: column;
1087
- flex: auto;
1088
- position: relative;
1089
- user-select: none;
1090
- overflow: hidden auto;
1091
- outline: 1px solid transparent;
1092
- }
1093
-
1094
- .list-view-entry {
1095
- display: flex;
1096
- flex: none;
1097
- cursor: pointer;
1098
- align-items: center;
1099
- white-space: nowrap;
1100
- line-height: 28px;
1101
- padding-left: 5px;
1102
- }
1103
-
1104
- .list-view-content.not-selectable > .list-view-entry {
1105
- cursor: inherit;
1106
- }
1107
-
1108
- .list-view-entry.highlighted:not(.selected) {
1109
- background-color: var(--vscode-list-inactiveSelectionBackground) !important;
1110
- }
1111
-
1112
- .list-view-entry.selected {
1113
- z-index: 10;
1114
- }
1115
-
1116
- .list-view-indent {
1117
- min-width: 16px;
1118
- }
1119
-
1120
- .list-view-content:focus .list-view-entry.selected {
1121
- background-color: var(--vscode-list-activeSelectionBackground);
1122
- color: var(--vscode-list-activeSelectionForeground);
1123
- outline: 1px solid var(--vscode-focusBorder);
1124
- }
1125
-
1126
- .list-view-content .list-view-entry.selected {
1127
- background-color: var(--vscode-list-inactiveSelectionBackground);
1128
- }
1129
-
1130
- .list-view-content:focus .list-view-entry.selected * {
1131
- color: var(--vscode-list-activeSelectionForeground) !important;
1132
- background-color: transparent !important;
1133
- }
1134
-
1135
- .list-view-content:focus .list-view-entry.selected .codicon {
1136
- color: var(--vscode-list-activeSelectionForeground) !important;
1137
- }
1138
-
1139
- .list-view-empty {
1140
- flex: auto;
1141
- display: flex;
1142
- align-items: center;
1143
- justify-content: center;
1144
- }
1145
-
1146
- .list-view-entry.error {
1147
- color: var(--vscode-list-errorForeground);
1148
- background-color: var(--vscode-inputValidation-errorBackground);
1149
- }
1150
-
1151
- .list-view-entry.warning {
1152
- color: var(--vscode-list-warningForeground);
1153
- background-color: var(--vscode-inputValidation-warningBackground);
1154
- }
1155
-
1156
- .list-view-entry.info {
1157
- background-color: var(--vscode-inputValidation-infoBackground);
1158
- }
1159
- /*
1160
- Copyright (c) Microsoft Corporation.
1161
-
1162
- Licensed under the Apache License, Version 2.0 (the "License");
1163
- you may not use this file except in compliance with the License.
1164
- You may obtain a copy of the License at
1165
-
1166
- http://www.apache.org/licenses/LICENSE-2.0
1167
-
1168
- Unless required by applicable law or agreed to in writing, software
1169
- distributed under the License is distributed on an "AS IS" BASIS,
1170
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1171
- See the License for the specific language governing permissions and
1172
- limitations under the License.
1173
- */
1174
-
1175
- /*---------------------------------------------------------------------------------------------
1176
- * Copyright (c) Microsoft Corporation. All rights reserved.
1177
- * Licensed under the MIT License. See License.txt in the project root for license information.
1178
- *--------------------------------------------------------------------------------------------*/
1179
-
1180
- body {
1181
- --vscode-font-family: system-ui, "Ubuntu", "Droid Sans", sans-serif;
1182
- --vscode-font-weight: normal;
1183
- --vscode-font-size: 13px;
1184
- --vscode-editor-font-family: "Droid Sans Mono", "monospace", monospace;
1185
- --vscode-editor-font-weight: normal;
1186
- --vscode-editor-font-size: 14px;
1187
- --vscode-foreground: #616161;
1188
- --vscode-disabledForeground: rgba(97, 97, 97, 0.5);
1189
- --vscode-errorForeground: #a1260d;
1190
- --vscode-descriptionForeground: #717171;
1191
- --vscode-icon-foreground: #424242;
1192
- --vscode-focusBorder: #0090f1;
1193
- --vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
1194
- --vscode-textLink-foreground: #006ab1;
1195
- --vscode-textLink-activeForeground: #006ab1;
1196
- --vscode-textPreformat-foreground: #a31515;
1197
- --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
1198
- --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
1199
- --vscode-textCodeBlock-background: rgba(220, 220, 220, 0.4);
1200
- --vscode-widget-shadow: rgba(0, 0, 0, 0.16);
1201
- --vscode-input-background: #ffffff;
1202
- --vscode-input-foreground: #616161;
1203
- --vscode-inputOption-activeBorder: #007acc;
1204
- --vscode-inputOption-hoverBackground: rgba(184, 184, 184, 0.31);
1205
- --vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
1206
- --vscode-inputOption-activeForeground: #000000;
1207
- --vscode-input-placeholderForeground: #767676;
1208
- --vscode-inputValidation-infoBackground: #d6ecf2;
1209
- --vscode-inputValidation-infoBorder: #007acc;
1210
- --vscode-inputValidation-warningBackground: #f6f5d2;
1211
- --vscode-inputValidation-warningBorder: #b89500;
1212
- --vscode-inputValidation-errorBackground: #f2dede;
1213
- --vscode-inputValidation-errorBorder: #be1100;
1214
- --vscode-dropdown-background: #ffffff;
1215
- --vscode-dropdown-border: #cecece;
1216
- --vscode-checkbox-background: #ffffff;
1217
- --vscode-checkbox-border: #cecece;
1218
- --vscode-button-foreground: #ffffff;
1219
- --vscode-button-separator: rgba(255, 255, 255, 0.4);
1220
- --vscode-button-background: #007acc;
1221
- --vscode-button-hoverBackground: #0062a3;
1222
- --vscode-button-secondaryForeground: #ffffff;
1223
- --vscode-button-secondaryBackground: #5f6a79;
1224
- --vscode-button-secondaryHoverBackground: #4c5561;
1225
- --vscode-badge-background: #c4c4c4;
1226
- --vscode-badge-foreground: #333333;
1227
- --vscode-scrollbar-shadow: #dddddd;
1228
- --vscode-scrollbarSlider-background: rgba(100, 100, 100, 0.4);
1229
- --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
1230
- --vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
1231
- --vscode-progressBar-background: #0e70c0;
1232
- --vscode-editorError-foreground: #e51400;
1233
- --vscode-editorWarning-foreground: #bf8803;
1234
- --vscode-editorInfo-foreground: #1a85ff;
1235
- --vscode-editorHint-foreground: #6c6c6c;
1236
- --vscode-sash-hoverBorder: #0090f1;
1237
- --vscode-editor-background: #ffffff;
1238
- --vscode-editor-foreground: #000000;
1239
- --vscode-editorStickyScroll-background: #ffffff;
1240
- --vscode-editorStickyScrollHover-background: #f0f0f0;
1241
- --vscode-editorWidget-background: #f3f3f3;
1242
- --vscode-editorWidget-foreground: #616161;
1243
- --vscode-editorWidget-border: #c8c8c8;
1244
- --vscode-quickInput-background: #f3f3f3;
1245
- --vscode-quickInput-foreground: #616161;
1246
- --vscode-quickInputTitle-background: rgba(0, 0, 0, 0.06);
1247
- --vscode-pickerGroup-foreground: #0066bf;
1248
- --vscode-pickerGroup-border: #cccedb;
1249
- --vscode-keybindingLabel-background: rgba(221, 221, 221, 0.4);
1250
- --vscode-keybindingLabel-foreground: #555555;
1251
- --vscode-keybindingLabel-border: rgba(204, 204, 204, 0.4);
1252
- --vscode-keybindingLabel-bottomBorder: rgba(187, 187, 187, 0.4);
1253
- --vscode-editor-selectionBackground: #add6ff;
1254
- --vscode-editor-inactiveSelectionBackground: #e5ebf1;
1255
- --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.5);
1256
- --vscode-editor-findMatchBackground: #a8ac94;
1257
- --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
1258
- --vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, 0.3);
1259
- --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
1260
- --vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
1261
- --vscode-editorHoverWidget-background: #f3f3f3;
1262
- --vscode-editorHoverWidget-foreground: #616161;
1263
- --vscode-editorHoverWidget-border: #c8c8c8;
1264
- --vscode-editorHoverWidget-statusBarBackground: #e7e7e7;
1265
- --vscode-editorLink-activeForeground: #0000ff;
1266
- --vscode-editorInlayHint-foreground: rgba(51, 51, 51, 0.8);
1267
- --vscode-editorInlayHint-background: rgba(196, 196, 196, 0.3);
1268
- --vscode-editorInlayHint-typeForeground: rgba(51, 51, 51, 0.8);
1269
- --vscode-editorInlayHint-typeBackground: rgba(196, 196, 196, 0.3);
1270
- --vscode-editorInlayHint-parameterForeground: rgba(51, 51, 51, 0.8);
1271
- --vscode-editorInlayHint-parameterBackground: rgba(196, 196, 196, 0.3);
1272
- --vscode-editorLightBulb-foreground: #ddb100;
1273
- --vscode-editorLightBulbAutoFix-foreground: #007acc;
1274
- --vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.4);
1275
- --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.3);
1276
- --vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
1277
- --vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
1278
- --vscode-diffEditor-diagonalFill: rgba(34, 34, 34, 0.2);
1279
- --vscode-list-focusOutline: #0090f1;
1280
- --vscode-list-focusAndSelectionOutline: #90c2f9;
1281
- --vscode-list-activeSelectionBackground: #0060c0;
1282
- --vscode-list-activeSelectionForeground: #ffffff;
1283
- --vscode-list-activeSelectionIconForeground: #ffffff;
1284
- --vscode-list-inactiveSelectionBackground: #e4e6f1;
1285
- --vscode-list-hoverBackground: #e8e8e8;
1286
- --vscode-list-dropBackground: #d6ebff;
1287
- --vscode-list-highlightForeground: #0066bf;
1288
- --vscode-list-focusHighlightForeground: #bbe7ff;
1289
- --vscode-list-invalidItemForeground: #b89500;
1290
- --vscode-list-errorForeground: #b01011;
1291
- --vscode-list-warningForeground: #855f00;
1292
- --vscode-listFilterWidget-background: #f3f3f3;
1293
- --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
1294
- --vscode-listFilterWidget-noMatchesOutline: #be1100;
1295
- --vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.16);
1296
- --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
1297
- --vscode-tree-indentGuidesStroke: #a9a9a9;
1298
- --vscode-tree-tableColumnsBorder: rgba(97, 97, 97, 0.13);
1299
- --vscode-tree-tableOddRowsBackground: rgba(97, 97, 97, 0.04);
1300
- --vscode-list-deemphasizedForeground: #8e8e90;
1301
- --vscode-quickInputList-focusForeground: #ffffff;
1302
- --vscode-quickInputList-focusIconForeground: #ffffff;
1303
- --vscode-quickInputList-focusBackground: #0060c0;
1304
- --vscode-menu-foreground: #616161;
1305
- --vscode-menu-background: #ffffff;
1306
- --vscode-menu-selectionForeground: #ffffff;
1307
- --vscode-menu-selectionBackground: #0060c0;
1308
- --vscode-menu-separatorBackground: #d4d4d4;
1309
- --vscode-toolbar-hoverBackground: rgba(184, 184, 184, 0.31);
1310
- --vscode-toolbar-activeBackground: rgba(166, 166, 166, 0.31);
1311
- --vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
1312
- --vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
1313
- --vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
1314
- --vscode-breadcrumb-background: #ffffff;
1315
- --vscode-breadcrumb-focusForeground: #4e4e4e;
1316
- --vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
1317
- --vscode-breadcrumbPicker-background: #f3f3f3;
1318
- --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
1319
- --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
1320
- --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
1321
- --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
1322
- --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
1323
- --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
1324
- --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
1325
- --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
1326
- --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
1327
- --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
1328
- --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
1329
- --vscode-minimap-findMatchHighlight: #d18616;
1330
- --vscode-minimap-selectionOccurrenceHighlight: #c9c9c9;
1331
- --vscode-minimap-selectionHighlight: #add6ff;
1332
- --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
1333
- --vscode-minimap-warningHighlight: #bf8803;
1334
- --vscode-minimap-foregroundOpacity: #000000;
1335
- --vscode-minimapSlider-background: rgba(100, 100, 100, 0.2);
1336
- --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
1337
- --vscode-minimapSlider-activeBackground: rgba(0, 0, 0, 0.3);
1338
- --vscode-problemsErrorIcon-foreground: #e51400;
1339
- --vscode-problemsWarningIcon-foreground: #bf8803;
1340
- --vscode-problemsInfoIcon-foreground: #1a85ff;
1341
- --vscode-charts-foreground: #616161;
1342
- --vscode-charts-lines: rgba(97, 97, 97, 0.5);
1343
- --vscode-charts-red: #e51400;
1344
- --vscode-charts-blue: #1a85ff;
1345
- --vscode-charts-yellow: #bf8803;
1346
- --vscode-charts-orange: #d18616;
1347
- --vscode-charts-green: #388a34;
1348
- --vscode-charts-purple: #652d90;
1349
- --vscode-editor-lineHighlightBorder: #eeeeee;
1350
- --vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, 0.2);
1351
- --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
1352
- --vscode-editorCursor-foreground: #000000;
1353
- --vscode-editorWhitespace-foreground: rgba(51, 51, 51, 0.2);
1354
- --vscode-editorIndentGuide-background: #d3d3d3;
1355
- --vscode-editorIndentGuide-activeBackground: #939393;
1356
- --vscode-editorLineNumber-foreground: #237893;
1357
- --vscode-editorActiveLineNumber-foreground: #0b216f;
1358
- --vscode-editorLineNumber-activeForeground: #0b216f;
1359
- --vscode-editorRuler-foreground: #d3d3d3;
1360
- --vscode-editorCodeLens-foreground: #919191;
1361
- --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
1362
- --vscode-editorBracketMatch-border: #b9b9b9;
1363
- --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
1364
- --vscode-editorGutter-background: #ffffff;
1365
- --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
1366
- --vscode-editorGhostText-foreground: rgba(0, 0, 0, 0.47);
1367
- --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
1368
- --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
1369
- --vscode-editorOverviewRuler-warningForeground: #bf8803;
1370
- --vscode-editorOverviewRuler-infoForeground: #1a85ff;
1371
- --vscode-editorBracketHighlight-foreground1: #0431fa;
1372
- --vscode-editorBracketHighlight-foreground2: #319331;
1373
- --vscode-editorBracketHighlight-foreground3: #7b3814;
1374
- --vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
1375
- --vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
1376
- --vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
1377
- --vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
1378
- --vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
1379
- --vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
1380
- --vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
1381
- --vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
1382
- --vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
1383
- --vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
1384
- --vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
1385
- --vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
1386
- --vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
1387
- --vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
1388
- --vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
1389
- --vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
1390
- --vscode-editorUnicodeHighlight-border: #cea33d;
1391
- --vscode-editorUnicodeHighlight-background: rgba(206, 163, 61, 0.08);
1392
- --vscode-symbolIcon-arrayForeground: #616161;
1393
- --vscode-symbolIcon-booleanForeground: #616161;
1394
- --vscode-symbolIcon-classForeground: #d67e00;
1395
- --vscode-symbolIcon-colorForeground: #616161;
1396
- --vscode-symbolIcon-constantForeground: #616161;
1397
- --vscode-symbolIcon-constructorForeground: #652d90;
1398
- --vscode-symbolIcon-enumeratorForeground: #d67e00;
1399
- --vscode-symbolIcon-enumeratorMemberForeground: #007acc;
1400
- --vscode-symbolIcon-eventForeground: #d67e00;
1401
- --vscode-symbolIcon-fieldForeground: #007acc;
1402
- --vscode-symbolIcon-fileForeground: #616161;
1403
- --vscode-symbolIcon-folderForeground: #616161;
1404
- --vscode-symbolIcon-functionForeground: #652d90;
1405
- --vscode-symbolIcon-interfaceForeground: #007acc;
1406
- --vscode-symbolIcon-keyForeground: #616161;
1407
- --vscode-symbolIcon-keywordForeground: #616161;
1408
- --vscode-symbolIcon-methodForeground: #652d90;
1409
- --vscode-symbolIcon-moduleForeground: #616161;
1410
- --vscode-symbolIcon-namespaceForeground: #616161;
1411
- --vscode-symbolIcon-nullForeground: #616161;
1412
- --vscode-symbolIcon-numberForeground: #616161;
1413
- --vscode-symbolIcon-objectForeground: #616161;
1414
- --vscode-symbolIcon-operatorForeground: #616161;
1415
- --vscode-symbolIcon-packageForeground: #616161;
1416
- --vscode-symbolIcon-propertyForeground: #616161;
1417
- --vscode-symbolIcon-referenceForeground: #616161;
1418
- --vscode-symbolIcon-snippetForeground: #616161;
1419
- --vscode-symbolIcon-stringForeground: #616161;
1420
- --vscode-symbolIcon-structForeground: #616161;
1421
- --vscode-symbolIcon-textForeground: #616161;
1422
- --vscode-symbolIcon-typeParameterForeground: #616161;
1423
- --vscode-symbolIcon-unitForeground: #616161;
1424
- --vscode-symbolIcon-variableForeground: #007acc;
1425
- --vscode-editorHoverWidget-highlightForeground: #0066bf;
1426
- --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
1427
- --vscode-editor-foldBackground: rgba(173, 214, 255, 0.3);
1428
- --vscode-editorGutter-foldingControlForeground: #424242;
1429
- --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
1430
- --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.25);
1431
- --vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, 0.25);
1432
- --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
1433
- --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
1434
- --vscode-peekViewTitle-background: rgba(26, 133, 255, 0.1);
1435
- --vscode-peekViewTitleLabel-foreground: #000000;
1436
- --vscode-peekViewTitleDescription-foreground: #616161;
1437
- --vscode-peekView-border: #1a85ff;
1438
- --vscode-peekViewResult-background: #f3f3f3;
1439
- --vscode-peekViewResult-lineForeground: #646465;
1440
- --vscode-peekViewResult-fileForeground: #1e1e1e;
1441
- --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
1442
- --vscode-peekViewResult-selectionForeground: #6c6c6c;
1443
- --vscode-peekViewEditor-background: #f2f8fc;
1444
- --vscode-peekViewEditorGutter-background: #f2f8fc;
1445
- --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
1446
- --vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, 0.87);
1447
- --vscode-editorMarkerNavigationError-background: #e51400;
1448
- --vscode-editorMarkerNavigationError-headerBackground: rgba(229, 20, 0, 0.1);
1449
- --vscode-editorMarkerNavigationWarning-background: #bf8803;
1450
- --vscode-editorMarkerNavigationWarning-headerBackground: rgba(191, 136, 3, 0.1);
1451
- --vscode-editorMarkerNavigationInfo-background: #1a85ff;
1452
- --vscode-editorMarkerNavigationInfo-headerBackground: rgba(26, 133, 255, 0.1);
1453
- --vscode-editorMarkerNavigation-background: #ffffff;
1454
- --vscode-editorSuggestWidget-background: #f3f3f3;
1455
- --vscode-editorSuggestWidget-border: #c8c8c8;
1456
- --vscode-editorSuggestWidget-foreground: #000000;
1457
- --vscode-editorSuggestWidget-selectedForeground: #ffffff;
1458
- --vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
1459
- --vscode-editorSuggestWidget-selectedBackground: #0060c0;
1460
- --vscode-editorSuggestWidget-highlightForeground: #0066bf;
1461
- --vscode-editorSuggestWidget-focusHighlightForeground: #bbe7ff;
1462
- --vscode-editorSuggestWidgetStatus-foreground: rgba(0, 0, 0, 0.5);
1463
- --vscode-tab-activeBackground: #ffffff;
1464
- --vscode-tab-unfocusedActiveBackground: #ffffff;
1465
- --vscode-tab-inactiveBackground: #ececec;
1466
- --vscode-tab-unfocusedInactiveBackground: #ececec;
1467
- --vscode-tab-activeForeground: #333333;
1468
- --vscode-tab-inactiveForeground: rgba(51, 51, 51, 0.7);
1469
- --vscode-tab-unfocusedActiveForeground: rgba(51, 51, 51, 0.7);
1470
- --vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, 0.35);
1471
- --vscode-tab-border: #f3f3f3;
1472
- --vscode-tab-lastPinnedBorder: rgba(97, 97, 97, 0.19);
1473
- --vscode-tab-activeModifiedBorder: #33aaee;
1474
- --vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, 0.5);
1475
- --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, 0.7);
1476
- --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, 0.25);
1477
- --vscode-editorPane-background: #ffffff;
1478
- --vscode-editorGroupHeader-tabsBackground: #f3f3f3;
1479
- --vscode-editorGroupHeader-noTabsBackground: #ffffff;
1480
- --vscode-editorGroup-border: #e7e7e7;
1481
- --vscode-editorGroup-dropBackground: rgba(38, 119, 203, 0.18);
1482
- --vscode-editorGroup-dropIntoPromptForeground: #616161;
1483
- --vscode-editorGroup-dropIntoPromptBackground: #f3f3f3;
1484
- --vscode-sideBySideEditor-horizontalBorder: #e7e7e7;
1485
- --vscode-sideBySideEditor-verticalBorder: #e7e7e7;
1486
- --vscode-panel-background: #ffffff;
1487
- --vscode-panel-border: rgba(128, 128, 128, 0.35);
1488
- --vscode-panelTitle-activeForeground: #424242;
1489
- --vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, 0.75);
1490
- --vscode-panelTitle-activeBorder: #424242;
1491
- --vscode-panelInput-border: #dddddd;
1492
- --vscode-panel-dropBorder: #424242;
1493
- --vscode-panelSection-dropBackground: rgba(38, 119, 203, 0.18);
1494
- --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
1495
- --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
1496
- --vscode-banner-background: #004386;
1497
- --vscode-banner-foreground: #ffffff;
1498
- --vscode-banner-iconForeground: #1a85ff;
1499
- --vscode-statusBar-foreground: #ffffff;
1500
- --vscode-statusBar-noFolderForeground: #ffffff;
1501
- --vscode-statusBar-background: #007acc;
1502
- --vscode-statusBar-noFolderBackground: #68217a;
1503
- --vscode-statusBar-focusBorder: #ffffff;
1504
- --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
1505
- --vscode-statusBarItem-focusBorder: #ffffff;
1506
- --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
1507
- --vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
1508
- --vscode-statusBarItem-prominentForeground: #ffffff;
1509
- --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
1510
- --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
1511
- --vscode-statusBarItem-errorBackground: #c72e0f;
1512
- --vscode-statusBarItem-errorForeground: #ffffff;
1513
- --vscode-statusBarItem-warningBackground: #725102;
1514
- --vscode-statusBarItem-warningForeground: #ffffff;
1515
- --vscode-activityBar-background: #2c2c2c;
1516
- --vscode-activityBar-foreground: #ffffff;
1517
- --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
1518
- --vscode-activityBar-activeBorder: #ffffff;
1519
- --vscode-activityBar-dropBorder: #ffffff;
1520
- --vscode-activityBarBadge-background: #007acc;
1521
- --vscode-activityBarBadge-foreground: #ffffff;
1522
- --vscode-statusBarItem-remoteBackground: #16825d;
1523
- --vscode-statusBarItem-remoteForeground: #ffffff;
1524
- --vscode-extensionBadge-remoteBackground: #007acc;
1525
- --vscode-extensionBadge-remoteForeground: #ffffff;
1526
- --vscode-sideBar-background: #f3f3f3;
1527
- --vscode-sideBarTitle-foreground: #6f6f6f;
1528
- --vscode-sideBar-dropBackground: rgba(38, 119, 203, 0.18);
1529
- --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
1530
- --vscode-sideBarSectionHeader-border: rgba(97, 97, 97, 0.19);
1531
- --vscode-titleBar-activeForeground: #333333;
1532
- --vscode-titleBar-inactiveForeground: rgba(51, 51, 51, 0.6);
1533
- --vscode-titleBar-activeBackground: #dddddd;
1534
- --vscode-titleBar-inactiveBackground: rgba(221, 221, 221, 0.6);
1535
- --vscode-menubar-selectionForeground: #333333;
1536
- --vscode-menubar-selectionBackground: rgba(184, 184, 184, 0.31);
1537
- --vscode-notifications-foreground: #616161;
1538
- --vscode-notifications-background: #f3f3f3;
1539
- --vscode-notificationLink-foreground: #006ab1;
1540
- --vscode-notificationCenterHeader-background: #e7e7e7;
1541
- --vscode-notifications-border: #e7e7e7;
1542
- --vscode-notificationsErrorIcon-foreground: #e51400;
1543
- --vscode-notificationsWarningIcon-foreground: #bf8803;
1544
- --vscode-notificationsInfoIcon-foreground: #1a85ff;
1545
- --vscode-commandCenter-foreground: #333333;
1546
- --vscode-commandCenter-activeForeground: #333333;
1547
- --vscode-commandCenter-activeBackground: rgba(184, 184, 184, 0.31);
1548
- --vscode-commandCenter-border: rgba(128, 128, 128, 0.35);
1549
- --vscode-editorCommentsWidget-resolvedBorder: rgba(97, 97, 97, 0.5);
1550
- --vscode-editorCommentsWidget-unresolvedBorder: #1a85ff;
1551
- --vscode-editorCommentsWidget-rangeBackground: rgba(26, 133, 255, 0.1);
1552
- --vscode-editorCommentsWidget-rangeBorder: rgba(26, 133, 255, 0.4);
1553
- --vscode-editorCommentsWidget-rangeActiveBackground: rgba(26, 133, 255, 0.1);
1554
- --vscode-editorCommentsWidget-rangeActiveBorder: rgba(26, 133, 255, 0.4);
1555
- --vscode-editorGutter-commentRangeForeground: #d5d8e9;
1556
- --vscode-debugToolBar-background: #f3f3f3;
1557
- --vscode-debugIcon-startForeground: #388a34;
1558
- --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
1559
- --vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
1560
- --vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
1561
- --vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.4);
1562
- --vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
1563
- --vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
1564
- --vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
1565
- --vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
1566
- --vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
1567
- --vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
1568
- --vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
1569
- --vscode-settings-headerForeground: #444444;
1570
- --vscode-settings-modifiedItemIndicator: #66afe0;
1571
- --vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
1572
- --vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
1573
- --vscode-settings-dropdownBackground: #ffffff;
1574
- --vscode-settings-dropdownBorder: #cecece;
1575
- --vscode-settings-dropdownListBorder: #c8c8c8;
1576
- --vscode-settings-checkboxBackground: #ffffff;
1577
- --vscode-settings-checkboxBorder: #cecece;
1578
- --vscode-settings-textInputBackground: #ffffff;
1579
- --vscode-settings-textInputForeground: #616161;
1580
- --vscode-settings-textInputBorder: #cecece;
1581
- --vscode-settings-numberInputBackground: #ffffff;
1582
- --vscode-settings-numberInputForeground: #616161;
1583
- --vscode-settings-numberInputBorder: #cecece;
1584
- --vscode-settings-focusedRowBackground: rgba(232, 232, 232, 0.6);
1585
- --vscode-settings-rowHoverBackground: rgba(232, 232, 232, 0.3);
1586
- --vscode-settings-focusedRowBorder: rgba(0, 0, 0, 0.12);
1587
- --vscode-terminal-foreground: #333333;
1588
- --vscode-terminal-selectionBackground: #add6ff;
1589
- --vscode-terminal-inactiveSelectionBackground: #e5ebf1;
1590
- --vscode-terminalCommandDecoration-defaultBackground: rgba(0, 0, 0, 0.25);
1591
- --vscode-terminalCommandDecoration-successBackground: #2090d3;
1592
- --vscode-terminalCommandDecoration-errorBackground: #e51400;
1593
- --vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
1594
- --vscode-terminal-border: rgba(128, 128, 128, 0.35);
1595
- --vscode-terminal-findMatchBackground: #a8ac94;
1596
- --vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
1597
- --vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
1598
- --vscode-terminal-dropBackground: rgba(38, 119, 203, 0.18);
1599
- --vscode-testing-iconFailed: #f14c4c;
1600
- --vscode-testing-iconErrored: #f14c4c;
1601
- --vscode-testing-iconPassed: #73c991;
1602
- --vscode-testing-runAction: #73c991;
1603
- --vscode-testing-iconQueued: #cca700;
1604
- --vscode-testing-iconUnset: #848484;
1605
- --vscode-testing-iconSkipped: #848484;
1606
- --vscode-testing-peekBorder: #e51400;
1607
- --vscode-testing-peekHeaderBackground: rgba(229, 20, 0, 0.1);
1608
- --vscode-testing-message\.error\.decorationForeground: #e51400;
1609
- --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
1610
- --vscode-testing-message\.info\.decorationForeground: rgba(0, 0, 0, 0.5);
1611
- --vscode-welcomePage-tileBackground: #f3f3f3;
1612
- --vscode-welcomePage-tileHoverBackground: #dbdbdb;
1613
- --vscode-welcomePage-tileShadow: rgba(0, 0, 0, 0.16);
1614
- --vscode-welcomePage-progress\.background: #ffffff;
1615
- --vscode-welcomePage-progress\.foreground: #006ab1;
1616
- --vscode-debugExceptionWidget-border: #a31515;
1617
- --vscode-debugExceptionWidget-background: #f1dfde;
1618
- --vscode-ports-iconRunningProcessForeground: #369432;
1619
- --vscode-statusBar-debuggingBackground: #cc6633;
1620
- --vscode-statusBar-debuggingForeground: #ffffff;
1621
- --vscode-editor-inlineValuesForeground: rgba(0, 0, 0, 0.5);
1622
- --vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
1623
- --vscode-editorGutter-modifiedBackground: #2090d3;
1624
- --vscode-editorGutter-addedBackground: #48985d;
1625
- --vscode-editorGutter-deletedBackground: #e51400;
1626
- --vscode-minimapGutter-modifiedBackground: #2090d3;
1627
- --vscode-minimapGutter-addedBackground: #48985d;
1628
- --vscode-minimapGutter-deletedBackground: #e51400;
1629
- --vscode-editorOverviewRuler-modifiedForeground: rgba(32, 144, 211, 0.6);
1630
- --vscode-editorOverviewRuler-addedForeground: rgba(72, 152, 93, 0.6);
1631
- --vscode-editorOverviewRuler-deletedForeground: rgba(229, 20, 0, 0.6);
1632
- --vscode-debugIcon-breakpointForeground: #e51400;
1633
- --vscode-debugIcon-breakpointDisabledForeground: #848484;
1634
- --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
1635
- --vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;
1636
- --vscode-debugIcon-breakpointStackframeForeground: #89d185;
1637
- --vscode-notebook-cellBorderColor: #e8e8e8;
1638
- --vscode-notebook-focusedEditorBorder: #0090f1;
1639
- --vscode-notebookStatusSuccessIcon-foreground: #388a34;
1640
- --vscode-notebookStatusErrorIcon-foreground: #a1260d;
1641
- --vscode-notebookStatusRunningIcon-foreground: #616161;
1642
- --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
1643
- --vscode-notebook-selectedCellBackground: rgba(200, 221, 241, 0.31);
1644
- --vscode-notebook-selectedCellBorder: #e8e8e8;
1645
- --vscode-notebook-focusedCellBorder: #0090f1;
1646
- --vscode-notebook-inactiveFocusedCellBorder: #e8e8e8;
1647
- --vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, 0.08);
1648
- --vscode-notebook-cellInsertionIndicator: #0090f1;
1649
- --vscode-notebookScrollbarSlider-background: rgba(100, 100, 100, 0.4);
1650
- --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
1651
- --vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
1652
- --vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, 0.2);
1653
- --vscode-notebook-cellEditorBackground: #f3f3f3;
1654
- --vscode-notebook-editorBackground: #ffffff;
1655
- --vscode-keybindingTable-headerBackground: rgba(97, 97, 97, 0.04);
1656
- --vscode-keybindingTable-rowsBackground: rgba(97, 97, 97, 0.04);
1657
- --vscode-scm-providerBorder: #c8c8c8;
1658
- --vscode-searchEditor-textInputBorder: #cecece;
1659
- --vscode-debugTokenExpression-name: #9b46b0;
1660
- --vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
1661
- --vscode-debugTokenExpression-string: #a31515;
1662
- --vscode-debugTokenExpression-boolean: #0000ff;
1663
- --vscode-debugTokenExpression-number: #098658;
1664
- --vscode-debugTokenExpression-error: #e51400;
1665
- --vscode-debugView-exceptionLabelForeground: #ffffff;
1666
- --vscode-debugView-exceptionLabelBackground: #a31515;
1667
- --vscode-debugView-stateLabelForeground: #616161;
1668
- --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
1669
- --vscode-debugView-valueChangedHighlight: #569cd6;
1670
- --vscode-debugConsole-infoForeground: #1a85ff;
1671
- --vscode-debugConsole-warningForeground: #bf8803;
1672
- --vscode-debugConsole-errorForeground: #a1260d;
1673
- --vscode-debugConsole-sourceForeground: #616161;
1674
- --vscode-debugConsoleInputIcon-foreground: #616161;
1675
- --vscode-debugIcon-pauseForeground: #007acc;
1676
- --vscode-debugIcon-stopForeground: #a1260d;
1677
- --vscode-debugIcon-disconnectForeground: #a1260d;
1678
- --vscode-debugIcon-restartForeground: #388a34;
1679
- --vscode-debugIcon-stepOverForeground: #007acc;
1680
- --vscode-debugIcon-stepIntoForeground: #007acc;
1681
- --vscode-debugIcon-stepOutForeground: #007acc;
1682
- --vscode-debugIcon-continueForeground: #007acc;
1683
- --vscode-debugIcon-stepBackForeground: #007acc;
1684
- --vscode-extensionButton-prominentBackground: #007acc;
1685
- --vscode-extensionButton-prominentForeground: #ffffff;
1686
- --vscode-extensionButton-prominentHoverBackground: #0062a3;
1687
- --vscode-extensionIcon-starForeground: #df6100;
1688
- --vscode-extensionIcon-verifiedForeground: #006ab1;
1689
- --vscode-extensionIcon-preReleaseForeground: #1d9271;
1690
- --vscode-extensionIcon-sponsorForeground: #b51e78;
1691
- --vscode-terminal-ansiBlack: #000000;
1692
- --vscode-terminal-ansiRed: #cd3131;
1693
- --vscode-terminal-ansiGreen: #00bc00;
1694
- --vscode-terminal-ansiYellow: #949800;
1695
- --vscode-terminal-ansiBlue: #0451a5;
1696
- --vscode-terminal-ansiMagenta: #bc05bc;
1697
- --vscode-terminal-ansiCyan: #0598bc;
1698
- --vscode-terminal-ansiWhite: #555555;
1699
- --vscode-terminal-ansiBrightBlack: #666666;
1700
- --vscode-terminal-ansiBrightRed: #cd3131;
1701
- --vscode-terminal-ansiBrightGreen: #14ce14;
1702
- --vscode-terminal-ansiBrightYellow: #b5ba00;
1703
- --vscode-terminal-ansiBrightBlue: #0451a5;
1704
- --vscode-terminal-ansiBrightMagenta: #bc05bc;
1705
- --vscode-terminal-ansiBrightCyan: #0598bc;
1706
- --vscode-terminal-ansiBrightWhite: #a5a5a5;
1707
- --vscode-interactive-activeCodeBorder: #1a85ff;
1708
- --vscode-interactive-inactiveCodeBorder: #e4e6f1;
1709
- --vscode-gitDecoration-addedResourceForeground: #587c0c;
1710
- --vscode-gitDecoration-modifiedResourceForeground: #895503;
1711
- --vscode-gitDecoration-deletedResourceForeground: #ad0707;
1712
- --vscode-gitDecoration-renamedResourceForeground: #007100;
1713
- --vscode-gitDecoration-untrackedResourceForeground: #007100;
1714
- --vscode-gitDecoration-ignoredResourceForeground: #8e8e90;
1715
- --vscode-gitDecoration-stageModifiedResourceForeground: #895503;
1716
- --vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;
1717
- --vscode-gitDecoration-conflictingResourceForeground: #ad0707;
1718
- --vscode-gitDecoration-submoduleResourceForeground: #1258a7;
1719
- }
1720
-
1721
- body.dark-mode {
1722
- --vscode-font-family: system-ui, "Ubuntu", "Droid Sans", sans-serif;
1723
- --vscode-font-weight: normal;
1724
- --vscode-font-size: 13px;
1725
- --vscode-editor-font-family: "Droid Sans Mono", "monospace", monospace;
1726
- --vscode-editor-font-weight: normal;
1727
- --vscode-editor-font-size: 14px;
1728
- --vscode-foreground: #cccccc;
1729
- --vscode-disabledForeground: rgba(204, 204, 204, 0.5);
1730
- --vscode-errorForeground: #f48771;
1731
- --vscode-descriptionForeground: rgba(204, 204, 204, 0.7);
1732
- --vscode-icon-foreground: #c5c5c5;
1733
- --vscode-focusBorder: #007fd4;
1734
- --vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
1735
- --vscode-textLink-foreground: #3794ff;
1736
- --vscode-textLink-activeForeground: #3794ff;
1737
- --vscode-textPreformat-foreground: #d7ba7d;
1738
- --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
1739
- --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
1740
- --vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4);
1741
- --vscode-widget-shadow: rgba(0, 0, 0, 0.36);
1742
- --vscode-input-background: #3c3c3c;
1743
- --vscode-input-foreground: #cccccc;
1744
- --vscode-inputOption-activeBorder: #007acc;
1745
- --vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
1746
- --vscode-inputOption-activeBackground: rgba(0, 127, 212, 0.4);
1747
- --vscode-inputOption-activeForeground: #ffffff;
1748
- --vscode-input-placeholderForeground: #a6a6a6;
1749
- --vscode-inputValidation-infoBackground: #063b49;
1750
- --vscode-inputValidation-infoBorder: #007acc;
1751
- --vscode-inputValidation-warningBackground: #352a05;
1752
- --vscode-inputValidation-warningBorder: #b89500;
1753
- --vscode-inputValidation-errorBackground: #5a1d1d;
1754
- --vscode-inputValidation-errorBorder: #be1100;
1755
- --vscode-dropdown-background: #3c3c3c;
1756
- --vscode-dropdown-foreground: #f0f0f0;
1757
- --vscode-dropdown-border: #3c3c3c;
1758
- --vscode-checkbox-background: #3c3c3c;
1759
- --vscode-checkbox-foreground: #f0f0f0;
1760
- --vscode-checkbox-border: #3c3c3c;
1761
- --vscode-button-foreground: #ffffff;
1762
- --vscode-button-separator: rgba(255, 255, 255, 0.4);
1763
- --vscode-button-background: #0e639c;
1764
- --vscode-button-hoverBackground: #1177bb;
1765
- --vscode-button-secondaryForeground: #ffffff;
1766
- --vscode-button-secondaryBackground: #3a3d41;
1767
- --vscode-button-secondaryHoverBackground: #45494e;
1768
- --vscode-badge-background: #4d4d4d;
1769
- --vscode-badge-foreground: #ffffff;
1770
- --vscode-scrollbar-shadow: #000000;
1771
- --vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
1772
- --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
1773
- --vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
1774
- --vscode-progressBar-background: #0e70c0;
1775
- --vscode-editorError-foreground: #f14c4c;
1776
- --vscode-editorWarning-foreground: #cca700;
1777
- --vscode-editorInfo-foreground: #3794ff;
1778
- --vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
1779
- --vscode-sash-hoverBorder: #007fd4;
1780
- --vscode-editor-background: #1e1e1e;
1781
- --vscode-editor-foreground: #d4d4d4;
1782
- --vscode-editorStickyScroll-background: #1e1e1e;
1783
- --vscode-editorStickyScrollHover-background: #2a2d2e;
1784
- --vscode-editorWidget-background: #252526;
1785
- --vscode-editorWidget-foreground: #cccccc;
1786
- --vscode-editorWidget-border: #454545;
1787
- --vscode-quickInput-background: #252526;
1788
- --vscode-quickInput-foreground: #cccccc;
1789
- --vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
1790
- --vscode-pickerGroup-foreground: #3794ff;
1791
- --vscode-pickerGroup-border: #3f3f46;
1792
- --vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
1793
- --vscode-keybindingLabel-foreground: #cccccc;
1794
- --vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
1795
- --vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
1796
- --vscode-editor-selectionBackground: #264f78;
1797
- --vscode-editor-inactiveSelectionBackground: #3a3d41;
1798
- --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
1799
- --vscode-editor-findMatchBackground: #515c6a;
1800
- --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
1801
- --vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
1802
- --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
1803
- --vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
1804
- --vscode-editorHoverWidget-background: #252526;
1805
- --vscode-editorHoverWidget-foreground: #cccccc;
1806
- --vscode-editorHoverWidget-border: #454545;
1807
- --vscode-editorHoverWidget-statusBarBackground: #2c2c2d;
1808
- --vscode-editorLink-activeForeground: #4e94ce;
1809
- --vscode-editorInlayHint-foreground: rgba(255, 255, 255, 0.8);
1810
- --vscode-editorInlayHint-background: rgba(77, 77, 77, 0.6);
1811
- --vscode-editorInlayHint-typeForeground: rgba(255, 255, 255, 0.8);
1812
- --vscode-editorInlayHint-typeBackground: rgba(77, 77, 77, 0.6);
1813
- --vscode-editorInlayHint-parameterForeground: rgba(255, 255, 255, 0.8);
1814
- --vscode-editorInlayHint-parameterBackground: rgba(77, 77, 77, 0.6);
1815
- --vscode-editorLightBulb-foreground: #ffcc00;
1816
- --vscode-editorLightBulbAutoFix-foreground: #75beff;
1817
- --vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.2);
1818
- --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.4);
1819
- --vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
1820
- --vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
1821
- --vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
1822
- --vscode-list-focusOutline: #007fd4;
1823
- --vscode-list-activeSelectionBackground: #04395e;
1824
- --vscode-list-activeSelectionForeground: #ffffff;
1825
- --vscode-list-activeSelectionIconForeground: #ffffff;
1826
- --vscode-list-inactiveSelectionBackground: #37373d;
1827
- --vscode-list-hoverBackground: #2a2d2e;
1828
- --vscode-list-dropBackground: #383b3d;
1829
- --vscode-list-highlightForeground: #2aaaff;
1830
- --vscode-list-focusHighlightForeground: #2aaaff;
1831
- --vscode-list-invalidItemForeground: #b89500;
1832
- --vscode-list-errorForeground: #f88070;
1833
- --vscode-list-warningForeground: #cca700;
1834
- --vscode-listFilterWidget-background: #252526;
1835
- --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
1836
- --vscode-listFilterWidget-noMatchesOutline: #be1100;
1837
- --vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
1838
- --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
1839
- --vscode-tree-indentGuidesStroke: #585858;
1840
- --vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
1841
- --vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
1842
- --vscode-list-deemphasizedForeground: #8c8c8c;
1843
- --vscode-quickInputList-focusForeground: #ffffff;
1844
- --vscode-quickInputList-focusIconForeground: #ffffff;
1845
- --vscode-quickInputList-focusBackground: #04395e;
1846
- --vscode-menu-foreground: #cccccc;
1847
- --vscode-menu-background: #303031;
1848
- --vscode-menu-selectionForeground: #ffffff;
1849
- --vscode-menu-selectionBackground: #04395e;
1850
- --vscode-menu-separatorBackground: #606060;
1851
- --vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
1852
- --vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
1853
- --vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
1854
- --vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
1855
- --vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
1856
- --vscode-breadcrumb-background: #1e1e1e;
1857
- --vscode-breadcrumb-focusForeground: #e0e0e0;
1858
- --vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
1859
- --vscode-breadcrumbPicker-background: #252526;
1860
- --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
1861
- --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
1862
- --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
1863
- --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
1864
- --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
1865
- --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
1866
- --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
1867
- --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
1868
- --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
1869
- --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
1870
- --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
1871
- --vscode-minimap-findMatchHighlight: #d18616;
1872
- --vscode-minimap-selectionOccurrenceHighlight: #676767;
1873
- --vscode-minimap-selectionHighlight: #264f78;
1874
- --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
1875
- --vscode-minimap-warningHighlight: #cca700;
1876
- --vscode-minimap-foregroundOpacity: #000000;
1877
- --vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
1878
- --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
1879
- --vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
1880
- --vscode-problemsErrorIcon-foreground: #f14c4c;
1881
- --vscode-problemsWarningIcon-foreground: #cca700;
1882
- --vscode-problemsInfoIcon-foreground: #3794ff;
1883
- --vscode-charts-foreground: #cccccc;
1884
- --vscode-charts-lines: rgba(204, 204, 204, 0.5);
1885
- --vscode-charts-red: #f14c4c;
1886
- --vscode-charts-blue: #3794ff;
1887
- --vscode-charts-yellow: #cca700;
1888
- --vscode-charts-orange: #d18616;
1889
- --vscode-charts-green: #89d185;
1890
- --vscode-charts-purple: #b180d7;
1891
- --vscode-editor-lineHighlightBorder: #282828;
1892
- --vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
1893
- --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
1894
- --vscode-editorCursor-foreground: #aeafad;
1895
- --vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
1896
- --vscode-editorIndentGuide-background: #404040;
1897
- --vscode-editorIndentGuide-activeBackground: #707070;
1898
- --vscode-editorLineNumber-foreground: #858585;
1899
- --vscode-editorActiveLineNumber-foreground: #c6c6c6;
1900
- --vscode-editorLineNumber-activeForeground: #c6c6c6;
1901
- --vscode-editorRuler-foreground: #5a5a5a;
1902
- --vscode-editorCodeLens-foreground: #999999;
1903
- --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
1904
- --vscode-editorBracketMatch-border: #888888;
1905
- --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
1906
- --vscode-editorGutter-background: #1e1e1e;
1907
- --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
1908
- --vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
1909
- --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
1910
- --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
1911
- --vscode-editorOverviewRuler-warningForeground: #cca700;
1912
- --vscode-editorOverviewRuler-infoForeground: #3794ff;
1913
- --vscode-editorBracketHighlight-foreground1: #ffd700;
1914
- --vscode-editorBracketHighlight-foreground2: #da70d6;
1915
- --vscode-editorBracketHighlight-foreground3: #179fff;
1916
- --vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
1917
- --vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
1918
- --vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
1919
- --vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, 0.8);
1920
- --vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
1921
- --vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
1922
- --vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
1923
- --vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
1924
- --vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
1925
- --vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
1926
- --vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
1927
- --vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
1928
- --vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
1929
- --vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
1930
- --vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
1931
- --vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
1932
- --vscode-editorUnicodeHighlight-border: #bd9b03;
1933
- --vscode-editorUnicodeHighlight-background: rgba(189, 155, 3, 0.15);
1934
- --vscode-symbolIcon-arrayForeground: #cccccc;
1935
- --vscode-symbolIcon-booleanForeground: #cccccc;
1936
- --vscode-symbolIcon-classForeground: #ee9d28;
1937
- --vscode-symbolIcon-colorForeground: #cccccc;
1938
- --vscode-symbolIcon-constantForeground: #cccccc;
1939
- --vscode-symbolIcon-constructorForeground: #b180d7;
1940
- --vscode-symbolIcon-enumeratorForeground: #ee9d28;
1941
- --vscode-symbolIcon-enumeratorMemberForeground: #75beff;
1942
- --vscode-symbolIcon-eventForeground: #ee9d28;
1943
- --vscode-symbolIcon-fieldForeground: #75beff;
1944
- --vscode-symbolIcon-fileForeground: #cccccc;
1945
- --vscode-symbolIcon-folderForeground: #cccccc;
1946
- --vscode-symbolIcon-functionForeground: #b180d7;
1947
- --vscode-symbolIcon-interfaceForeground: #75beff;
1948
- --vscode-symbolIcon-keyForeground: #cccccc;
1949
- --vscode-symbolIcon-keywordForeground: #cccccc;
1950
- --vscode-symbolIcon-methodForeground: #b180d7;
1951
- --vscode-symbolIcon-moduleForeground: #cccccc;
1952
- --vscode-symbolIcon-namespaceForeground: #cccccc;
1953
- --vscode-symbolIcon-nullForeground: #cccccc;
1954
- --vscode-symbolIcon-numberForeground: #cccccc;
1955
- --vscode-symbolIcon-objectForeground: #cccccc;
1956
- --vscode-symbolIcon-operatorForeground: #cccccc;
1957
- --vscode-symbolIcon-packageForeground: #cccccc;
1958
- --vscode-symbolIcon-propertyForeground: #cccccc;
1959
- --vscode-symbolIcon-referenceForeground: #cccccc;
1960
- --vscode-symbolIcon-snippetForeground: #cccccc;
1961
- --vscode-symbolIcon-stringForeground: #cccccc;
1962
- --vscode-symbolIcon-structForeground: #cccccc;
1963
- --vscode-symbolIcon-textForeground: #cccccc;
1964
- --vscode-symbolIcon-typeParameterForeground: #cccccc;
1965
- --vscode-symbolIcon-unitForeground: #cccccc;
1966
- --vscode-symbolIcon-variableForeground: #75beff;
1967
- --vscode-editorHoverWidget-highlightForeground: #2aaaff;
1968
- --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
1969
- --vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
1970
- --vscode-editorGutter-foldingControlForeground: #c5c5c5;
1971
- --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
1972
- --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
1973
- --vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
1974
- --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
1975
- --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
1976
- --vscode-peekViewTitle-background: rgba(55, 148, 255, 0.1);
1977
- --vscode-peekViewTitleLabel-foreground: #ffffff;
1978
- --vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
1979
- --vscode-peekView-border: #3794ff;
1980
- --vscode-peekViewResult-background: #252526;
1981
- --vscode-peekViewResult-lineForeground: #bbbbbb;
1982
- --vscode-peekViewResult-fileForeground: #ffffff;
1983
- --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
1984
- --vscode-peekViewResult-selectionForeground: #ffffff;
1985
- --vscode-peekViewEditor-background: #001f33;
1986
- --vscode-peekViewEditorGutter-background: #001f33;
1987
- --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
1988
- --vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, 0.6);
1989
- --vscode-editorMarkerNavigationError-background: #f14c4c;
1990
- --vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, 0.1);
1991
- --vscode-editorMarkerNavigationWarning-background: #cca700;
1992
- --vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, 0.1);
1993
- --vscode-editorMarkerNavigationInfo-background: #3794ff;
1994
- --vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1);
1995
- --vscode-editorMarkerNavigation-background: #1e1e1e;
1996
- --vscode-editorSuggestWidget-background: #252526;
1997
- --vscode-editorSuggestWidget-border: #454545;
1998
- --vscode-editorSuggestWidget-foreground: #d4d4d4;
1999
- --vscode-editorSuggestWidget-selectedForeground: #ffffff;
2000
- --vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
2001
- --vscode-editorSuggestWidget-selectedBackground: #04395e;
2002
- --vscode-editorSuggestWidget-highlightForeground: #2aaaff;
2003
- --vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;
2004
- --vscode-editorSuggestWidgetStatus-foreground: rgba(212, 212, 212, 0.5);
2005
- --vscode-tab-activeBackground: #1e1e1e;
2006
- --vscode-tab-unfocusedActiveBackground: #1e1e1e;
2007
- --vscode-tab-inactiveBackground: #2d2d2d;
2008
- --vscode-tab-unfocusedInactiveBackground: #2d2d2d;
2009
- --vscode-tab-activeForeground: #ffffff;
2010
- --vscode-tab-inactiveForeground: rgba(255, 255, 255, 0.5);
2011
- --vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, 0.5);
2012
- --vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, 0.25);
2013
- --vscode-tab-border: #252526;
2014
- --vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
2015
- --vscode-tab-activeModifiedBorder: #3399cc;
2016
- --vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
2017
- --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
2018
- --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
2019
- --vscode-editorPane-background: #1e1e1e;
2020
- --vscode-editorGroupHeader-tabsBackground: #252526;
2021
- --vscode-editorGroupHeader-noTabsBackground: #1e1e1e;
2022
- --vscode-editorGroup-border: #444444;
2023
- --vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
2024
- --vscode-editorGroup-dropIntoPromptForeground: #cccccc;
2025
- --vscode-editorGroup-dropIntoPromptBackground: #252526;
2026
- --vscode-sideBySideEditor-horizontalBorder: #444444;
2027
- --vscode-sideBySideEditor-verticalBorder: #444444;
2028
- --vscode-panel-background: #1e1e1e;
2029
- --vscode-panel-border: rgba(128, 128, 128, 0.35);
2030
- --vscode-panelTitle-activeForeground: #e7e7e7;
2031
- --vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, 0.6);
2032
- --vscode-panelTitle-activeBorder: #e7e7e7;
2033
- --vscode-panel-dropBorder: #e7e7e7;
2034
- --vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
2035
- --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
2036
- --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
2037
- --vscode-banner-background: #04395e;
2038
- --vscode-banner-foreground: #ffffff;
2039
- --vscode-banner-iconForeground: #3794ff;
2040
- --vscode-statusBar-foreground: #ffffff;
2041
- --vscode-statusBar-noFolderForeground: #ffffff;
2042
- --vscode-statusBar-background: #007acc;
2043
- --vscode-statusBar-noFolderBackground: #68217a;
2044
- --vscode-statusBar-focusBorder: #ffffff;
2045
- --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
2046
- --vscode-statusBarItem-focusBorder: #ffffff;
2047
- --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
2048
- --vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
2049
- --vscode-statusBarItem-prominentForeground: #ffffff;
2050
- --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
2051
- --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
2052
- --vscode-statusBarItem-errorBackground: #c72e0f;
2053
- --vscode-statusBarItem-errorForeground: #ffffff;
2054
- --vscode-statusBarItem-warningBackground: #7a6400;
2055
- --vscode-statusBarItem-warningForeground: #ffffff;
2056
- --vscode-activityBar-background: #333333;
2057
- --vscode-activityBar-foreground: #ffffff;
2058
- --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
2059
- --vscode-activityBar-activeBorder: #ffffff;
2060
- --vscode-activityBar-dropBorder: #ffffff;
2061
- --vscode-activityBarBadge-background: #007acc;
2062
- --vscode-activityBarBadge-foreground: #ffffff;
2063
- --vscode-statusBarItem-remoteBackground: #16825d;
2064
- --vscode-statusBarItem-remoteForeground: #ffffff;
2065
- --vscode-extensionBadge-remoteBackground: #007acc;
2066
- --vscode-extensionBadge-remoteForeground: #ffffff;
2067
- --vscode-sideBar-background: #252526;
2068
- --vscode-sideBarTitle-foreground: #bbbbbb;
2069
- --vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
2070
- --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
2071
- --vscode-sideBarSectionHeader-border: rgba(204, 204, 204, 0.2);
2072
- --vscode-titleBar-activeForeground: #cccccc;
2073
- --vscode-titleBar-inactiveForeground: rgba(204, 204, 204, 0.6);
2074
- --vscode-titleBar-activeBackground: #3c3c3c;
2075
- --vscode-titleBar-inactiveBackground: rgba(60, 60, 60, 0.6);
2076
- --vscode-menubar-selectionForeground: #cccccc;
2077
- --vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
2078
- --vscode-notifications-foreground: #cccccc;
2079
- --vscode-notifications-background: #252526;
2080
- --vscode-notificationLink-foreground: #3794ff;
2081
- --vscode-notificationCenterHeader-background: #303031;
2082
- --vscode-notifications-border: #303031;
2083
- --vscode-notificationsErrorIcon-foreground: #f14c4c;
2084
- --vscode-notificationsWarningIcon-foreground: #cca700;
2085
- --vscode-notificationsInfoIcon-foreground: #3794ff;
2086
- --vscode-commandCenter-foreground: #cccccc;
2087
- --vscode-commandCenter-activeForeground: #cccccc;
2088
- --vscode-commandCenter-activeBackground: rgba(90, 93, 94, 0.31);
2089
- --vscode-commandCenter-border: rgba(128, 128, 128, 0.35);
2090
- --vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
2091
- --vscode-editorCommentsWidget-unresolvedBorder: #3794ff;
2092
- --vscode-editorCommentsWidget-rangeBackground: rgba(55, 148, 255, 0.1);
2093
- --vscode-editorCommentsWidget-rangeBorder: rgba(55, 148, 255, 0.4);
2094
- --vscode-editorCommentsWidget-rangeActiveBackground: rgba(55, 148, 255, 0.1);
2095
- --vscode-editorCommentsWidget-rangeActiveBorder: rgba(55, 148, 255, 0.4);
2096
- --vscode-editorGutter-commentRangeForeground: #37373d;
2097
- --vscode-debugToolBar-background: #333333;
2098
- --vscode-debugIcon-startForeground: #89d185;
2099
- --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
2100
- --vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
2101
- --vscode-mergeEditor-change\.background: rgba(155, 185, 85, 0.2);
2102
- --vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, 0.2);
2103
- --vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, 0.48);
2104
- --vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;
2105
- --vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, 0.29);
2106
- --vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, 0.8);
2107
- --vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, 0.93);
2108
- --vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;
2109
- --vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, 0.28);
2110
- --vscode-settings-headerForeground: #e7e7e7;
2111
- --vscode-settings-modifiedItemIndicator: #0c7d9d;
2112
- --vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
2113
- --vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
2114
- --vscode-settings-dropdownBackground: #3c3c3c;
2115
- --vscode-settings-dropdownForeground: #f0f0f0;
2116
- --vscode-settings-dropdownBorder: #3c3c3c;
2117
- --vscode-settings-dropdownListBorder: #454545;
2118
- --vscode-settings-checkboxBackground: #3c3c3c;
2119
- --vscode-settings-checkboxForeground: #f0f0f0;
2120
- --vscode-settings-checkboxBorder: #3c3c3c;
2121
- --vscode-settings-textInputBackground: #3c3c3c;
2122
- --vscode-settings-textInputForeground: #cccccc;
2123
- --vscode-settings-numberInputBackground: #3c3c3c;
2124
- --vscode-settings-numberInputForeground: #cccccc;
2125
- --vscode-settings-focusedRowBackground: rgba(42, 45, 46, 0.6);
2126
- --vscode-settings-rowHoverBackground: rgba(42, 45, 46, 0.3);
2127
- --vscode-settings-focusedRowBorder: rgba(255, 255, 255, 0.12);
2128
- --vscode-terminal-foreground: #cccccc;
2129
- --vscode-terminal-selectionBackground: #264f78;
2130
- --vscode-terminal-inactiveSelectionBackground: #3a3d41;
2131
- --vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
2132
- --vscode-terminalCommandDecoration-successBackground: #1b81a8;
2133
- --vscode-terminalCommandDecoration-errorBackground: #f14c4c;
2134
- --vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
2135
- --vscode-terminal-border: rgba(128, 128, 128, 0.35);
2136
- --vscode-terminal-findMatchBackground: #515c6a;
2137
- --vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
2138
- --vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
2139
- --vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
2140
- --vscode-testing-iconFailed: #f14c4c;
2141
- --vscode-testing-iconErrored: #f14c4c;
2142
- --vscode-testing-iconPassed: #73c991;
2143
- --vscode-testing-runAction: #73c991;
2144
- --vscode-testing-iconQueued: #cca700;
2145
- --vscode-testing-iconUnset: #848484;
2146
- --vscode-testing-iconSkipped: #848484;
2147
- --vscode-testing-peekBorder: #f14c4c;
2148
- --vscode-testing-peekHeaderBackground: rgba(241, 76, 76, 0.1);
2149
- --vscode-testing-message\.error\.decorationForeground: #f14c4c;
2150
- --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
2151
- --vscode-testing-message\.info\.decorationForeground: rgba(212, 212, 212, 0.5);
2152
- --vscode-welcomePage-tileBackground: #252526;
2153
- --vscode-welcomePage-tileHoverBackground: #2c2c2d;
2154
- --vscode-welcomePage-tileShadow: rgba(0, 0, 0, 0.36);
2155
- --vscode-welcomePage-progress\.background: #3c3c3c;
2156
- --vscode-welcomePage-progress\.foreground: #3794ff;
2157
- --vscode-debugExceptionWidget-border: #a31515;
2158
- --vscode-debugExceptionWidget-background: #420b0d;
2159
- --vscode-ports-iconRunningProcessForeground: #369432;
2160
- --vscode-statusBar-debuggingBackground: #cc6633;
2161
- --vscode-statusBar-debuggingForeground: #ffffff;
2162
- --vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
2163
- --vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
2164
- --vscode-editorGutter-modifiedBackground: #1b81a8;
2165
- --vscode-editorGutter-addedBackground: #487e02;
2166
- --vscode-editorGutter-deletedBackground: #f14c4c;
2167
- --vscode-minimapGutter-modifiedBackground: #1b81a8;
2168
- --vscode-minimapGutter-addedBackground: #487e02;
2169
- --vscode-minimapGutter-deletedBackground: #f14c4c;
2170
- --vscode-editorOverviewRuler-modifiedForeground: rgba(27, 129, 168, 0.6);
2171
- --vscode-editorOverviewRuler-addedForeground: rgba(72, 126, 2, 0.6);
2172
- --vscode-editorOverviewRuler-deletedForeground: rgba(241, 76, 76, 0.6);
2173
- --vscode-debugIcon-breakpointForeground: #e51400;
2174
- --vscode-debugIcon-breakpointDisabledForeground: #848484;
2175
- --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
2176
- --vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
2177
- --vscode-debugIcon-breakpointStackframeForeground: #89d185;
2178
- --vscode-notebook-cellBorderColor: #37373d;
2179
- --vscode-notebook-focusedEditorBorder: #007fd4;
2180
- --vscode-notebookStatusSuccessIcon-foreground: #89d185;
2181
- --vscode-notebookStatusErrorIcon-foreground: #f48771;
2182
- --vscode-notebookStatusRunningIcon-foreground: #cccccc;
2183
- --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
2184
- --vscode-notebook-selectedCellBackground: #37373d;
2185
- --vscode-notebook-selectedCellBorder: #37373d;
2186
- --vscode-notebook-focusedCellBorder: #007fd4;
2187
- --vscode-notebook-inactiveFocusedCellBorder: #37373d;
2188
- --vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
2189
- --vscode-notebook-cellInsertionIndicator: #007fd4;
2190
- --vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, 0.4);
2191
- --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
2192
- --vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
2193
- --vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
2194
- --vscode-notebook-cellEditorBackground: #252526;
2195
- --vscode-notebook-editorBackground: #1e1e1e;
2196
- --vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
2197
- --vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
2198
- --vscode-scm-providerBorder: #454545;
2199
- --vscode-debugTokenExpression-name: #c586c0;
2200
- --vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
2201
- --vscode-debugTokenExpression-string: #ce9178;
2202
- --vscode-debugTokenExpression-boolean: #4e94ce;
2203
- --vscode-debugTokenExpression-number: #b5cea8;
2204
- --vscode-debugTokenExpression-error: #f48771;
2205
- --vscode-debugView-exceptionLabelForeground: #cccccc;
2206
- --vscode-debugView-exceptionLabelBackground: #6c2022;
2207
- --vscode-debugView-stateLabelForeground: #cccccc;
2208
- --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
2209
- --vscode-debugView-valueChangedHighlight: #569cd6;
2210
- --vscode-debugConsole-infoForeground: #3794ff;
2211
- --vscode-debugConsole-warningForeground: #cca700;
2212
- --vscode-debugConsole-errorForeground: #f48771;
2213
- --vscode-debugConsole-sourceForeground: #cccccc;
2214
- --vscode-debugConsoleInputIcon-foreground: #cccccc;
2215
- --vscode-debugIcon-pauseForeground: #75beff;
2216
- --vscode-debugIcon-stopForeground: #f48771;
2217
- --vscode-debugIcon-disconnectForeground: #f48771;
2218
- --vscode-debugIcon-restartForeground: #89d185;
2219
- --vscode-debugIcon-stepOverForeground: #75beff;
2220
- --vscode-debugIcon-stepIntoForeground: #75beff;
2221
- --vscode-debugIcon-stepOutForeground: #75beff;
2222
- --vscode-debugIcon-continueForeground: #75beff;
2223
- --vscode-debugIcon-stepBackForeground: #75beff;
2224
- --vscode-extensionButton-prominentBackground: #0e639c;
2225
- --vscode-extensionButton-prominentForeground: #ffffff;
2226
- --vscode-extensionButton-prominentHoverBackground: #1177bb;
2227
- --vscode-extensionIcon-starForeground: #ff8e00;
2228
- --vscode-extensionIcon-verifiedForeground: #3794ff;
2229
- --vscode-extensionIcon-preReleaseForeground: #1d9271;
2230
- --vscode-extensionIcon-sponsorForeground: #d758b3;
2231
- --vscode-terminal-ansiBlack: #000000;
2232
- --vscode-terminal-ansiRed: #cd3131;
2233
- --vscode-terminal-ansiGreen: #0dbc79;
2234
- --vscode-terminal-ansiYellow: #e5e510;
2235
- --vscode-terminal-ansiBlue: #2472c8;
2236
- --vscode-terminal-ansiMagenta: #bc3fbc;
2237
- --vscode-terminal-ansiCyan: #11a8cd;
2238
- --vscode-terminal-ansiWhite: #e5e5e5;
2239
- --vscode-terminal-ansiBrightBlack: #666666;
2240
- --vscode-terminal-ansiBrightRed: #f14c4c;
2241
- --vscode-terminal-ansiBrightGreen: #23d18b;
2242
- --vscode-terminal-ansiBrightYellow: #f5f543;
2243
- --vscode-terminal-ansiBrightBlue: #3b8eea;
2244
- --vscode-terminal-ansiBrightMagenta: #d670d6;
2245
- --vscode-terminal-ansiBrightCyan: #29b8db;
2246
- --vscode-terminal-ansiBrightWhite: #e5e5e5;
2247
- --vscode-interactive-activeCodeBorder: #3794ff;
2248
- --vscode-interactive-inactiveCodeBorder: #37373d;
2249
- --vscode-gitDecoration-addedResourceForeground: #81b88b;
2250
- --vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
2251
- --vscode-gitDecoration-deletedResourceForeground: #c74e39;
2252
- --vscode-gitDecoration-renamedResourceForeground: #73c991;
2253
- --vscode-gitDecoration-untrackedResourceForeground: #73c991;
2254
- --vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;
2255
- --vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
2256
- --vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
2257
- --vscode-gitDecoration-conflictingResourceForeground: #e4676b;
2258
- --vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
2259
- }
2260
-
2261
- .cm-wrapper {
2262
- line-height: 18px;
2263
- }
2264
-
2265
- .cm-wrapper, .cm-wrapper > div {
2266
- width: 100%;
2267
- height: 100%;
2268
- }
2269
-
2270
- .CodeMirror span.cm-meta {
2271
- color: var(--vscode-editor-foreground);
2272
- }
2273
-
2274
- .CodeMirror span.cm-number {
2275
- color: var(--vscode-debugTokenExpression-number);
2276
- }
2277
-
2278
- .CodeMirror span.cm-keyword,
2279
- .CodeMirror span.cm-builtin {
2280
- color: var(--vscode-debugTokenExpression-name);
2281
- }
2282
-
2283
- .CodeMirror span.cm-operator {
2284
- color: var(--vscode-editor-foreground);
2285
- }
2286
-
2287
- .CodeMirror span.cm-string {
2288
- color: var(--vscode-debugTokenExpression-string);
2289
- }
2290
-
2291
- .CodeMirror span.cm-string-2 {
2292
- color: var(--vscode-debugTokenExpression-string);
2293
- }
2294
-
2295
- .CodeMirror span.cm-error {
2296
- color: var(--vscode-errorForeground);
2297
- }
2298
-
2299
- .CodeMirror span.cm-def, .CodeMirror span.cm-tag {
2300
- color: #0070c1;
2301
- }
2302
-
2303
- .CodeMirror span.cm-comment, .CodeMirror span.cm-link {
2304
- color: #008000;
2305
- }
2306
-
2307
- .CodeMirror span.cm-variable, .CodeMirror span.cm-variable-2, .CodeMirror span.cm-atom {
2308
- color: #0070c1;
2309
- }
2310
-
2311
- .CodeMirror span.cm-property {
2312
- color: #795e26;
2313
- }
2314
-
2315
- .CodeMirror span.cm-qualifier, .CodeMirror span.cm-attribute {
2316
- color: #001080;
2317
- }
2318
-
2319
- .CodeMirror span.cm-variable-3,
2320
- .CodeMirror span.cm-type {
2321
- color: #267f99;
2322
- }
2323
-
2324
- body.dark-mode .CodeMirror span.cm-def,
2325
- body.dark-mode .CodeMirror span.cm-tag {
2326
- color: var(--vscode-debugView-valueChangedHighlight);
2327
- }
2328
-
2329
- body.dark-mode .CodeMirror span.cm-comment,
2330
- body.dark-mode .CodeMirror span.cm-link {
2331
- color: #6a9955;
2332
- }
2333
-
2334
- body.dark-mode .CodeMirror span.cm-variable,
2335
- body.dark-mode .CodeMirror span.cm-variable-2,
2336
- body.dark-mode .CodeMirror span.cm-atom {
2337
- color: #4fc1ff;
2338
- }
2339
-
2340
- body.dark-mode .CodeMirror span.cm-property {
2341
- color: #dcdcaa;
2342
- }
2343
-
2344
- body.dark-mode .CodeMirror span.cm-qualifier,
2345
- body.dark-mode .CodeMirror span.cm-attribute {
2346
- color: #9cdcfe;
2347
- }
2348
-
2349
- body.dark-mode .CodeMirror span.cm-variable-3,
2350
- body.dark-mode .CodeMirror span.cm-type {
2351
- color: #4ec9b0;
2352
- }
2353
-
2354
- .CodeMirror span.cm-bracket {
2355
- color: var(--vscode-editorBracketHighlight-foreground3);
2356
- }
2357
-
2358
- .CodeMirror-cursor {
2359
- border-left: 1px solid var(--vscode-editor-foreground) !important;
2360
- }
2361
-
2362
- .CodeMirror div.CodeMirror-selected {
2363
- background: var(--vscode-terminal-inactiveSelectionBackground);
2364
- }
2365
-
2366
- .CodeMirror .CodeMirror-gutters {
2367
- z-index: 0;
2368
- background: 1px solid var(--vscode-editorGroup-border);
2369
- border-right: none;
2370
- }
2371
-
2372
- .CodeMirror .CodeMirror-gutter-elt {
2373
- background-color: var(--vscode-editorGutter-background);
2374
- }
2375
-
2376
- .CodeMirror .CodeMirror-gutterwrapper {
2377
- border-right: 1px solid var(--vscode-editorGroup-border);
2378
- color: var(--vscode-editorLineNumber-foreground);
2379
- }
2380
-
2381
- .CodeMirror .CodeMirror-matchingbracket {
2382
- background-color: var(--vscode-editorBracketPairGuide-background1);
2383
- color: var(--vscode-editorBracketHighlight-foreground1) !important;
2384
- }
2385
-
2386
- .CodeMirror {
2387
- font-family: var(--vscode-editor-font-family) !important;
2388
- color: var(--vscode-editor-foreground) !important;
2389
- background-color: var(--vscode-editor-background) !important;
2390
- font-weight: var(--vscode-editor-font-weight) !important;
2391
- font-size: var(--vscode-editor-font-size) !important;
2392
- }
2393
-
2394
- .CodeMirror .source-line-running {
2395
- background-color: var(--vscode-editor-selectionBackground);
2396
- z-index: 2;
2397
- }
2398
-
2399
- .CodeMirror .source-line-paused {
2400
- background-color: var(--vscode-editor-selectionHighlightBackground);
2401
- z-index: 2;
2402
- }
2403
-
2404
- .CodeMirror .source-line-error {
2405
- /* Intentionally empty. */
2406
- }
2407
-
2408
- .CodeMirror .source-line-error-widget {
2409
- background-color: var(--vscode-inputValidation-errorBackground);
2410
- white-space: pre-wrap;
2411
- margin: 3px 10px;
2412
- padding: 5px;
2413
- }
2414
-
2415
- .CodeMirror span.cm-link, span.cm-linkified {
2416
- color: var(--vscode-textLink-foreground);
2417
- text-decoration: underline;
2418
- cursor: pointer;
2419
- }
2420
-
2421
- .CodeMirror .source-line-error-underline {
2422
- text-decoration: underline;
2423
- text-decoration-color: var(--vscode-errorForeground);
2424
- text-decoration-style: wavy;
2425
- }
2426
-
2427
- .CodeMirror-placeholder {
2428
- color: var(--vscode-input-placeholderForeground) !important;
2429
- }
2430
- /*
2431
- Copyright (c) Microsoft Corporation.
2432
-
2433
- Licensed under the Apache License, Version 2.0 (the "License");
2434
- you may not use this file except in compliance with the License.
2435
- You may obtain a copy of the License at
2436
-
2437
- http://www.apache.org/licenses/LICENSE-2.0
2438
-
2439
- Unless required by applicable law or agreed to in writing, software
2440
- distributed under the License is distributed on an "AS IS" BASIS,
2441
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2442
- See the License for the specific language governing permissions and
2443
- limitations under the License.
2444
- */
2445
-
2446
-
2447
- .console-tab {
2448
- display: flex;
2449
- flex: auto;
2450
- white-space: pre;
2451
- }
2452
-
2453
- .console-line {
2454
- width: 100%;
2455
- user-select: text;
2456
- }
2457
-
2458
- .console-line .codicon {
2459
- padding: 0 2px 0 3px;
2460
- position: relative;
2461
- flex: none;
2462
- top: 3px;
2463
- }
2464
-
2465
- .console-line.warning .codicon {
2466
- color: darkorange;
2467
- }
2468
-
2469
- .console-line-message {
2470
- word-break: break-word;
2471
- white-space: pre-wrap;
2472
- position: relative;
2473
- }
2474
-
2475
- .console-location {
2476
- padding-right: 3px;
2477
- float: right;
2478
- color: var(--vscode-editorCodeLens-foreground);
2479
- user-select: none;
2480
- }
2481
-
2482
- .console-time {
2483
- float: left;
2484
- min-width: 50px;
2485
- color: var(--vscode-editorCodeLens-foreground);
2486
- user-select: none;
2487
- }
2488
-
2489
- .console-stack {
2490
- white-space: pre-wrap;
2491
- margin-left: 50px;
2492
- }
2493
-
2494
- .console-line .codicon.status-none::after,
2495
- .console-line .codicon.status-error::after,
2496
- .console-line .codicon.status-warning::after {
2497
- display: inline-block;
2498
- content: 'a';
2499
- color: transparent;
2500
- border-radius: 4px;
2501
- width: 8px;
2502
- height: 8px;
2503
- position: relative;
2504
- top: 8px;
2505
- left: -7px;
2506
- }
2507
-
2508
- .console-line .codicon.status-error::after {
2509
- background-color: var(--vscode-errorForeground);
2510
- }
2511
-
2512
- .console-line .codicon.status-warning::after {
2513
- background-color: var(--vscode-list-warningForeground);
2514
- }
2515
-
2516
- .console-repeat {
2517
- display: inline-block;
2518
- padding: 0 2px;
2519
- font-size: 12px;
2520
- line-height: 18px;
2521
- border-radius: 6px;
2522
- background-color: #8c959f;
2523
- color: white;
2524
- margin-right: 10px;
2525
- flex: none;
2526
- font-weight: 600;
2527
- }
2528
- /*
2529
- Copyright (c) Microsoft Corporation.
2530
-
2531
- Licensed under the Apache License, Version 2.0 (the "License");
2532
- you may not use this file except in compliance with the License.
2533
- You may obtain a copy of the License at
2534
-
2535
- http://www.apache.org/licenses/LICENSE-2.0
2536
-
2537
- Unless required by applicable law or agreed to in writing, software
2538
- distributed under the License is distributed on an "AS IS" BASIS,
2539
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2540
- See the License for the specific language governing permissions and
2541
- limitations under the License.
2542
- */
2543
-
2544
- .network-request-status-route {
2545
- color: var(--vscode-statusBar-foreground);
2546
- background-color: var(--vscode-statusBar-background);
2547
- }
2548
-
2549
- .network-request-status-route.api {
2550
- color: var(--vscode-statusBar-foreground);
2551
- background-color: var(--vscode-statusBarItem-remoteBackground);
2552
- }
2553
-
2554
- .network-grid-view .grid-view-column-method,
2555
- .network-grid-view .grid-view-column-status {
2556
- text-align: center;
2557
- }
2558
-
2559
- .network-grid-view .grid-view-column-duration,
2560
- .network-grid-view .grid-view-column-size,
2561
- .network-grid-view .grid-view-column-start {
2562
- text-align: end;
2563
- }
2564
- /*
2565
- Copyright (c) Microsoft Corporation.
2566
-
2567
- Licensed under the Apache License, Version 2.0 (the "License");
2568
- you may not use this file except in compliance with the License.
2569
- You may obtain a copy of the License at
2570
-
2571
- http://www.apache.org/licenses/LICENSE-2.0
2572
-
2573
- Unless required by applicable law or agreed to in writing, software
2574
- distributed under the License is distributed on an "AS IS" BASIS,
2575
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2576
- See the License for the specific language governing permissions and
2577
- limitations under the License.
2578
- */
2579
-
2580
- .network-request-details-tab {
2581
- width: 100%;
2582
- height: 100%;
2583
- user-select: text;
2584
- line-height: 24px;
2585
- margin-left: 10px;
2586
- overflow: auto;
2587
- }
2588
-
2589
- .network-request-details-url {
2590
- white-space: normal;
2591
- word-wrap: break-word;
2592
- margin-left: 10px;
2593
- }
2594
-
2595
- .network-request-details-headers {
2596
- white-space: pre;
2597
- overflow: hidden;
2598
- margin-left: 10px;
2599
- }
2600
-
2601
- .network-request-details-header {
2602
- margin: 3px 0;
2603
- font-weight: bold;
2604
- }
2605
-
2606
- .network-request-details-general {
2607
- white-space: pre;
2608
- margin-left: 10px;
2609
- }
2610
-
2611
- .network-request-details-tab .cm-wrapper {
2612
- overflow: hidden;
2613
- }
2614
-
2615
- .network-request-details-copy {
2616
- display: flex;
2617
- margin: 8px 10px;
2618
- gap: 8px;
2619
- }
2620
-
2621
- .network-font-preview {
2622
- font-family: font-preview;
2623
- font-size: 30px;
2624
- line-height: 40px;
2625
- padding: 16px;
2626
- padding-left: 6px;
2627
- overflow: hidden;
2628
- text-overflow: ellipsis;
2629
- text-align: center;
2630
- }
2631
-
2632
- .network-font-preview-error {
2633
- margin-top: 8px;
2634
- text-align: center;
2635
- }
2636
-
2637
- .tab-network .toolbar {
2638
- min-height: 30px !important;
2639
- background-color: initial !important;
2640
- border-bottom: 1px solid var(--vscode-panel-border);
2641
- }
2642
-
2643
- .tab-network .toolbar::after {
2644
- box-shadow: none !important;
2645
- }
2646
-
2647
- .tab-network .tabbed-pane-tab.selected {
2648
- font-weight: bold;
2649
- }
2650
-
2651
- .green-circle::before,
2652
- .red-circle::before,
2653
- .yellow-circle::before {
2654
- content: "";
2655
- display: inline-block;
2656
- width: 12px;
2657
- height: 12px;
2658
- border-radius: 6px;
2659
- margin-right: 2px;
2660
- align-self: center;
2661
- }
2662
-
2663
- .green-circle::before {
2664
- background-color: var(--vscode-charts-green);
2665
- }
2666
-
2667
- .red-circle::before {
2668
- background-color: var(--vscode-charts-red);
2669
- }
2670
-
2671
- .yellow-circle::before {
2672
- background-color: var(--vscode-charts-yellow);
2673
- }
2674
- /*
2675
- Copyright (c) Microsoft Corporation.
2676
-
2677
- Licensed under the Apache License, Version 2.0 (the "License");
2678
- you may not use this file except in compliance with the License.
2679
- You may obtain a copy of the License at
2680
-
2681
- http://www.apache.org/licenses/LICENSE-2.0
2682
-
2683
- Unless required by applicable law or agreed to in writing, software
2684
- distributed under the License is distributed on an "AS IS" BASIS,
2685
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2686
- See the License for the specific language governing permissions and
2687
- limitations under the License.
2688
- */
2689
-
2690
- .tabbed-pane {
2691
- display: flex;
2692
- flex: auto;
2693
- overflow: hidden;
2694
- }
2695
-
2696
- .tabbed-pane .toolbar {
2697
- background-color: var(--vscode-sideBar-background);
2698
- }
2699
-
2700
- .tabbed-pane .tab-content {
2701
- display: flex;
2702
- flex: auto;
2703
- overflow: hidden;
2704
- position: relative;
2705
- flex-direction: column;
2706
- }
2707
-
2708
- .tabbed-pane-tab {
2709
- padding: 2px 6px 0 6px;
2710
- cursor: pointer;
2711
- display: flex;
2712
- align-items: center;
2713
- justify-content: center;
2714
- user-select: none;
2715
- border-bottom: 2px solid transparent;
2716
- outline: none;
2717
- height: 100%;
2718
- }
2719
-
2720
- .tabbed-pane-tab-label {
2721
- max-width: 250px;
2722
- white-space: pre;
2723
- overflow: hidden;
2724
- text-overflow: ellipsis;
2725
- display: inline-block;
2726
- }
2727
-
2728
- .tabbed-pane-tab.selected {
2729
- background-color: var(--vscode-tab-activeBackground);
2730
- }
2731
-
2732
- .tabbed-pane-tab-counter {
2733
- padding: 0 4px;
2734
- background: var(--vscode-menu-separatorBackground);
2735
- border-radius: 8px;
2736
- height: 16px;
2737
- margin-left: 4px;
2738
- line-height: 16px;
2739
- min-width: 18px;
2740
- display: flex;
2741
- align-items: center;
2742
- justify-content: center;
2743
- }
2744
-
2745
- .tabbed-pane-tab-counter.error {
2746
- background: var(--vscode-list-errorForeground);
2747
- color: var(--vscode-button-foreground);
2748
- }
2749
- /*
2750
- Copyright (c) Microsoft Corporation.
2751
-
2752
- Licensed under the Apache License, Version 2.0 (the "License");
2753
- you may not use this file except in compliance with the License.
2754
- You may obtain a copy of the License at
2755
-
2756
- http://www.apache.org/licenses/LICENSE-2.0
2757
-
2758
- Unless required by applicable law or agreed to in writing, software
2759
- distributed under the License is distributed on an "AS IS" BASIS,
2760
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2761
- See the License for the specific language governing permissions and
2762
- limitations under the License.
2763
- */
2764
-
2765
- .toolbar {
2766
- position: relative;
2767
- display: flex;
2768
- color: var(--vscode-sideBarTitle-foreground);
2769
- min-height: 35px;
2770
- align-items: center;
2771
- flex: none;
2772
- padding-right: 4px;
2773
- }
2774
-
2775
- .toolbar.toolbar-sidebar-background {
2776
- background-color: var(--vscode-sideBar-background);
2777
- }
2778
-
2779
- .toolbar:after {
2780
- content: '';
2781
- display: block;
2782
- position: absolute;
2783
- pointer-events: none;
2784
- top: 0;
2785
- bottom: 0;
2786
- left: -2px;
2787
- right: -2px;
2788
- box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px;
2789
- z-index: 100;
2790
- }
2791
-
2792
- .toolbar.no-shadow:after {
2793
- box-shadow: none;
2794
- }
2795
-
2796
- .toolbar.no-min-height {
2797
- min-height: 0;
2798
- }
2799
-
2800
- .toolbar input {
2801
- padding: 0 5px;
2802
- line-height: 24px;
2803
- outline: none;
2804
- margin: 0 4px;
2805
- }
2806
-
2807
- .toolbar select {
2808
- background: none;
2809
- outline: none;
2810
- padding: 3px;
2811
- margin: 2px;
2812
- }
2813
-
2814
- .toolbar option {
2815
- background-color: var(--vscode-tab-activeBackground)
2816
- }
2817
-
2818
- .toolbar input, .toolbar select {
2819
- border: none;
2820
- color: var(--vscode-input-foreground);
2821
- background-color: var(--vscode-input-background);
2822
- }
2823
- /*
2824
- Copyright (c) Microsoft Corporation.
2825
-
2826
- Licensed under the Apache License, Version 2.0 (the "License");
2827
- you may not use this file except in compliance with the License.
2828
- You may obtain a copy of the License at
2829
-
2830
- http://www.apache.org/licenses/LICENSE-2.0
2831
-
2832
- Unless required by applicable law or agreed to in writing, software
2833
- distributed under the License is distributed on an "AS IS" BASIS,
2834
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2835
- See the License for the specific language governing permissions and
2836
- limitations under the License.
2837
- */
2838
-
2839
- .grid-view {
2840
- display: flex;
2841
- position: relative;
2842
- flex: auto;
2843
- }
2844
-
2845
- .grid-view .list-view-entry {
2846
- padding-left: 0;
2847
- }
2848
-
2849
- .grid-view-cell {
2850
- overflow: hidden;
2851
- text-overflow: ellipsis;
2852
- padding: 0 5px;
2853
- flex: none;
2854
- }
2855
-
2856
- .grid-view-header {
2857
- user-select: none;
2858
- display: flex;
2859
- flex: 0 0 30px;
2860
- align-items: center;
2861
- flex-direction: row;
2862
- border-bottom: 1px solid var(--vscode-panel-border);
2863
- }
2864
-
2865
- .grid-view-header .codicon-triangle-up {
2866
- display: none;
2867
- }
2868
- .grid-view-header .codicon-triangle-down {
2869
- display: none;
2870
- }
2871
-
2872
- .grid-view-header > .filter-positive .codicon-triangle-down {
2873
- display: initial !important;
2874
- }
2875
-
2876
- .grid-view-header > .filter-negative .codicon-triangle-up {
2877
- display: initial !important;
2878
- }
2879
-
2880
- .grid-view-header-cell {
2881
- flex: none;
2882
- align-items: center;
2883
- overflow: hidden;
2884
- text-overflow: ellipsis;
2885
- padding-left: 10px;
2886
- cursor: pointer;
2887
- display: flex;
2888
- white-space: nowrap;
2889
- }
2890
-
2891
- .grid-view-header-cell-title {
2892
- overflow: hidden;
2893
- text-overflow: ellipsis;
2894
- flex: auto;
2895
- }
2896
- /*
2897
- Copyright (c) Microsoft Corporation.
2898
-
2899
- Licensed under the Apache License, Version 2.0 (the "License");
2900
- you may not use this file except in compliance with the License.
2901
- You may obtain a copy of the License at
2902
-
2903
- http://www.apache.org/licenses/LICENSE-2.0
2904
-
2905
- Unless required by applicable law or agreed to in writing, software
2906
- distributed under the License is distributed on an "AS IS" BASIS,
2907
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2908
- See the License for the specific language governing permissions and
2909
- limitations under the License.
2910
- */
2911
-
2912
- .network-filters {
2913
- display: flex;
2914
- gap: 16px;
2915
- background-color: var(--vscode-sideBar-background);
2916
- padding: 4px 8px;
2917
- min-height: 32px;
2918
- }
2919
-
2920
- .network-filters input[type="search"] {
2921
- padding: 0 5px;
2922
- }
2923
-
2924
- .network-filters-resource-types {
2925
- display: flex;
2926
- gap: 8px;
2927
- align-items: center;
2928
- }
2929
-
2930
- .network-filters-resource-type {
2931
- cursor: pointer;
2932
- border-radius: 2px;
2933
- padding: 3px 8px;
2934
- text-align: center;
2935
- overflow: hidden;
2936
- text-overflow: ellipsis;
2937
- }
2938
-
2939
- .network-filters-resource-type.selected {
2940
- background-color: var(--vscode-list-inactiveSelectionBackground);
2941
- }
2942
- /*
2943
- Copyright (c) Microsoft Corporation.
2944
-
2945
- Licensed under the Apache License, Version 2.0 (the "License");
2946
- you may not use this file except in compliance with the License.
2947
- You may obtain a copy of the License at
2948
-
2949
- http://www.apache.org/licenses/LICENSE-2.0
2950
-
2951
- Unless required by applicable law or agreed to in writing, software
2952
- distributed under the License is distributed on an "AS IS" BASIS,
2953
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2954
- See the License for the specific language governing permissions and
2955
- limitations under the License.
2956
- */
2957
-
2958
- .snapshot-tab {
2959
- align-items: stretch;
2960
- outline: none;
2961
- overflow: hidden;
2962
- }
2963
-
2964
- .snapshot-tab .toolbar {
2965
- background-color: var(--vscode-sideBar-background);
2966
- }
2967
-
2968
- .snapshot-tab .toolbar .pick-locator {
2969
- margin: 0 4px;
2970
- }
2971
-
2972
- .snapshot-controls {
2973
- flex: none;
2974
- background-color: var(--vscode-sideBar-background);
2975
- color: var(--vscode-sideBarTitle-foreground);
2976
- display: flex;
2977
- box-shadow: var(--box-shadow);
2978
- height: 32px;
2979
- align-items: center;
2980
- justify-content: center;
2981
- }
2982
-
2983
- .snapshot-toggle {
2984
- margin-top: 4px;
2985
- padding: 4px 8px;
2986
- cursor: pointer;
2987
- border-radius: 20px;
2988
- margin-left: 4px;
2989
- width: 60px;
2990
- display: flex;
2991
- align-items: center;
2992
- justify-content: center;
2993
- }
2994
-
2995
- .snapshot-toggle:hover {
2996
- background-color: #ededed;
2997
- }
2998
-
2999
- .snapshot-toggle.toggled {
3000
- background: var(--gray);
3001
- color: white;
3002
- }
3003
-
3004
- .snapshot-tab:focus .snapshot-toggle.toggled {
3005
- background: var(--vscode-charts-blue);
3006
- }
3007
-
3008
- .snapshot-wrapper {
3009
- flex: auto;
3010
- margin: 1px;
3011
- padding: 10px;
3012
- position: relative;
3013
- --browser-frame-header-height: 40px;
3014
- }
3015
-
3016
- .snapshot-container {
3017
- display: block;
3018
- box-shadow: 0 12px 28px 0 rgba(0,0,0,.2),0 2px 4px 0 rgba(0,0,0,.1);
3019
- }
3020
-
3021
- .snapshot-switcher {
3022
- width: 100%;
3023
- height: calc(100% - var(--browser-frame-header-height));
3024
- position: relative;
3025
- }
3026
-
3027
- iframe[name=snapshot] {
3028
- position: absolute;
3029
- top: 0;
3030
- left: 0;
3031
- width: 100%;
3032
- height: 100%;
3033
- border: none;
3034
- background: white;
3035
- visibility: hidden;
3036
- }
3037
-
3038
- iframe.snapshot-visible[name=snapshot] {
3039
- visibility: visible;
3040
- }
3041
-
3042
- .no-snapshot {
3043
- text-align: center;
3044
- padding: 50px;
3045
- }
3046
-
3047
- .snapshot-tab .cm-wrapper {
3048
- line-height: 23px;
3049
- margin-right: 4px;
3050
- }
3051
- /*
3052
- Copyright (c) Microsoft Corporation.
3053
-
3054
- Licensed under the Apache License, Version 2.0 (the "License");
3055
- you may not use this file except in compliance with the License.
3056
- You may obtain a copy of the License at
3057
-
3058
- http://www.apache.org/licenses/LICENSE-2.0
3059
-
3060
- Unless required by applicable law or agreed to in writing, software
3061
- distributed under the License is distributed on an "AS IS" BASIS,
3062
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3063
- See the License for the specific language governing permissions and
3064
- limitations under the License.
3065
- */
3066
-
3067
- .browser-frame-dot {
3068
- border-radius: 50%;
3069
- display: inline-block;
3070
- height: 12px;
3071
- margin-right: 6px;
3072
- margin-top: 4px;
3073
- width: 12px;
3074
- }
3075
-
3076
- .browser-frame-address-bar {
3077
- background-color: var(--vscode-input-background);
3078
- border-radius: 12.5px;
3079
- color: var(--vscode-input-foreground);
3080
- flex: 1 0;
3081
- font: 400 16px Arial,sans-serif;
3082
- margin: 0 16px 0 8px;
3083
- padding: 5px 15px;
3084
- overflow: hidden;
3085
- text-overflow: ellipsis;
3086
- white-space: nowrap;
3087
- }
3088
-
3089
- .browser-frame-menu-bar {
3090
- background-color: #aaa;
3091
- display: block;
3092
- height: 3px;
3093
- margin: 3px 0;
3094
- width: 17px;
3095
- }
3096
-
3097
- .browser-frame-header {
3098
- align-items: center;
3099
- background: #ebedf0;
3100
- display: flex;
3101
- padding: 8px 16px;
3102
- border-top-left-radius: 6px;
3103
- border-top-right-radius: 6px;
3104
- height: var(--browser-frame-header-height);
3105
- }
3106
-
3107
- body.dark-mode .browser-frame-header {
3108
- background: #444950;
3109
- }
3110
- /*
3111
- Copyright (c) Microsoft Corporation.
3112
-
3113
- Licensed under the Apache License, Version 2.0 (the "License");
3114
- you may not use this file except in compliance with the License.
3115
- You may obtain a copy of the License at
3116
-
3117
- http://www.apache.org/licenses/LICENSE-2.0
3118
-
3119
- Unless required by applicable law or agreed to in writing, software
3120
- distributed under the License is distributed on an "AS IS" BASIS,
3121
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3122
- See the License for the specific language governing permissions and
3123
- limitations under the License.
3124
- */
3125
-
3126
- .source-tab {
3127
- flex: auto;
3128
- position: relative;
3129
- overflow: hidden;
3130
- display: flex;
3131
- flex-direction: row;
3132
- }
3133
-
3134
- .source-tab-file-name {
3135
- padding-left: 8px;
3136
- height: 100%;
3137
- display: flex;
3138
- align-items: center;
3139
- flex: 1 1 auto;
3140
- }
3141
-
3142
- .source-tab-file-name div {
3143
- overflow: hidden;
3144
- text-overflow: ellipsis;
3145
- white-space: nowrap;
3146
- }
3147
- /*
3148
- Copyright (c) Microsoft Corporation.
3149
-
3150
- Licensed under the Apache License, Version 2.0 (the "License");
3151
- you may not use this file except in compliance with the License.
3152
- You may obtain a copy of the License at
3153
-
3154
- http://www.apache.org/licenses/LICENSE-2.0
3155
-
3156
- Unless required by applicable law or agreed to in writing, software
3157
- distributed under the License is distributed on an "AS IS" BASIS,
3158
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3159
- See the License for the specific language governing permissions and
3160
- limitations under the License.
3161
- */
3162
-
3163
- .stack-trace-frame-function {
3164
- flex: 1 1 100px;
3165
- overflow: hidden;
3166
- text-overflow: ellipsis;
3167
- }
3168
-
3169
- .stack-trace-frame-location {
3170
- flex: 1 1 100px;
3171
- overflow: hidden;
3172
- text-overflow: ellipsis;
3173
- text-align: end;
3174
- }
3175
-
3176
- .stack-trace-frame-line {
3177
- flex: none;
3178
- }