adjustments to code action styling (#226999)
* adjustments to code action styling * add margin toppull/227027/head
parent
015878c11c
commit
59b2709194
|
@ -166,8 +166,8 @@ export class ActionList<T> extends Disposable {
|
|||
|
||||
private readonly _list: List<IActionListItem<T>>;
|
||||
|
||||
private readonly _actionLineHeight = 28;
|
||||
private readonly _headerLineHeight = 28;
|
||||
private readonly _actionLineHeight = 24;
|
||||
private readonly _headerLineHeight = 26;
|
||||
|
||||
private readonly _allMenuItems: readonly IActionListItem<T>[];
|
||||
|
||||
|
|
|
@ -132,8 +132,9 @@
|
|||
/* Action bar */
|
||||
|
||||
.action-widget .action-widget-action-bar {
|
||||
background-color: var(--vscode-editorHoverWidget-statusBarBackground);
|
||||
background-color: var(--vscode-editorActionList-background);
|
||||
border-top: 1px solid var(--vscode-editorHoverWidget-border);
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.action-widget .action-widget-action-bar::before {
|
||||
|
@ -143,7 +144,7 @@
|
|||
}
|
||||
|
||||
.action-widget .action-widget-action-bar .actions-container {
|
||||
padding: 0 8px;
|
||||
padding: 3px 8px 0;
|
||||
}
|
||||
|
||||
.action-widget-action-bar .action-label {
|
||||
|
|
Loading…
Reference in New Issue