87 lines
1.6 KiB
CSS
87 lines
1.6 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.
|
|
*/
|
|
|
|
.action-list-title {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.action-list-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: auto;
|
|
position: relative;
|
|
user-select: none;
|
|
color: #555;
|
|
overflow: auto;
|
|
outline: none;
|
|
}
|
|
|
|
.action-entry {
|
|
display: flex;
|
|
flex: none;
|
|
cursor: pointer;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
line-height: 28px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.action-entry.highlighted,
|
|
.action-entry.selected {
|
|
color: white;
|
|
background-color: var(--gray);
|
|
}
|
|
|
|
.action-entry.highlighted {
|
|
color: white;
|
|
background-color: var(--light-gray);
|
|
}
|
|
|
|
.action-list-content:focus .action-entry.selected {
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.action-entry.highlighted > div,
|
|
.action-entry.selected > div {
|
|
color: white;
|
|
}
|
|
|
|
.action-title {
|
|
flex: none;
|
|
display: inline;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.action-error {
|
|
color: red;
|
|
position: relative;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.action-selector {
|
|
display: inline;
|
|
flex: none;
|
|
padding-left: 5px;
|
|
color: var(--orange);
|
|
}
|
|
|
|
.action-url {
|
|
display: inline;
|
|
flex: none;
|
|
padding-left: 5px;
|
|
color: var(--blue);
|
|
}
|