Skip to content

Commit e94430f

Browse files
author
Noam Kfir
committed
Fix dropdown menu colors
1 parent 583a1c1 commit e94430f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/views-ui/codeAnalytics/main.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ vscode-panel-view {
112112
}
113113

114114
li {
115-
padding: 4px 8px;
115+
color: var(--button-secondary-foreground);
116+
background: var(--button-secondary-background);
116117
}
117118
}
118119

src/views-ui/codeAnalytics/main.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,10 @@ window.addEventListener("load", () =>
126126

127127
function initListItemMenus(){
128128
const menus: any = $('.list-item-menu');
129-
menus.superfish();
129+
menus.superfish({
130+
delay: 10000,
131+
cssArrows: false,
132+
});
130133
}
131134

132135
consume(UiMessage.Set.InsightsList, (event) => {
@@ -221,7 +224,7 @@ window.addEventListener("load", () =>
221224
.find('.list-item-time-info');
222225
$timeInfo
223226
.find('.list-item-time-info-message')
224-
.text('Applying the new filter. Wait a few minutes and then refresh.');
227+
.text('Applying the new time filter. Wait a few minutes and then refresh.');
225228
$timeInfo.show();
226229
publish(new UiMessage.Notify.SetInsightCustomStartTime(codeObjectId, insightType, new Date()));
227230
});

0 commit comments

Comments
 (0)