2021-01-08 01:15:34 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-01-28 23:25:10 +01:00
|
|
|
.toolbar-button {
|
2022-11-03 17:55:23 +01:00
|
|
|
flex: none;
|
2021-01-28 18:33:20 +01:00
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
2022-10-28 01:50:41 +02:00
|
|
|
color: var(--vscode-sideBarTitle-foreground);
|
2021-01-28 18:33:20 +01:00
|
|
|
background: transparent;
|
2022-10-28 01:50:41 +02:00
|
|
|
padding: 4px;
|
2021-01-28 18:33:20 +01:00
|
|
|
cursor: pointer;
|
2021-02-23 00:35:38 +01:00
|
|
|
display: inline-flex;
|
2021-02-18 02:28:02 +01:00
|
|
|
align-items: center;
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-05 23:24:27 +01:00
|
|
|
.toolbar-button:disabled {
|
2022-10-28 01:50:41 +02:00
|
|
|
color: var(--vscode-disabledForeground) !important;
|
2021-02-05 23:24:27 +01:00
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-28 01:50:41 +02:00
|
|
|
.toolbar-button:not(:disabled):hover {
|
|
|
|
|
background-color: var(--vscode-toolbar-hoverBackground);
|
2021-02-05 23:24:27 +01:00
|
|
|
}
|
|
|
|
|
|
2022-10-28 01:50:41 +02:00
|
|
|
.toolbar-button:not(:disabled):active {
|
|
|
|
|
background-color: var(--vscode-toolbar-activeBackground);
|
2021-02-05 23:24:27 +01:00
|
|
|
}
|
2023-02-17 20:19:53 +01:00
|
|
|
|
|
|
|
|
.toolbar-button.toggled {
|
2023-03-10 21:41:00 +01:00
|
|
|
color: var(--vscode-notificationLink-foreground);
|
2023-02-17 20:19:53 +01:00
|
|
|
}
|
2023-03-19 20:04:19 +01:00
|
|
|
|
|
|
|
|
.toolbar-button.toggled .codicon {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|