Skip to content

Commit 6bff31c

Browse files
authored
More feedback (microsoft#187934)
* microsoft#156144 More feedback * 💄 * add telemetry
1 parent c780d0d commit 6bff31c

File tree

5 files changed

+204
-227
lines changed

5 files changed

+204
-227
lines changed

src/vs/platform/quickinput/browser/quickInput.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,6 @@ export class QuickInputController extends Disposable {
13261326
rightActionBar.domNode.classList.add('quick-input-right-action-bar');
13271327

13281328
const headerContainer = dom.append(container, $('.quick-input-header'));
1329-
const description1 = dom.append(container, $('.quick-input-description'));
13301329

13311330
const checkAll = <HTMLInputElement>dom.append(headerContainer, $('input.quick-input-check-all'));
13321331
checkAll.type = 'checkbox';
@@ -1379,6 +1378,8 @@ export class QuickInputController extends Disposable {
13791378
const widget = dom.append(container, $('.quick-input-html-widget'));
13801379
widget.tabIndex = -1;
13811380

1381+
const description1 = dom.append(container, $('.quick-input-description'));
1382+
13821383
const listId = this.idPrefix + 'list';
13831384
const list = this._register(new QuickInputList(container, listId, this.options));
13841385
inputBox.setAttribute('aria-controls', listId);
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*---------------------------------------------------------------------------------------------
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for license information.
4+
*--------------------------------------------------------------------------------------------*/
5+
6+
.profile-type-widget {
7+
display: flex;
8+
margin: 0px 6px 8px 11px;
9+
align-items: center;
10+
justify-content: space-between;
11+
font-size: 12px;
12+
}
13+
14+
.profile-type-widget>.profile-type-select-container {
15+
overflow: hidden;
16+
padding-left: 10px;
17+
flex: 1;
18+
display: flex;
19+
align-items: center;
20+
justify-content: center;
21+
}
22+
23+
.profile-type-widget>.profile-type-select-container>.monaco-select-box {
24+
cursor: pointer;
25+
line-height: 17px;
26+
padding: 2px 23px 2px 8px;
27+
border-radius: 2px;
28+
}

0 commit comments

Comments
 (0)