2023-03-02 00:27:23 +01:00
|
|
|
/*
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-04-20 01:51:42 +02:00
|
|
|
.ui-mode-sidebar {
|
2023-03-02 00:27:23 +01:00
|
|
|
background-color: var(--vscode-sideBar-background);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-20 01:51:42 +02:00
|
|
|
.ui-mode-sidebar input[type=search] {
|
2023-03-02 00:27:23 +01:00
|
|
|
flex: auto;
|
|
|
|
|
}
|
2023-03-02 22:45:15 +01:00
|
|
|
|
2023-04-20 01:51:42 +02:00
|
|
|
.ui-mode-sidebar .toolbar-button:not([disabled]) .codicon-play {
|
2023-03-05 00:05:41 +01:00
|
|
|
color: var(--vscode-debugIcon-restartForeground);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-20 01:51:42 +02:00
|
|
|
.ui-mode-sidebar .toolbar-button:not([disabled]) .codicon-debug-stop {
|
2023-03-05 00:05:41 +01:00
|
|
|
color: var(--vscode-debugIcon-stopForeground);
|
2023-03-02 22:45:15 +01:00
|
|
|
}
|
|
|
|
|
|
2023-04-20 01:51:42 +02:00
|
|
|
.ui-mode .section-title {
|
2023-03-14 06:19:31 +01:00
|
|
|
display: flex;
|
2023-03-19 20:04:19 +01:00
|
|
|
flex: auto;
|
2023-03-14 06:19:31 +01:00
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
2023-03-05 22:46:21 +01:00
|
|
|
font-size: 11px;
|
|
|
|
|
text-transform: uppercase;
|
2023-03-07 21:43:16 +01:00
|
|
|
font-weight: bold;
|
2023-03-14 06:19:31 +01:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 8px;
|
2023-03-19 20:04:19 +01:00
|
|
|
height: 30px;
|
2023-03-14 06:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2023-04-20 01:51:42 +02:00
|
|
|
.ui-mode-sidebar img {
|
2023-03-14 06:19:31 +01:00
|
|
|
flex: none;
|
2023-03-21 04:45:32 +01:00
|
|
|
margin-left: 6px;
|
2023-03-14 06:19:31 +01:00
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
2023-03-05 22:46:21 +01:00
|
|
|
}
|
|
|
|
|
|
2023-06-06 17:31:52 +02:00
|
|
|
.ui-mode .disconnected {
|
2023-12-18 17:32:57 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex: auto;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
background-color: var(--vscode-editor-background);
|
2023-06-06 17:31:52 +02:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2023-12-18 17:32:57 +01:00
|
|
|
left: 0;
|
2023-06-06 17:31:52 +02:00
|
|
|
z-index: 1000;
|
2023-12-18 17:32:57 +01:00
|
|
|
line-height: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.disconnected .title {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-bottom: 30px;
|
2023-06-06 17:31:52 +02:00
|
|
|
}
|
|
|
|
|
|
2023-03-07 23:24:50 +01:00
|
|
|
.status-line {
|
2023-03-19 20:04:19 +01:00
|
|
|
flex: auto;
|
|
|
|
|
white-space: nowrap;
|
2023-03-05 22:46:21 +01:00
|
|
|
line-height: 22px;
|
2023-03-19 20:04:19 +01:00
|
|
|
padding-left: 10px;
|
2023-03-10 06:45:57 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
2023-03-19 20:04:19 +01:00
|
|
|
height: 30px;
|
2023-03-10 06:45:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-line > div {
|
2023-03-19 20:04:19 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2023-03-05 22:46:21 +01:00
|
|
|
}
|
2023-03-07 05:39:52 +01:00
|
|
|
|
2023-04-20 01:51:42 +02:00
|
|
|
.ui-mode-sidebar input[type=search] {
|
2023-03-14 06:19:31 +01:00
|
|
|
flex: auto;
|
|
|
|
|
padding: 0 5px;
|
2023-03-10 21:41:00 +01:00
|
|
|
line-height: 24px;
|
2023-03-14 06:19:31 +01:00
|
|
|
outline: none;
|
|
|
|
|
margin: 0 4px;
|
|
|
|
|
border: none;
|
|
|
|
|
color: var(--vscode-input-foreground);
|
|
|
|
|
background-color: var(--vscode-input-background);
|
2023-03-10 21:41:00 +01:00
|
|
|
}
|