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-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-02-17 20:19:53 +01:00
|
|
|
.tabbed-pane-tab {
|
2021-07-02 23:33:38 +02:00
|
|
|
padding: 2px 10px 0 10px;
|
2021-01-08 01:15:34 +01:00
|
|
|
margin-right: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: none;
|
|
|
|
|
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-count {
|
2021-07-02 23:33:38 +02:00
|
|
|
font-size: 10px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-self: flex-start;
|
|
|
|
|
width: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|