69 lines
1.4 KiB
CSS
69 lines
1.4 KiB
CSS
|
|
/*
|
||
|
|
Copyright (c) Microsoft Corporation.
|
||
|
|
|
||
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
|
you may not use this file except in compliance with the License.
|
||
|
|
You may obtain a copy of the License at
|
||
|
|
|
||
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
|
||
|
|
Unless required by applicable law or agreed to in writing, software
|
||
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
|
See the License for the specific language governing permissions and
|
||
|
|
limitations under the License.
|
||
|
|
*/
|
||
|
|
|
||
|
|
.empty-state {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex: auto;
|
||
|
|
flex-direction: column;
|
||
|
|
background-color: var(--vscode-editor-background);
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
z-index: 100;
|
||
|
|
line-height: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
body .empty-state {
|
||
|
|
background: rgba(255, 255, 255, 0.8);
|
||
|
|
}
|
||
|
|
|
||
|
|
body.dark-mode .empty-state {
|
||
|
|
background: rgba(0, 0, 0, 0.8);
|
||
|
|
}
|
||
|
|
|
||
|
|
.empty-state .title {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: bold;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress {
|
||
|
|
flex: none;
|
||
|
|
width: 100%;
|
||
|
|
height: 3px;
|
||
|
|
z-index: 10;
|
||
|
|
}
|
||
|
|
|
||
|
|
.inner-progress {
|
||
|
|
background-color: var(--vscode-progressBar-background);
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.workbench-loader {
|
||
|
|
contain: size;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Limit to a reasonable minimum viewport */
|
||
|
|
html, body {
|
||
|
|
min-width: 550px;
|
||
|
|
min-height: 450px;
|
||
|
|
overflow: auto;
|
||
|
|
}
|