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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.action-title {
|
2021-07-02 05:46:56 +02:00
|
|
|
flex: auto;
|
|
|
|
|
display: block;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-01 22:41:47 +02:00
|
|
|
.action-duration {
|
2023-03-14 23:24:48 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex: none;
|
|
|
|
|
align-items: center;
|
2021-11-02 20:16:12 +01:00
|
|
|
margin: 0 4px;
|
2023-03-21 01:12:02 +01:00
|
|
|
color: var(--vscode-editorCodeLens-foreground);
|
2021-09-01 22:41:47 +02:00
|
|
|
}
|
|
|
|
|
|
2021-07-02 05:46:56 +02:00
|
|
|
.action-icon {
|
2021-04-06 05:27:57 +02:00
|
|
|
flex: none;
|
2021-07-02 05:46:56 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding-right: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-icons {
|
2021-10-20 23:44:32 +02:00
|
|
|
flex: none;
|
2021-07-02 05:46:56 +02:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 20px;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 1px;
|
|
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-icons:hover {
|
2023-03-11 01:22:19 +01:00
|
|
|
border-bottom: 1px solid var(--vscode-sideBarTitle-foreground);
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-11 20:22:59 +01:00
|
|
|
.action-error {
|
2023-03-11 01:22:19 +01:00
|
|
|
color: var(--vscode-errorForeground);
|
2021-01-15 05:16:02 +01:00
|
|
|
position: relative;
|
|
|
|
|
margin-right: 2px;
|
2021-06-04 06:52:29 +02:00
|
|
|
flex: none;
|
2021-01-15 05:16:02 +01:00
|
|
|
}
|
|
|
|
|
|
2021-01-08 01:15:34 +01:00
|
|
|
.action-selector {
|
|
|
|
|
display: inline;
|
2021-04-06 05:27:57 +02:00
|
|
|
flex: none;
|
2021-01-08 01:15:34 +01:00
|
|
|
padding-left: 5px;
|
2021-03-11 20:22:59 +01:00
|
|
|
color: var(--orange);
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-url {
|
|
|
|
|
display: inline;
|
2021-04-06 05:27:57 +02:00
|
|
|
flex: none;
|
2021-01-08 01:15:34 +01:00
|
|
|
padding-left: 5px;
|
2021-03-11 20:22:59 +01:00
|
|
|
color: var(--blue);
|
2021-01-08 01:15:34 +01:00
|
|
|
}
|