@finos/legend-vscode-extension-dependencies 1.0.2 → 2.0.1
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.
@@ -1086,12 +1086,6 @@
|
|
1086
1086
|
display: inline-block;
|
1087
1087
|
}
|
1088
1088
|
|
1089
|
-
.monaco-hover-content {
|
1090
|
-
padding-right: 2px;
|
1091
|
-
padding-bottom: 2px;
|
1092
|
-
box-sizing: border-box;
|
1093
|
-
}
|
1094
|
-
|
1095
1089
|
.monaco-hover-content .action-container a {
|
1096
1090
|
-webkit-user-select: none;
|
1097
1091
|
user-select: none;
|
@@ -2104,149 +2098,174 @@
|
|
2104
2098
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2105
2099
|
*--------------------------------------------------------------------------------------------*/
|
2106
2100
|
|
2107
|
-
|
2108
|
-
|
2109
|
-
|
2101
|
+
.monaco-text-button {
|
2102
|
+
box-sizing: border-box;
|
2103
|
+
display: flex;
|
2104
|
+
width: 100%;
|
2105
|
+
padding: 4px;
|
2106
|
+
border-radius: 2px;
|
2107
|
+
text-align: center;
|
2108
|
+
cursor: pointer;
|
2109
|
+
justify-content: center;
|
2110
|
+
align-items: center;
|
2111
|
+
border: 1px solid var(--vscode-button-border, transparent);
|
2112
|
+
line-height: 18px;
|
2110
2113
|
}
|
2111
2114
|
|
2112
|
-
.monaco-
|
2113
|
-
|
2114
|
-
z-index: 35;
|
2115
|
-
touch-action: none;
|
2115
|
+
.monaco-text-button:focus {
|
2116
|
+
outline-offset: 2px !important;
|
2116
2117
|
}
|
2117
2118
|
|
2118
|
-
.monaco-
|
2119
|
-
|
2119
|
+
.monaco-text-button:hover {
|
2120
|
+
text-decoration: none !important;
|
2120
2121
|
}
|
2121
2122
|
|
2122
|
-
.monaco-
|
2123
|
-
|
2123
|
+
.monaco-button.disabled:focus,
|
2124
|
+
.monaco-button.disabled {
|
2125
|
+
opacity: 0.4 !important;
|
2126
|
+
cursor: default;
|
2124
2127
|
}
|
2125
2128
|
|
2126
|
-
.monaco-
|
2127
|
-
|
2129
|
+
.monaco-text-button .codicon {
|
2130
|
+
margin: 0 0.2em;
|
2131
|
+
color: inherit !important;
|
2128
2132
|
}
|
2129
2133
|
|
2130
|
-
.monaco-
|
2131
|
-
|
2134
|
+
.monaco-text-button.monaco-text-button-with-short-label {
|
2135
|
+
flex-direction: row;
|
2136
|
+
flex-wrap: wrap;
|
2137
|
+
padding: 0 4px;
|
2138
|
+
overflow: hidden;
|
2139
|
+
height: 28px;
|
2132
2140
|
}
|
2133
2141
|
|
2134
|
-
.monaco-
|
2135
|
-
|
2142
|
+
.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label {
|
2143
|
+
flex-basis: 100%;
|
2136
2144
|
}
|
2137
2145
|
|
2138
|
-
.monaco-
|
2139
|
-
|
2146
|
+
.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
|
2147
|
+
flex-grow: 1;
|
2148
|
+
width: 0;
|
2149
|
+
overflow: hidden;
|
2140
2150
|
}
|
2141
2151
|
|
2142
|
-
.monaco-
|
2143
|
-
|
2152
|
+
.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label,
|
2153
|
+
.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
|
2154
|
+
display: flex;
|
2155
|
+
justify-content: center;
|
2156
|
+
align-items: center;
|
2157
|
+
font-weight: normal;
|
2158
|
+
font-style: inherit;
|
2159
|
+
padding: 4px 0;
|
2144
2160
|
}
|
2145
2161
|
|
2146
|
-
.monaco-
|
2147
|
-
|
2148
|
-
|
2162
|
+
.monaco-button-dropdown {
|
2163
|
+
display: flex;
|
2164
|
+
cursor: pointer;
|
2149
2165
|
}
|
2150
2166
|
|
2151
|
-
.monaco-
|
2152
|
-
cursor:
|
2153
|
-
top: 0;
|
2154
|
-
width: var(--vscode-sash-size);
|
2155
|
-
height: 100%;
|
2167
|
+
.monaco-button-dropdown.disabled {
|
2168
|
+
cursor: default;
|
2156
2169
|
}
|
2157
2170
|
|
2158
|
-
.monaco-
|
2159
|
-
|
2160
|
-
left: 0;
|
2161
|
-
width: 100%;
|
2162
|
-
height: var(--vscode-sash-size);
|
2171
|
+
.monaco-button-dropdown > .monaco-button:focus {
|
2172
|
+
outline-offset: -1px !important;
|
2163
2173
|
}
|
2164
2174
|
|
2165
|
-
.monaco-
|
2166
|
-
|
2167
|
-
|
2168
|
-
|
2169
|
-
z-index: 100;
|
2170
|
-
display: block;
|
2171
|
-
cursor: all-scroll;
|
2172
|
-
position: absolute;
|
2175
|
+
.monaco-button-dropdown.disabled > .monaco-button.disabled,
|
2176
|
+
.monaco-button-dropdown.disabled > .monaco-button.disabled:focus,
|
2177
|
+
.monaco-button-dropdown.disabled > .monaco-button-dropdown-separator {
|
2178
|
+
opacity: 0.4 !important;
|
2173
2179
|
}
|
2174
2180
|
|
2175
|
-
.monaco-
|
2176
|
-
|
2177
|
-
.monaco-sash.horizontal.orthogonal-edge-south:not(.disabled)
|
2178
|
-
> .orthogonal-drag-handle.end {
|
2179
|
-
cursor: nwse-resize;
|
2181
|
+
.monaco-button-dropdown > .monaco-button.monaco-text-button {
|
2182
|
+
border-right-width: 0 !important;
|
2180
2183
|
}
|
2181
2184
|
|
2182
|
-
.monaco-
|
2183
|
-
|
2184
|
-
|
2185
|
-
> .orthogonal-drag-handle.start {
|
2186
|
-
cursor: nesw-resize;
|
2185
|
+
.monaco-button-dropdown .monaco-button-dropdown-separator {
|
2186
|
+
padding: 4px 0;
|
2187
|
+
cursor: default;
|
2187
2188
|
}
|
2188
2189
|
|
2189
|
-
.monaco-
|
2190
|
-
|
2191
|
-
|
2190
|
+
.monaco-button-dropdown .monaco-button-dropdown-separator > div {
|
2191
|
+
height: 100%;
|
2192
|
+
width: 1px;
|
2192
2193
|
}
|
2193
|
-
|
2194
|
-
|
2195
|
-
|
2194
|
+
|
2195
|
+
.monaco-button-dropdown > .monaco-button.monaco-dropdown-button {
|
2196
|
+
border: 1px solid var(--vscode-button-border, transparent);
|
2197
|
+
border-left-width: 0 !important;
|
2198
|
+
border-radius: 0 2px 2px 0;
|
2199
|
+
display: flex;
|
2200
|
+
align-items: center;
|
2196
2201
|
}
|
2197
|
-
|
2198
|
-
|
2199
|
-
|
2202
|
+
|
2203
|
+
.monaco-button-dropdown > .monaco-button.monaco-text-button {
|
2204
|
+
border-radius: 2px 0 0 2px;
|
2200
2205
|
}
|
2201
|
-
|
2202
|
-
|
2203
|
-
|
2206
|
+
|
2207
|
+
.monaco-description-button {
|
2208
|
+
display: flex;
|
2209
|
+
flex-direction: column;
|
2210
|
+
align-items: center;
|
2211
|
+
margin: 4px 5px; /* allows button focus outline to be visible */
|
2204
2212
|
}
|
2205
2213
|
|
2206
|
-
.monaco-
|
2207
|
-
|
2208
|
-
|
2209
|
-
|
2210
|
-
width: 100%;
|
2211
|
-
height: 100%;
|
2212
|
-
background: transparent;
|
2214
|
+
.monaco-description-button .monaco-button-description {
|
2215
|
+
font-style: italic;
|
2216
|
+
font-size: 11px;
|
2217
|
+
padding: 4px 20px;
|
2213
2218
|
}
|
2214
2219
|
|
2215
|
-
.monaco-
|
2216
|
-
|
2220
|
+
.monaco-description-button .monaco-button-label,
|
2221
|
+
.monaco-description-button .monaco-button-description {
|
2222
|
+
display: flex;
|
2223
|
+
justify-content: center;
|
2224
|
+
align-items: center;
|
2217
2225
|
}
|
2218
2226
|
|
2219
|
-
.monaco-
|
2220
|
-
.monaco-
|
2221
|
-
|
2227
|
+
.monaco-description-button .monaco-button-label > .codicon,
|
2228
|
+
.monaco-description-button .monaco-button-description > .codicon {
|
2229
|
+
margin: 0 0.2em;
|
2230
|
+
color: inherit !important;
|
2222
2231
|
}
|
2223
2232
|
|
2224
|
-
|
2225
|
-
|
2226
|
-
|
2233
|
+
/* default color styles - based on CSS variables */
|
2234
|
+
|
2235
|
+
.monaco-button.default-colors,
|
2236
|
+
.monaco-button-dropdown.default-colors > .monaco-button{
|
2237
|
+
color: var(--vscode-button-foreground);
|
2238
|
+
background-color: var(--vscode-button-background);
|
2227
2239
|
}
|
2228
2240
|
|
2229
|
-
.monaco-
|
2230
|
-
|
2231
|
-
|
2241
|
+
.monaco-button.default-colors:hover,
|
2242
|
+
.monaco-button-dropdown.default-colors > .monaco-button:hover {
|
2243
|
+
background-color: var(--vscode-button-hoverBackground);
|
2232
2244
|
}
|
2233
2245
|
|
2234
|
-
.
|
2235
|
-
|
2246
|
+
.monaco-button.default-colors.secondary,
|
2247
|
+
.monaco-button-dropdown.default-colors > .monaco-button.secondary {
|
2248
|
+
color: var(--vscode-button-secondaryForeground);
|
2249
|
+
background-color: var(--vscode-button-secondaryBackground);
|
2236
2250
|
}
|
2237
2251
|
|
2238
|
-
|
2252
|
+
.monaco-button.default-colors.secondary:hover,
|
2253
|
+
.monaco-button-dropdown.default-colors > .monaco-button.secondary:hover {
|
2254
|
+
background-color: var(--vscode-button-secondaryHoverBackground);
|
2255
|
+
}
|
2239
2256
|
|
2240
|
-
.monaco-
|
2241
|
-
background:
|
2257
|
+
.monaco-button-dropdown.default-colors .monaco-button-dropdown-separator {
|
2258
|
+
background-color: var(--vscode-button-background);
|
2259
|
+
border-top: 1px solid var(--vscode-button-border);
|
2260
|
+
border-bottom: 1px solid var(--vscode-button-border);
|
2242
2261
|
}
|
2243
2262
|
|
2244
|
-
.monaco-
|
2245
|
-
background:
|
2263
|
+
.monaco-button-dropdown.default-colors .monaco-button.secondary + .monaco-button-dropdown-separator {
|
2264
|
+
background-color: var(--vscode-button-secondaryBackground);
|
2246
2265
|
}
|
2247
2266
|
|
2248
|
-
.monaco-
|
2249
|
-
background:
|
2267
|
+
.monaco-button-dropdown.default-colors .monaco-button-dropdown-separator > div {
|
2268
|
+
background-color: var(--vscode-button-separator);
|
2250
2269
|
}
|
2251
2270
|
|
2252
2271
|
/*---------------------------------------------------------------------------------------------
|
@@ -2254,129 +2273,87 @@
|
|
2254
2273
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2255
2274
|
*--------------------------------------------------------------------------------------------*/
|
2256
2275
|
|
2257
|
-
.monaco-
|
2258
|
-
|
2259
|
-
|
2260
|
-
|
2261
|
-
|
2262
|
-
|
2263
|
-
|
2264
|
-
|
2265
|
-
|
2266
|
-
|
2267
|
-
|
2276
|
+
.monaco-count-badge {
|
2277
|
+
padding: 3px 6px;
|
2278
|
+
border-radius: 11px;
|
2279
|
+
font-size: 11px;
|
2280
|
+
min-width: 18px;
|
2281
|
+
min-height: 18px;
|
2282
|
+
line-height: 11px;
|
2283
|
+
font-weight: normal;
|
2284
|
+
text-align: center;
|
2285
|
+
display: inline-block;
|
2286
|
+
box-sizing: border-box;
|
2268
2287
|
}
|
2269
2288
|
|
2270
|
-
.monaco-
|
2271
|
-
|
2289
|
+
.monaco-count-badge.long {
|
2290
|
+
padding: 2px 3px;
|
2291
|
+
border-radius: 2px;
|
2292
|
+
min-height: auto;
|
2293
|
+
line-height: normal;
|
2272
2294
|
}
|
2273
2295
|
|
2274
|
-
|
2275
|
-
|
2276
|
-
|
2277
|
-
|
2296
|
+
/*---------------------------------------------------------------------------------------------
|
2297
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
2298
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2299
|
+
*--------------------------------------------------------------------------------------------*/
|
2278
2300
|
|
2279
|
-
.monaco-
|
2301
|
+
.monaco-progress-container {
|
2280
2302
|
width: 100%;
|
2281
|
-
height:
|
2282
|
-
|
2283
|
-
position: relative;
|
2303
|
+
height: 2px;
|
2304
|
+
overflow: hidden; /* keep progress bit in bounds */
|
2284
2305
|
}
|
2285
2306
|
|
2286
|
-
.monaco-
|
2287
|
-
|
2307
|
+
.monaco-progress-container .progress-bit {
|
2308
|
+
width: 2%;
|
2309
|
+
height: 2px;
|
2288
2310
|
position: absolute;
|
2289
|
-
|
2290
|
-
|
2291
|
-
.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view:not(.visible) {
|
2311
|
+
left: 0;
|
2292
2312
|
display: none;
|
2293
2313
|
}
|
2294
2314
|
|
2295
|
-
.monaco-
|
2296
|
-
|
2297
|
-
}
|
2298
|
-
|
2299
|
-
.monaco-split-view2.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view {
|
2300
|
-
height: 100%;
|
2315
|
+
.monaco-progress-container.active .progress-bit {
|
2316
|
+
display: inherit;
|
2301
2317
|
}
|
2302
2318
|
|
2303
|
-
.monaco-
|
2304
|
-
content: ' ';
|
2305
|
-
position: absolute;
|
2306
|
-
top: 0;
|
2319
|
+
.monaco-progress-container.discrete .progress-bit {
|
2307
2320
|
left: 0;
|
2308
|
-
|
2309
|
-
pointer-events: none;
|
2310
|
-
background-color: var(--separator-border);
|
2311
|
-
}
|
2312
|
-
|
2313
|
-
.monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
|
2314
|
-
height: 100%;
|
2315
|
-
width: 1px;
|
2316
|
-
}
|
2317
|
-
|
2318
|
-
.monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
|
2319
|
-
height: 1px;
|
2320
|
-
width: 100%;
|
2321
|
-
}
|
2322
|
-
|
2323
|
-
/*---------------------------------------------------------------------------------------------
|
2324
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
2325
|
-
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2326
|
-
*--------------------------------------------------------------------------------------------*/
|
2327
|
-
|
2328
|
-
.monaco-table {
|
2329
|
-
display: flex;
|
2330
|
-
flex-direction: column;
|
2331
|
-
position: relative;
|
2332
|
-
height: 100%;
|
2333
|
-
width: 100%;
|
2334
|
-
white-space: nowrap;
|
2335
|
-
overflow: hidden;
|
2336
|
-
}
|
2337
|
-
|
2338
|
-
.monaco-table > .monaco-split-view2 {
|
2339
|
-
border-bottom: 1px solid transparent;
|
2340
|
-
}
|
2341
|
-
|
2342
|
-
.monaco-table > .monaco-list {
|
2343
|
-
flex: 1;
|
2344
|
-
}
|
2345
|
-
|
2346
|
-
.monaco-table-tr {
|
2347
|
-
display: flex;
|
2348
|
-
height: 100%;
|
2321
|
+
transition: width 100ms linear;
|
2349
2322
|
}
|
2350
2323
|
|
2351
|
-
.monaco-
|
2324
|
+
.monaco-progress-container.discrete.done .progress-bit {
|
2352
2325
|
width: 100%;
|
2353
|
-
height: 100%;
|
2354
|
-
font-weight: bold;
|
2355
|
-
overflow: hidden;
|
2356
|
-
text-overflow: ellipsis;
|
2357
2326
|
}
|
2358
2327
|
|
2359
|
-
.monaco-
|
2360
|
-
|
2361
|
-
|
2362
|
-
|
2363
|
-
|
2364
|
-
|
2365
|
-
text-overflow: ellipsis;
|
2328
|
+
.monaco-progress-container.infinite .progress-bit {
|
2329
|
+
animation-name: progress;
|
2330
|
+
animation-duration: 4s;
|
2331
|
+
animation-iteration-count: infinite;
|
2332
|
+
transform: translate3d(0px, 0px, 0px);
|
2333
|
+
animation-timing-function: linear;
|
2366
2334
|
}
|
2367
2335
|
|
2368
|
-
.monaco-
|
2369
|
-
|
2370
|
-
|
2371
|
-
|
2372
|
-
|
2373
|
-
|
2336
|
+
.monaco-progress-container.infinite.infinite-long-running .progress-bit {
|
2337
|
+
/*
|
2338
|
+
The more smooth `linear` timing function can cause
|
2339
|
+
higher GPU consumption as indicated in
|
2340
|
+
https://github.com/microsoft/vscode/issues/97900 &
|
2341
|
+
https://github.com/microsoft/vscode/issues/138396
|
2342
|
+
*/
|
2343
|
+
animation-timing-function: steps(100);
|
2374
2344
|
}
|
2375
2345
|
|
2376
|
-
|
2377
|
-
|
2378
|
-
|
2379
|
-
|
2346
|
+
/**
|
2347
|
+
* The progress bit has a width: 2% (1/50) of the parent container. The animation moves it from 0% to 100% of
|
2348
|
+
* that container. Since translateX is relative to the progress bit size, we have to multiple it with
|
2349
|
+
* its relative size to the parent container:
|
2350
|
+
* parent width: 5000%
|
2351
|
+
* bit width: 100%
|
2352
|
+
* translateX should be as follow:
|
2353
|
+
* 50%: 5000% * 50% - 50% (set to center) = 2450%
|
2354
|
+
* 100%: 5000% * 100% - 100% (do not overflow) = 4900%
|
2355
|
+
*/
|
2356
|
+
@keyframes progress { from { transform: translateX(0%) scaleX(1) } 50% { transform: translateX(2500%) scaleX(3) } to { transform: translateX(4900%) scaleX(1) } }
|
2380
2357
|
|
2381
2358
|
/*---------------------------------------------------------------------------------------------
|
2382
2359
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
@@ -2562,174 +2539,149 @@
|
|
2562
2539
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2563
2540
|
*--------------------------------------------------------------------------------------------*/
|
2564
2541
|
|
2565
|
-
|
2566
|
-
|
2567
|
-
|
2568
|
-
align-items: center;
|
2569
|
-
position: relative;
|
2542
|
+
:root {
|
2543
|
+
--vscode-sash-size: 4px;
|
2544
|
+
--vscode-sash-hover-size: 4px;
|
2570
2545
|
}
|
2571
2546
|
|
2572
|
-
.monaco-
|
2573
|
-
cursor: default;
|
2574
|
-
}
|
2575
|
-
.monaco-tl-indent {
|
2576
|
-
height: 100%;
|
2547
|
+
.monaco-sash {
|
2577
2548
|
position: absolute;
|
2578
|
-
|
2579
|
-
|
2580
|
-
pointer-events: none;
|
2581
|
-
}
|
2582
|
-
|
2583
|
-
.hide-arrows .monaco-tl-indent {
|
2584
|
-
left: 12px;
|
2549
|
+
z-index: 35;
|
2550
|
+
touch-action: none;
|
2585
2551
|
}
|
2586
2552
|
|
2587
|
-
.monaco-
|
2588
|
-
|
2589
|
-
box-sizing: border-box;
|
2590
|
-
height: 100%;
|
2591
|
-
border-left: 1px solid transparent;
|
2553
|
+
.monaco-sash.disabled {
|
2554
|
+
pointer-events: none;
|
2592
2555
|
}
|
2593
2556
|
|
2594
|
-
.monaco-
|
2595
|
-
|
2557
|
+
.monaco-sash.mac.vertical {
|
2558
|
+
cursor: col-resize;
|
2596
2559
|
}
|
2597
2560
|
|
2598
|
-
.monaco-
|
2599
|
-
|
2600
|
-
height: 100%;
|
2561
|
+
.monaco-sash.vertical.minimum {
|
2562
|
+
cursor: e-resize;
|
2601
2563
|
}
|
2602
2564
|
|
2603
|
-
.monaco-
|
2604
|
-
|
2605
|
-
text-align: right;
|
2606
|
-
padding-right: 6px;
|
2607
|
-
flex-shrink: 0;
|
2608
|
-
width: 16px;
|
2609
|
-
display: flex !important;
|
2610
|
-
align-items: center;
|
2611
|
-
justify-content: center;
|
2612
|
-
transform: translateX(3px);
|
2565
|
+
.monaco-sash.vertical.maximum {
|
2566
|
+
cursor: w-resize;
|
2613
2567
|
}
|
2614
2568
|
|
2615
|
-
.monaco-
|
2616
|
-
|
2617
|
-
overflow: hidden;
|
2569
|
+
.monaco-sash.mac.horizontal {
|
2570
|
+
cursor: row-resize;
|
2618
2571
|
}
|
2619
2572
|
|
2620
|
-
.monaco-
|
2621
|
-
|
2573
|
+
.monaco-sash.horizontal.minimum {
|
2574
|
+
cursor: s-resize;
|
2622
2575
|
}
|
2623
2576
|
|
2624
|
-
.monaco-
|
2625
|
-
|
2577
|
+
.monaco-sash.horizontal.maximum {
|
2578
|
+
cursor: n-resize;
|
2626
2579
|
}
|
2627
2580
|
|
2628
|
-
.monaco-
|
2629
|
-
|
2630
|
-
|
2581
|
+
.monaco-sash.disabled {
|
2582
|
+
cursor: default !important;
|
2583
|
+
pointer-events: none !important;
|
2631
2584
|
}
|
2632
2585
|
|
2633
|
-
.monaco-
|
2634
|
-
|
2586
|
+
.monaco-sash.vertical {
|
2587
|
+
cursor: ew-resize;
|
2635
2588
|
top: 0;
|
2636
|
-
|
2637
|
-
|
2638
|
-
max-width: 200px;
|
2639
|
-
z-index: 100;
|
2640
|
-
margin: 0 6px;
|
2641
|
-
border: 1px solid var(--vscode-widget-border);
|
2642
|
-
border-bottom-left-radius: 4px;
|
2643
|
-
border-bottom-right-radius: 4px;
|
2589
|
+
width: var(--vscode-sash-size);
|
2590
|
+
height: 100%;
|
2644
2591
|
}
|
2645
2592
|
|
2646
|
-
.monaco-
|
2647
|
-
|
2593
|
+
.monaco-sash.horizontal {
|
2594
|
+
cursor: ns-resize;
|
2595
|
+
left: 0;
|
2596
|
+
width: 100%;
|
2597
|
+
height: var(--vscode-sash-size);
|
2648
2598
|
}
|
2649
2599
|
|
2650
|
-
.monaco-
|
2651
|
-
|
2600
|
+
.monaco-sash:not(.disabled) > .orthogonal-drag-handle {
|
2601
|
+
content: " ";
|
2602
|
+
height: calc(var(--vscode-sash-size) * 2);
|
2603
|
+
width: calc(var(--vscode-sash-size) * 2);
|
2604
|
+
z-index: 100;
|
2605
|
+
display: block;
|
2606
|
+
cursor: all-scroll;
|
2607
|
+
position: absolute;
|
2652
2608
|
}
|
2653
2609
|
|
2654
|
-
.monaco-
|
2655
|
-
|
2656
|
-
|
2657
|
-
|
2658
|
-
cursor:
|
2659
|
-
margin-right: 2px;
|
2610
|
+
.monaco-sash.horizontal.orthogonal-edge-north:not(.disabled)
|
2611
|
+
> .orthogonal-drag-handle.start,
|
2612
|
+
.monaco-sash.horizontal.orthogonal-edge-south:not(.disabled)
|
2613
|
+
> .orthogonal-drag-handle.end {
|
2614
|
+
cursor: nwse-resize;
|
2660
2615
|
}
|
2661
2616
|
|
2662
|
-
.monaco-
|
2663
|
-
|
2617
|
+
.monaco-sash.horizontal.orthogonal-edge-north:not(.disabled)
|
2618
|
+
> .orthogonal-drag-handle.end,
|
2619
|
+
.monaco-sash.horizontal.orthogonal-edge-south:not(.disabled)
|
2620
|
+
> .orthogonal-drag-handle.start {
|
2621
|
+
cursor: nesw-resize;
|
2664
2622
|
}
|
2665
2623
|
|
2666
|
-
.monaco-
|
2667
|
-
|
2624
|
+
.monaco-sash.vertical > .orthogonal-drag-handle.start {
|
2625
|
+
left: calc(var(--vscode-sash-size) * -0.5);
|
2626
|
+
top: calc(var(--vscode-sash-size) * -1);
|
2668
2627
|
}
|
2669
|
-
|
2670
|
-
|
2671
|
-
|
2628
|
+
.monaco-sash.vertical > .orthogonal-drag-handle.end {
|
2629
|
+
left: calc(var(--vscode-sash-size) * -0.5);
|
2630
|
+
bottom: calc(var(--vscode-sash-size) * -1);
|
2672
2631
|
}
|
2673
|
-
|
2674
|
-
|
2675
|
-
|
2676
|
-
padding: 2px 4px;
|
2632
|
+
.monaco-sash.horizontal > .orthogonal-drag-handle.start {
|
2633
|
+
top: calc(var(--vscode-sash-size) * -0.5);
|
2634
|
+
left: calc(var(--vscode-sash-size) * -1);
|
2677
2635
|
}
|
2678
|
-
|
2679
|
-
|
2680
|
-
|
2636
|
+
.monaco-sash.horizontal > .orthogonal-drag-handle.end {
|
2637
|
+
top: calc(var(--vscode-sash-size) * -0.5);
|
2638
|
+
right: calc(var(--vscode-sash-size) * -1);
|
2681
2639
|
}
|
2682
2640
|
|
2683
|
-
.monaco-
|
2684
|
-
|
2641
|
+
.monaco-sash:before {
|
2642
|
+
content: '';
|
2643
|
+
pointer-events: none;
|
2644
|
+
position: absolute;
|
2645
|
+
width: 100%;
|
2646
|
+
height: 100%;
|
2647
|
+
background: transparent;
|
2685
2648
|
}
|
2686
2649
|
|
2687
|
-
.monaco-
|
2688
|
-
|
2650
|
+
.monaco-workbench:not(.reduce-motion) .monaco-sash:before {
|
2651
|
+
transition: background-color 0.1s ease-out;
|
2689
2652
|
}
|
2690
2653
|
|
2691
|
-
.monaco-
|
2692
|
-
|
2693
|
-
|
2694
|
-
left: 0;
|
2695
|
-
width: 100%;
|
2696
|
-
height: 0;
|
2697
|
-
z-index: 13; /* Settings editor uses z-index: 12 */
|
2698
|
-
|
2699
|
-
/* Backup color in case the tree does not provide the background color */
|
2700
|
-
background-color: var(--vscode-sideBar-background);
|
2654
|
+
.monaco-sash.hover:before,
|
2655
|
+
.monaco-sash.active:before {
|
2656
|
+
background: var(--vscode-sash-hoverBorder);
|
2701
2657
|
}
|
2702
2658
|
|
2703
|
-
.monaco-
|
2704
|
-
|
2705
|
-
|
2706
|
-
|
2707
|
-
overflow: hidden;
|
2659
|
+
.monaco-sash.vertical:before {
|
2660
|
+
width: var(--vscode-sash-hover-size);
|
2661
|
+
left: calc(50% - (var(--vscode-sash-hover-size) / 2));
|
2662
|
+
}
|
2708
2663
|
|
2709
|
-
|
2710
|
-
|
2664
|
+
.monaco-sash.horizontal:before {
|
2665
|
+
height: var(--vscode-sash-hover-size);
|
2666
|
+
top: calc(50% - (var(--vscode-sash-hover-size) / 2));
|
2711
2667
|
}
|
2712
2668
|
|
2713
|
-
.
|
2714
|
-
|
2715
|
-
cursor: pointer;
|
2669
|
+
.pointer-events-disabled {
|
2670
|
+
pointer-events: none !important;
|
2716
2671
|
}
|
2717
2672
|
|
2718
|
-
|
2719
|
-
|
2720
|
-
|
2673
|
+
/** Debug **/
|
2674
|
+
|
2675
|
+
.monaco-sash.debug {
|
2676
|
+
background: cyan;
|
2721
2677
|
}
|
2722
2678
|
|
2723
|
-
.monaco-
|
2724
|
-
|
2725
|
-
bottom: -3px;
|
2726
|
-
left: 0px;
|
2727
|
-
height: 0px; /* heigt is 3px and only set when there is a treeStickyScrollShadow color */
|
2728
|
-
width: 100%;
|
2679
|
+
.monaco-sash.debug.disabled {
|
2680
|
+
background: rgba(0, 255, 255, 0.2);
|
2729
2681
|
}
|
2730
2682
|
|
2731
|
-
.monaco-
|
2732
|
-
|
2683
|
+
.monaco-sash.debug:not(.disabled) > .orthogonal-drag-handle {
|
2684
|
+
background: red;
|
2733
2685
|
}
|
2734
2686
|
|
2735
2687
|
/*---------------------------------------------------------------------------------------------
|
@@ -2737,112 +2689,128 @@
|
|
2737
2689
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2738
2690
|
*--------------------------------------------------------------------------------------------*/
|
2739
2691
|
|
2740
|
-
|
2741
|
-
|
2742
|
-
|
2743
|
-
|
2744
|
-
overflow: hidden;
|
2745
|
-
text-overflow: ellipsis;
|
2692
|
+
.monaco-split-view2 {
|
2693
|
+
position: relative;
|
2694
|
+
width: 100%;
|
2695
|
+
height: 100%;
|
2746
2696
|
}
|
2747
2697
|
|
2748
|
-
.monaco-
|
2698
|
+
.monaco-split-view2 > .sash-container {
|
2699
|
+
position: absolute;
|
2700
|
+
width: 100%;
|
2701
|
+
height: 100%;
|
2702
|
+
pointer-events: none;
|
2703
|
+
}
|
2749
2704
|
|
2750
|
-
|
2751
|
-
|
2752
|
-
|
2753
|
-
background-repeat: no-repeat;
|
2754
|
-
padding-right: 6px;
|
2755
|
-
width: 16px;
|
2756
|
-
height: 22px;
|
2757
|
-
line-height: inherit !important;
|
2758
|
-
display: inline-block;
|
2705
|
+
.monaco-split-view2 > .sash-container > .monaco-sash {
|
2706
|
+
pointer-events: initial;
|
2707
|
+
}
|
2759
2708
|
|
2760
|
-
|
2761
|
-
|
2762
|
-
|
2763
|
-
|
2709
|
+
.monaco-split-view2 > .monaco-scrollable-element {
|
2710
|
+
width: 100%;
|
2711
|
+
height: 100%;
|
2712
|
+
}
|
2764
2713
|
|
2765
|
-
|
2714
|
+
.monaco-split-view2 > .monaco-scrollable-element > .split-view-container {
|
2715
|
+
width: 100%;
|
2716
|
+
height: 100%;
|
2717
|
+
white-space: nowrap;
|
2718
|
+
position: relative;
|
2766
2719
|
}
|
2767
2720
|
|
2768
|
-
.monaco-
|
2769
|
-
|
2721
|
+
.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view {
|
2722
|
+
white-space: initial;
|
2723
|
+
position: absolute;
|
2770
2724
|
}
|
2771
|
-
|
2772
|
-
|
2773
|
-
|
2774
|
-
text-overflow: ellipsis;
|
2775
|
-
flex: 1;
|
2725
|
+
|
2726
|
+
.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view:not(.visible) {
|
2727
|
+
display: none;
|
2776
2728
|
}
|
2777
2729
|
|
2778
|
-
.monaco-
|
2779
|
-
|
2780
|
-
white-space: pre; /* enable to show labels that include multiple whitespaces */
|
2730
|
+
.monaco-split-view2.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view {
|
2731
|
+
width: 100%;
|
2781
2732
|
}
|
2782
2733
|
|
2783
|
-
.monaco-
|
2784
|
-
|
2785
|
-
opacity: 0.5;
|
2734
|
+
.monaco-split-view2.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view {
|
2735
|
+
height: 100%;
|
2786
2736
|
}
|
2787
2737
|
|
2788
|
-
.monaco-
|
2789
|
-
|
2790
|
-
|
2738
|
+
.monaco-split-view2.separator-border > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
|
2739
|
+
content: ' ';
|
2740
|
+
position: absolute;
|
2741
|
+
top: 0;
|
2742
|
+
left: 0;
|
2743
|
+
z-index: 5;
|
2744
|
+
pointer-events: none;
|
2745
|
+
background-color: var(--separator-border);
|
2791
2746
|
}
|
2792
2747
|
|
2793
|
-
.monaco-
|
2794
|
-
|
2795
|
-
|
2796
|
-
font-size: 0.9em;
|
2797
|
-
white-space: pre; /* enable to show labels that include multiple whitespaces */
|
2748
|
+
.monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
|
2749
|
+
height: 100%;
|
2750
|
+
width: 1px;
|
2798
2751
|
}
|
2799
2752
|
|
2800
|
-
.monaco-
|
2801
|
-
|
2753
|
+
.monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child)::before {
|
2754
|
+
height: 1px;
|
2755
|
+
width: 100%;
|
2802
2756
|
}
|
2803
2757
|
|
2804
|
-
|
2805
|
-
|
2758
|
+
/*---------------------------------------------------------------------------------------------
|
2759
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
2760
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2761
|
+
*--------------------------------------------------------------------------------------------*/
|
2762
|
+
|
2763
|
+
.monaco-table {
|
2764
|
+
display: flex;
|
2765
|
+
flex-direction: column;
|
2766
|
+
position: relative;
|
2767
|
+
height: 100%;
|
2768
|
+
width: 100%;
|
2769
|
+
white-space: nowrap;
|
2770
|
+
overflow: hidden;
|
2806
2771
|
}
|
2807
2772
|
|
2808
|
-
.monaco-
|
2809
|
-
|
2810
|
-
font-style: italic;
|
2773
|
+
.monaco-table > .monaco-split-view2 {
|
2774
|
+
border-bottom: 1px solid transparent;
|
2811
2775
|
}
|
2812
2776
|
|
2813
|
-
.monaco-
|
2814
|
-
|
2815
|
-
opacity: 0.66;
|
2777
|
+
.monaco-table > .monaco-list {
|
2778
|
+
flex: 1;
|
2816
2779
|
}
|
2817
2780
|
|
2818
|
-
|
2819
|
-
|
2820
|
-
|
2781
|
+
.monaco-table-tr {
|
2782
|
+
display: flex;
|
2783
|
+
height: 100%;
|
2821
2784
|
}
|
2822
2785
|
|
2823
|
-
.monaco-
|
2824
|
-
|
2825
|
-
|
2786
|
+
.monaco-table-th {
|
2787
|
+
width: 100%;
|
2788
|
+
height: 100%;
|
2789
|
+
font-weight: bold;
|
2790
|
+
overflow: hidden;
|
2791
|
+
text-overflow: ellipsis;
|
2826
2792
|
}
|
2827
2793
|
|
2828
|
-
.monaco-
|
2829
|
-
|
2830
|
-
|
2831
|
-
|
2832
|
-
|
2833
|
-
|
2794
|
+
.monaco-table-th,
|
2795
|
+
.monaco-table-td {
|
2796
|
+
box-sizing: border-box;
|
2797
|
+
flex-shrink: 0;
|
2798
|
+
overflow: hidden;
|
2799
|
+
white-space: nowrap;
|
2800
|
+
text-overflow: ellipsis;
|
2834
2801
|
}
|
2835
2802
|
|
2836
|
-
|
2837
|
-
|
2838
|
-
|
2839
|
-
|
2840
|
-
|
2803
|
+
.monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
|
2804
|
+
content: "";
|
2805
|
+
position: absolute;
|
2806
|
+
left: calc(var(--vscode-sash-size) / 2);
|
2807
|
+
width: 0;
|
2808
|
+
border-left: 1px solid transparent;
|
2841
2809
|
}
|
2842
2810
|
|
2843
|
-
.monaco-
|
2844
|
-
.monaco-
|
2845
|
-
|
2811
|
+
.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2,
|
2812
|
+
.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
|
2813
|
+
transition: border-color 0.2s ease-out;
|
2846
2814
|
}
|
2847
2815
|
|
2848
2816
|
/*---------------------------------------------------------------------------------------------
|
@@ -2850,237 +2818,295 @@
|
|
2850
2818
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2851
2819
|
*--------------------------------------------------------------------------------------------*/
|
2852
2820
|
|
2853
|
-
.monaco-
|
2821
|
+
.monaco-tl-row {
|
2854
2822
|
display: flex;
|
2823
|
+
height: 100%;
|
2855
2824
|
align-items: center;
|
2856
|
-
|
2825
|
+
position: relative;
|
2857
2826
|
}
|
2858
2827
|
|
2859
|
-
.monaco-
|
2828
|
+
.monaco-tl-row.disabled {
|
2829
|
+
cursor: default;
|
2830
|
+
}
|
2831
|
+
.monaco-tl-indent {
|
2832
|
+
height: 100%;
|
2833
|
+
position: absolute;
|
2834
|
+
top: 0;
|
2835
|
+
left: 16px;
|
2836
|
+
pointer-events: none;
|
2837
|
+
}
|
2838
|
+
|
2839
|
+
.hide-arrows .monaco-tl-indent {
|
2840
|
+
left: 12px;
|
2841
|
+
}
|
2842
|
+
|
2843
|
+
.monaco-tl-indent > .indent-guide {
|
2860
2844
|
display: inline-block;
|
2861
|
-
|
2862
|
-
|
2863
|
-
border-
|
2864
|
-
vertical-align: middle;
|
2865
|
-
font-size: 11px;
|
2866
|
-
padding: 3px 5px;
|
2867
|
-
margin: 0 2px;
|
2845
|
+
box-sizing: border-box;
|
2846
|
+
height: 100%;
|
2847
|
+
border-left: 1px solid transparent;
|
2868
2848
|
}
|
2869
2849
|
|
2870
|
-
.monaco-
|
2871
|
-
|
2850
|
+
.monaco-workbench:not(.reduce-motion) .monaco-tl-indent > .indent-guide {
|
2851
|
+
transition: border-color 0.1s linear;
|
2872
2852
|
}
|
2873
2853
|
|
2874
|
-
.monaco-
|
2875
|
-
|
2854
|
+
.monaco-tl-twistie,
|
2855
|
+
.monaco-tl-contents {
|
2856
|
+
height: 100%;
|
2876
2857
|
}
|
2877
2858
|
|
2878
|
-
.monaco-
|
2879
|
-
|
2859
|
+
.monaco-tl-twistie {
|
2860
|
+
font-size: 10px;
|
2861
|
+
text-align: right;
|
2862
|
+
padding-right: 6px;
|
2863
|
+
flex-shrink: 0;
|
2864
|
+
width: 16px;
|
2865
|
+
display: flex !important;
|
2866
|
+
align-items: center;
|
2867
|
+
justify-content: center;
|
2868
|
+
transform: translateX(3px);
|
2880
2869
|
}
|
2881
2870
|
|
2882
|
-
.monaco-
|
2883
|
-
|
2871
|
+
.monaco-tl-contents {
|
2872
|
+
flex: 1;
|
2873
|
+
overflow: hidden;
|
2884
2874
|
}
|
2885
2875
|
|
2886
|
-
|
2887
|
-
|
2888
|
-
|
2889
|
-
*--------------------------------------------------------------------------------------------*/
|
2876
|
+
.monaco-tl-twistie::before {
|
2877
|
+
border-radius: 20px;
|
2878
|
+
}
|
2890
2879
|
|
2891
|
-
.monaco-
|
2892
|
-
|
2880
|
+
.monaco-tl-twistie.collapsed::before {
|
2881
|
+
transform: rotate(-90deg);
|
2882
|
+
}
|
2883
|
+
|
2884
|
+
.monaco-tl-twistie.codicon-tree-item-loading::before {
|
2885
|
+
/* Use steps to throttle FPS to reduce CPU usage */
|
2886
|
+
animation: codicon-spin 1.25s steps(30) infinite;
|
2887
|
+
}
|
2888
|
+
|
2889
|
+
.monaco-tree-type-filter {
|
2890
|
+
position: absolute;
|
2891
|
+
top: 0;
|
2893
2892
|
display: flex;
|
2894
|
-
|
2895
|
-
|
2896
|
-
|
2897
|
-
|
2898
|
-
|
2899
|
-
|
2893
|
+
padding: 3px;
|
2894
|
+
max-width: 200px;
|
2895
|
+
z-index: 100;
|
2896
|
+
margin: 0 6px;
|
2897
|
+
border: 1px solid var(--vscode-widget-border);
|
2898
|
+
border-bottom-left-radius: 4px;
|
2899
|
+
border-bottom-right-radius: 4px;
|
2900
|
+
}
|
2901
|
+
|
2902
|
+
.monaco-workbench:not(.reduce-motion) .monaco-tree-type-filter {
|
2903
|
+
transition: top 0.3s;
|
2904
|
+
}
|
2905
|
+
|
2906
|
+
.monaco-tree-type-filter.disabled {
|
2907
|
+
top: -40px !important;
|
2908
|
+
}
|
2909
|
+
|
2910
|
+
.monaco-tree-type-filter-grab {
|
2911
|
+
display: flex !important;
|
2900
2912
|
align-items: center;
|
2901
|
-
|
2902
|
-
|
2913
|
+
justify-content: center;
|
2914
|
+
cursor: grab;
|
2915
|
+
margin-right: 2px;
|
2903
2916
|
}
|
2904
2917
|
|
2905
|
-
.monaco-
|
2906
|
-
|
2918
|
+
.monaco-tree-type-filter-grab.grabbing {
|
2919
|
+
cursor: grabbing;
|
2907
2920
|
}
|
2908
2921
|
|
2909
|
-
.monaco-
|
2910
|
-
|
2922
|
+
.monaco-tree-type-filter-input {
|
2923
|
+
flex: 1;
|
2911
2924
|
}
|
2912
2925
|
|
2913
|
-
.monaco-
|
2914
|
-
|
2915
|
-
opacity: 0.4 !important;
|
2916
|
-
cursor: default;
|
2926
|
+
.monaco-tree-type-filter-input .monaco-inputbox {
|
2927
|
+
height: 23px;
|
2917
2928
|
}
|
2918
2929
|
|
2919
|
-
.monaco-
|
2920
|
-
|
2921
|
-
|
2930
|
+
.monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .input,
|
2931
|
+
.monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .mirror {
|
2932
|
+
padding: 2px 4px;
|
2922
2933
|
}
|
2923
2934
|
|
2924
|
-
.monaco-
|
2925
|
-
|
2926
|
-
flex-wrap: wrap;
|
2927
|
-
padding: 0 4px;
|
2928
|
-
overflow: hidden;
|
2929
|
-
height: 28px;
|
2935
|
+
.monaco-tree-type-filter-input .monaco-findInput > .controls {
|
2936
|
+
top: 2px;
|
2930
2937
|
}
|
2931
2938
|
|
2932
|
-
.monaco-
|
2933
|
-
|
2939
|
+
.monaco-tree-type-filter-actionbar {
|
2940
|
+
margin-left: 4px;
|
2934
2941
|
}
|
2935
2942
|
|
2936
|
-
.monaco-
|
2937
|
-
|
2938
|
-
width: 0;
|
2939
|
-
overflow: hidden;
|
2943
|
+
.monaco-tree-type-filter-actionbar .monaco-action-bar .action-label {
|
2944
|
+
padding: 2px;
|
2940
2945
|
}
|
2941
2946
|
|
2942
|
-
.monaco-
|
2943
|
-
|
2944
|
-
|
2945
|
-
|
2946
|
-
|
2947
|
-
|
2948
|
-
|
2949
|
-
|
2947
|
+
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container{
|
2948
|
+
position: absolute;
|
2949
|
+
top: 0;
|
2950
|
+
left: 0;
|
2951
|
+
width: 100%;
|
2952
|
+
height: 0;
|
2953
|
+
z-index: 13; /* Settings editor uses z-index: 12 */
|
2954
|
+
|
2955
|
+
/* Backup color in case the tree does not provide the background color */
|
2956
|
+
background-color: var(--vscode-sideBar-background);
|
2950
2957
|
}
|
2951
2958
|
|
2952
|
-
.monaco-
|
2953
|
-
|
2959
|
+
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row.monaco-list-row{
|
2960
|
+
position: absolute;
|
2961
|
+
width: 100%;
|
2962
|
+
opacity: 1 !important; /* Settings editor uses opacity < 1 */
|
2963
|
+
overflow: hidden;
|
2964
|
+
|
2965
|
+
/* Backup color in case the tree does not provide the background color */
|
2966
|
+
background-color: var(--vscode-sideBar-background);
|
2967
|
+
}
|
2968
|
+
|
2969
|
+
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row:hover{
|
2970
|
+
background-color: var(--vscode-list-hoverBackground) !important;
|
2954
2971
|
cursor: pointer;
|
2955
2972
|
}
|
2956
2973
|
|
2957
|
-
.monaco-
|
2958
|
-
|
2959
|
-
|
2974
|
+
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty,
|
2975
|
+
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty .monaco-tree-sticky-container-shadow {
|
2976
|
+
display: none;
|
2977
|
+
}
|
2978
|
+
|
2979
|
+
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-container-shadow {
|
2980
|
+
position: absolute;
|
2981
|
+
bottom: -3px;
|
2982
|
+
left: 0px;
|
2983
|
+
height: 0px; /* heigt is 3px and only set when there is a treeStickyScrollShadow color */
|
2984
|
+
width: 100%;
|
2985
|
+
}
|
2986
|
+
|
2987
|
+
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container[tabindex="0"]:focus{
|
2988
|
+
outline: none;
|
2989
|
+
}
|
2990
|
+
|
2991
|
+
/*---------------------------------------------------------------------------------------------
|
2992
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
2993
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
2994
|
+
*--------------------------------------------------------------------------------------------*/
|
2995
|
+
|
2996
|
+
/* ---------- Icon label ---------- */
|
2960
2997
|
|
2961
|
-
.monaco-
|
2962
|
-
|
2998
|
+
.monaco-icon-label {
|
2999
|
+
display: flex; /* required for icons support :before rule */
|
3000
|
+
overflow: hidden;
|
3001
|
+
text-overflow: ellipsis;
|
2963
3002
|
}
|
2964
3003
|
|
2965
|
-
.monaco-
|
2966
|
-
.monaco-button-dropdown.disabled > .monaco-button.disabled:focus,
|
2967
|
-
.monaco-button-dropdown.disabled > .monaco-button-dropdown-separator {
|
2968
|
-
opacity: 0.4 !important;
|
2969
|
-
}
|
3004
|
+
.monaco-icon-label::before {
|
2970
3005
|
|
2971
|
-
|
2972
|
-
|
2973
|
-
|
3006
|
+
/* svg icons rendered as background image */
|
3007
|
+
background-size: 16px;
|
3008
|
+
background-position: left center;
|
3009
|
+
background-repeat: no-repeat;
|
3010
|
+
padding-right: 6px;
|
3011
|
+
width: 16px;
|
3012
|
+
height: 22px;
|
3013
|
+
line-height: inherit !important;
|
3014
|
+
display: inline-block;
|
2974
3015
|
|
2975
|
-
|
2976
|
-
|
2977
|
-
|
2978
|
-
|
3016
|
+
/* fonts icons */
|
3017
|
+
-webkit-font-smoothing: antialiased;
|
3018
|
+
-moz-osx-font-smoothing: grayscale;
|
3019
|
+
vertical-align: top;
|
2979
3020
|
|
2980
|
-
|
2981
|
-
height: 100%;
|
2982
|
-
width: 1px;
|
3021
|
+
flex-shrink: 0; /* fix for https://github.com/microsoft/vscode/issues/13787 */
|
2983
3022
|
}
|
2984
3023
|
|
2985
|
-
.monaco-
|
2986
|
-
|
2987
|
-
|
2988
|
-
|
3024
|
+
.monaco-icon-label-iconpath {
|
3025
|
+
width: 16px;
|
3026
|
+
height: 16px;
|
3027
|
+
padding-left: 2px;
|
3028
|
+
margin-top: 2px;
|
2989
3029
|
display: flex;
|
2990
|
-
align-items: center;
|
2991
3030
|
}
|
2992
3031
|
|
2993
|
-
.monaco-
|
2994
|
-
|
3032
|
+
.monaco-icon-label-container.disabled {
|
3033
|
+
color: var(--vscode-disabledForeground);
|
2995
3034
|
}
|
2996
|
-
|
2997
|
-
|
2998
|
-
|
2999
|
-
|
3000
|
-
|
3001
|
-
margin: 4px 5px; /* allows button focus outline to be visible */
|
3035
|
+
.monaco-icon-label > .monaco-icon-label-container {
|
3036
|
+
min-width: 0;
|
3037
|
+
overflow: hidden;
|
3038
|
+
text-overflow: ellipsis;
|
3039
|
+
flex: 1;
|
3002
3040
|
}
|
3003
3041
|
|
3004
|
-
.monaco-
|
3005
|
-
|
3006
|
-
|
3007
|
-
padding: 4px 20px;
|
3042
|
+
.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
|
3043
|
+
color: inherit;
|
3044
|
+
white-space: pre; /* enable to show labels that include multiple whitespaces */
|
3008
3045
|
}
|
3009
3046
|
|
3010
|
-
.monaco-
|
3011
|
-
|
3012
|
-
|
3013
|
-
justify-content: center;
|
3014
|
-
align-items: center;
|
3047
|
+
.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name > .label-separator {
|
3048
|
+
margin: 0 2px;
|
3049
|
+
opacity: 0.5;
|
3015
3050
|
}
|
3016
3051
|
|
3017
|
-
.monaco-
|
3018
|
-
|
3019
|
-
|
3020
|
-
color: inherit !important;
|
3052
|
+
.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-suffix-container > .label-suffix {
|
3053
|
+
opacity: .7;
|
3054
|
+
white-space: pre;
|
3021
3055
|
}
|
3022
3056
|
|
3023
|
-
|
3024
|
-
|
3025
|
-
|
3026
|
-
|
3027
|
-
|
3028
|
-
background-color: var(--vscode-button-background);
|
3057
|
+
.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
|
3058
|
+
opacity: .7;
|
3059
|
+
margin-left: 0.5em;
|
3060
|
+
font-size: 0.9em;
|
3061
|
+
white-space: pre; /* enable to show labels that include multiple whitespaces */
|
3029
3062
|
}
|
3030
3063
|
|
3031
|
-
.monaco-
|
3032
|
-
|
3033
|
-
background-color: var(--vscode-button-hoverBackground);
|
3064
|
+
.monaco-icon-label.nowrap > .monaco-icon-label-container > .monaco-icon-description-container > .label-description{
|
3065
|
+
white-space: nowrap
|
3034
3066
|
}
|
3035
3067
|
|
3036
|
-
.monaco-
|
3037
|
-
|
3038
|
-
color: var(--vscode-button-secondaryForeground);
|
3039
|
-
background-color: var(--vscode-button-secondaryBackground);
|
3068
|
+
.vs .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
|
3069
|
+
opacity: .95;
|
3040
3070
|
}
|
3041
3071
|
|
3042
|
-
.monaco-
|
3043
|
-
.monaco-
|
3044
|
-
|
3072
|
+
.monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-name-container > .label-name,
|
3073
|
+
.monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
|
3074
|
+
font-style: italic;
|
3045
3075
|
}
|
3046
3076
|
|
3047
|
-
.monaco-
|
3048
|
-
|
3049
|
-
|
3050
|
-
border-bottom: 1px solid var(--vscode-button-border);
|
3077
|
+
.monaco-icon-label.deprecated {
|
3078
|
+
text-decoration: line-through;
|
3079
|
+
opacity: 0.66;
|
3051
3080
|
}
|
3052
3081
|
|
3053
|
-
|
3054
|
-
|
3082
|
+
/* make sure apply italic font style to decorations as well */
|
3083
|
+
.monaco-icon-label.italic::after {
|
3084
|
+
font-style: italic;
|
3055
3085
|
}
|
3056
3086
|
|
3057
|
-
.monaco-
|
3058
|
-
|
3087
|
+
.monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-name-container > .label-name,
|
3088
|
+
.monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
|
3089
|
+
text-decoration: line-through;
|
3059
3090
|
}
|
3060
3091
|
|
3061
|
-
|
3062
|
-
|
3063
|
-
|
3064
|
-
|
3065
|
-
|
3066
|
-
.monaco-count-badge {
|
3067
|
-
padding: 3px 6px;
|
3068
|
-
border-radius: 11px;
|
3069
|
-
font-size: 11px;
|
3070
|
-
min-width: 18px;
|
3071
|
-
min-height: 18px;
|
3072
|
-
line-height: 11px;
|
3073
|
-
font-weight: normal;
|
3092
|
+
.monaco-icon-label::after {
|
3093
|
+
opacity: 0.75;
|
3094
|
+
font-size: 90%;
|
3095
|
+
font-weight: 600;
|
3096
|
+
margin: auto 16px 0 5px; /* https://github.com/microsoft/vscode/issues/113223 */
|
3074
3097
|
text-align: center;
|
3075
|
-
display: inline-block;
|
3076
|
-
box-sizing: border-box;
|
3077
3098
|
}
|
3078
3099
|
|
3079
|
-
|
3080
|
-
|
3081
|
-
|
3082
|
-
|
3083
|
-
|
3100
|
+
/* make sure selection color wins when a label is being selected */
|
3101
|
+
.monaco-list:focus .selected .monaco-icon-label, /* list */
|
3102
|
+
.monaco-list:focus .selected .monaco-icon-label::after
|
3103
|
+
{
|
3104
|
+
color: inherit !important;
|
3105
|
+
}
|
3106
|
+
|
3107
|
+
.monaco-list-row.focused.selected .label-description,
|
3108
|
+
.monaco-list-row.selected .label-description {
|
3109
|
+
opacity: .8;
|
3084
3110
|
}
|
3085
3111
|
|
3086
3112
|
/*---------------------------------------------------------------------------------------------
|
@@ -3088,63 +3114,39 @@
|
|
3088
3114
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
3089
3115
|
*--------------------------------------------------------------------------------------------*/
|
3090
3116
|
|
3091
|
-
.monaco-
|
3092
|
-
|
3093
|
-
|
3094
|
-
|
3095
|
-
}
|
3096
|
-
|
3097
|
-
.monaco-progress-container .progress-bit {
|
3098
|
-
width: 2%;
|
3099
|
-
height: 2px;
|
3100
|
-
position: absolute;
|
3101
|
-
left: 0;
|
3102
|
-
display: none;
|
3117
|
+
.monaco-keybinding {
|
3118
|
+
display: flex;
|
3119
|
+
align-items: center;
|
3120
|
+
line-height: 10px;
|
3103
3121
|
}
|
3104
3122
|
|
3105
|
-
.monaco-
|
3106
|
-
display:
|
3123
|
+
.monaco-keybinding > .monaco-keybinding-key {
|
3124
|
+
display: inline-block;
|
3125
|
+
border-style: solid;
|
3126
|
+
border-width: 1px;
|
3127
|
+
border-radius: 3px;
|
3128
|
+
vertical-align: middle;
|
3129
|
+
font-size: 11px;
|
3130
|
+
padding: 3px 5px;
|
3131
|
+
margin: 0 2px;
|
3107
3132
|
}
|
3108
3133
|
|
3109
|
-
.monaco-
|
3110
|
-
left: 0;
|
3111
|
-
transition: width 100ms linear;
|
3134
|
+
.monaco-keybinding > .monaco-keybinding-key:first-child {
|
3135
|
+
margin-left: 0;
|
3112
3136
|
}
|
3113
3137
|
|
3114
|
-
.monaco-
|
3115
|
-
|
3138
|
+
.monaco-keybinding > .monaco-keybinding-key:last-child {
|
3139
|
+
margin-right: 0;
|
3116
3140
|
}
|
3117
3141
|
|
3118
|
-
.monaco-
|
3119
|
-
|
3120
|
-
animation-duration: 4s;
|
3121
|
-
animation-iteration-count: infinite;
|
3122
|
-
transform: translate3d(0px, 0px, 0px);
|
3123
|
-
animation-timing-function: linear;
|
3142
|
+
.monaco-keybinding > .monaco-keybinding-key-separator {
|
3143
|
+
display: inline-block;
|
3124
3144
|
}
|
3125
3145
|
|
3126
|
-
.monaco-
|
3127
|
-
|
3128
|
-
The more smooth `linear` timing function can cause
|
3129
|
-
higher GPU consumption as indicated in
|
3130
|
-
https://github.com/microsoft/vscode/issues/97900 &
|
3131
|
-
https://github.com/microsoft/vscode/issues/138396
|
3132
|
-
*/
|
3133
|
-
animation-timing-function: steps(100);
|
3146
|
+
.monaco-keybinding > .monaco-keybinding-key-chord-separator {
|
3147
|
+
width: 6px;
|
3134
3148
|
}
|
3135
3149
|
|
3136
|
-
/**
|
3137
|
-
* The progress bit has a width: 2% (1/50) of the parent container. The animation moves it from 0% to 100% of
|
3138
|
-
* that container. Since translateX is relative to the progress bit size, we have to multiple it with
|
3139
|
-
* its relative size to the parent container:
|
3140
|
-
* parent width: 5000%
|
3141
|
-
* bit width: 100%
|
3142
|
-
* translateX should be as follow:
|
3143
|
-
* 50%: 5000% * 50% - 50% (set to center) = 2450%
|
3144
|
-
* 100%: 5000% * 100% - 100% (do not overflow) = 4900%
|
3145
|
-
*/
|
3146
|
-
@keyframes progress { from { transform: translateX(0%) scaleX(1) } 50% { transform: translateX(2500%) scaleX(3) } to { transform: translateX(4900%) scaleX(1) } }
|
3147
|
-
|
3148
3150
|
/*---------------------------------------------------------------------------------------------
|
3149
3151
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3150
3152
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
@@ -3475,6 +3477,10 @@
|
|
3475
3477
|
flex-shrink: 0;
|
3476
3478
|
flex-grow: 0;
|
3477
3479
|
|
3480
|
+
& > div {
|
3481
|
+
position: absolute;
|
3482
|
+
}
|
3483
|
+
|
3478
3484
|
.gutterItem {
|
3479
3485
|
opacity: 0;
|
3480
3486
|
transition: opacity 0.7s;
|
@@ -3521,8 +3527,7 @@
|
|
3521
3527
|
.actions-container {
|
3522
3528
|
width: fit-content;
|
3523
3529
|
border-radius: 4px;
|
3524
|
-
|
3525
|
-
background: var(--vscode-editor-background);
|
3530
|
+
background: var(--vscode-editorGutter-commentRangeForeground);
|
3526
3531
|
|
3527
3532
|
.action-item {
|
3528
3533
|
&:hover {
|
@@ -3530,7 +3535,7 @@
|
|
3530
3535
|
}
|
3531
3536
|
|
3532
3537
|
.action-label {
|
3533
|
-
padding:
|
3538
|
+
padding: 1px 2px;
|
3534
3539
|
}
|
3535
3540
|
}
|
3536
3541
|
}
|
@@ -3634,8 +3639,35 @@
|
|
3634
3639
|
|
3635
3640
|
.monaco-component.multiDiffEditor {
|
3636
3641
|
background: var(--vscode-multiDiffEditor-background);
|
3642
|
+
|
3643
|
+
position: relative;
|
3644
|
+
|
3645
|
+
height: 100%;
|
3646
|
+
width: 100%;
|
3647
|
+
|
3637
3648
|
overflow-y: hidden;
|
3638
3649
|
|
3650
|
+
> div {
|
3651
|
+
position: absolute;
|
3652
|
+
top: 0px;
|
3653
|
+
left: 0px;
|
3654
|
+
|
3655
|
+
height: 100%;
|
3656
|
+
width: 100%;
|
3657
|
+
|
3658
|
+
&.placeholder {
|
3659
|
+
visibility: hidden;
|
3660
|
+
|
3661
|
+
&.visible {
|
3662
|
+
visibility: visible;
|
3663
|
+
}
|
3664
|
+
|
3665
|
+
display: grid;
|
3666
|
+
place-items: center;
|
3667
|
+
place-content: center;
|
3668
|
+
}
|
3669
|
+
}
|
3670
|
+
|
3639
3671
|
.active {
|
3640
3672
|
--vscode-multiDiffEditor-border: var(--vscode-focusBorder);
|
3641
3673
|
}
|
@@ -4766,6 +4798,12 @@
|
|
4766
4798
|
background-color: var(--vscode-editor-hoverHighlightBackground);
|
4767
4799
|
}
|
4768
4800
|
|
4801
|
+
.monaco-editor .monaco-hover-content {
|
4802
|
+
padding-right: 2px;
|
4803
|
+
padding-bottom: 2px;
|
4804
|
+
box-sizing: border-box;
|
4805
|
+
}
|
4806
|
+
|
4769
4807
|
.monaco-editor .monaco-hover {
|
4770
4808
|
color: var(--vscode-editorHoverWidget-foreground);
|
4771
4809
|
background-color: var(--vscode-editorHoverWidget-background);
|
@@ -6271,6 +6309,7 @@
|
|
6271
6309
|
box-shadow: var(--vscode-editorStickyScroll-shadow) 0 3px 2px -2px;
|
6272
6310
|
z-index: 4;
|
6273
6311
|
background-color: var(--vscode-editorStickyScroll-background);
|
6312
|
+
right: initial !important;
|
6274
6313
|
}
|
6275
6314
|
|
6276
6315
|
.monaco-editor .sticky-widget.peek {
|