60 lines
1.4 KiB
CSS
60 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.
|
|
*/
|
|
|
|
.recorder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: auto;
|
|
}
|
|
|
|
.recorder-chooser {
|
|
border: none;
|
|
background: none;
|
|
outline: none;
|
|
color: var(--vscode-sideBarTitle-foreground);
|
|
min-width: 100px;
|
|
}
|
|
|
|
.recorder .codicon {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.recorder .codicon.circle-large-filled {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.recorder .toolbar-button.toggled.circle-large-filled {
|
|
color: #a1260d;
|
|
}
|
|
|
|
body.dark-mode .recorder .toolbar-button.toggled.circle-large-filled {
|
|
color: #f48771;
|
|
}
|
|
|
|
.recorder .toolbar-button:not([disabled]) .codicon-debug-continue,
|
|
.recorder .toolbar-button:not([disabled]) .codicon-debug-step-over {
|
|
color: #01bb01;
|
|
}
|
|
|
|
.recorder .toolbar-button:not([disabled]):hover .codicon-debug-continue,
|
|
.recorder .toolbar-button:not([disabled]):hover .codicon-debug-step-over {
|
|
color: #41ca1e;
|
|
}
|
|
|
|
.recorder .selector-input {
|
|
flex: auto;
|
|
}
|