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-02-18 02:51:57 +01:00
|
|
|
.tabbed-pane {
|
2021-01-08 01:15:34 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex: auto;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 04:45:32 +01:00
|
|
|
.tabbed-pane .toolbar {
|
|
|
|
|
background-color: var(--vscode-sideBar-background);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-17 20:19:53 +01:00
|
|
|
.tabbed-pane .tab-content {
|
2021-01-08 01:15:34 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex: auto;
|
|
|
|
|
overflow: hidden;
|
2023-09-02 05:12:05 +02:00
|
|
|
position: relative;
|
2024-01-11 00:28:33 +01:00
|
|
|
flex-direction: column;
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
2023-02-17 20:19:53 +01:00
|
|
|
.tabbed-pane-tab {
|
2023-09-02 05:12:05 +02:00
|
|
|
padding: 2px 6px 0 6px;
|
2021-01-08 01:15:34 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
user-select: none;
|
2021-10-18 05:58:06 +02:00
|
|
|
border-bottom: 2px solid transparent;
|
2021-01-08 01:15:34 +01:00
|
|
|
outline: none;
|
2021-03-11 20:22:59 +01:00
|
|
|
height: 100%;
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
2023-02-17 20:19:53 +01:00
|
|
|
.tabbed-pane-tab-label {
|
2021-01-08 01:15:34 +01:00
|
|
|
max-width: 250px;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-17 20:19:53 +01:00
|
|
|
.tabbed-pane-tab.selected {
|
2022-10-28 01:50:41 +02:00
|
|
|
background-color: var(--vscode-tab-activeBackground);
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
2023-09-02 05:12:05 +02:00
|
|
|
|
|
|
|
|
.tabbed-pane-tab-counter {
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
background: var(--vscode-menu-separatorBackground);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
min-width: 18px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabbed-pane-tab-counter.error {
|
|
|
|
|
background: var(--vscode-list-errorForeground);
|
|
|
|
|
color: var(--vscode-button-foreground);
|
|
|
|
|
}
|