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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.watch-mode-sidebar {
|
|
|
|
|
background-color: var(--vscode-sideBar-background);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-07 21:43:16 +01:00
|
|
|
.watch-mode-sidebar input[type=search] {
|
2023-03-02 00:27:23 +01:00
|
|
|
flex: auto;
|
|
|
|
|
}
|
2023-03-02 22:45:15 +01:00
|
|
|
|
|
|
|
|
.watch-mode-sidebar .toolbar-button:not([disabled]) .codicon-play {
|
2023-03-05 00:05:41 +01:00
|
|
|
color: var(--vscode-debugIcon-restartForeground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.watch-mode-sidebar .toolbar-button:not([disabled]) .codicon-debug-stop {
|
|
|
|
|
color: var(--vscode-debugIcon-stopForeground);
|
2023-03-02 22:45:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.watch-mode-list-item {
|
|
|
|
|
flex: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.watch-mode-list-item-title {
|
|
|
|
|
flex: auto;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.watch-mode-sidebar .toolbar-button {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2023-03-05 22:46:21 +01:00
|
|
|
|
2023-03-07 21:43:16 +01:00
|
|
|
.watch-mode-sidebar .section-title {
|
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;
|
|
|
|
|
margin: 5px;
|
2023-03-05 22:46:21 +01:00
|
|
|
}
|
|
|
|
|
|
2023-03-07 23:24:50 +01:00
|
|
|
.status-line {
|
2023-03-05 22:46:21 +01:00
|
|
|
flex: none;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
padding: 0 10px;
|
2023-03-07 23:24:50 +01:00
|
|
|
color: var(--vscode-statusBar-foreground);
|
|
|
|
|
background-color: var(--vscode-statusBar-background);
|
2023-03-05 22:46:21 +01:00
|
|
|
}
|
2023-03-07 05:39:52 +01:00
|
|
|
|
|
|
|
|
.list-view-entry:not(.selected):not(.highlighted) .toolbar-button {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|