76 lines
1.4 KiB
CSS
76 lines
1.4 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 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: auto;
|
|
position: relative;
|
|
user-select: none;
|
|
color: #555;
|
|
overflow: auto;
|
|
}
|
|
|
|
.action-entry {
|
|
display: flex;
|
|
flex: none;
|
|
cursor: pointer;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
line-height: 28px;
|
|
padding-left: 3px;
|
|
border-left: 3px solid transparent;
|
|
}
|
|
|
|
.action-entry:hover, .action-entry.selected {
|
|
color: #333;
|
|
}
|
|
|
|
.action-entry.selected {
|
|
border-left: 3px solid #666;
|
|
}
|
|
|
|
.action-entry.selected:focus {
|
|
border-color: var(--orange);
|
|
}
|
|
|
|
.action-title {
|
|
flex: none;
|
|
display: inline;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.action-error {
|
|
color: red;
|
|
top: 2px;
|
|
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);
|
|
}
|