Skip to content

Commit aae10b4

Browse files
authored
progress - set it to 2px height by default (microsoft#196569)
1 parent 21d5fd7 commit aae10b4

File tree

8 files changed

+2
-34
lines changed

8 files changed

+2
-34
lines changed

src/vs/base/browser/ui/progressbar/progressbar.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
.monaco-progress-container {
77
width: 100%;
8-
height: 5px;
8+
height: 2px;
99
overflow: hidden; /* keep progress bit in bounds */
1010
}
1111

1212
.monaco-progress-container .progress-bit {
1313
width: 2%;
14-
height: 5px;
14+
height: 2px;
1515
position: absolute;
1616
left: 0;
1717
display: none;

src/vs/platform/quickinput/browser/media/quickInput.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,6 @@
150150
position: relative;
151151
}
152152

153-
.quick-input-progress.monaco-progress-container,
154-
.quick-input-progress.monaco-progress-container .progress-bit {
155-
height: 2px;
156-
}
157-
158153
.quick-input-list {
159154
line-height: 22px;
160155
}

src/vs/workbench/browser/media/part.css

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,4 @@
9292
left: 0;
9393
top: 33px; /* at the bottom of the 35px height title container */
9494
z-index: 5; /* on top of things */
95-
height: 2px;
96-
}
97-
98-
.monaco-workbench .part > .content > .monaco-progress-container .progress-bit,
99-
.monaco-workbench .part.editor > .content .editor-group-container > .monaco-progress-container .progress-bit {
100-
height: 2px;
10195
}

src/vs/workbench/browser/parts/notifications/media/notificationsList.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,5 @@
148148
/** Notification: Progress */
149149

150150
.monaco-workbench .notifications-list-container .progress-bit {
151-
height: 2px;
152151
bottom: 0;
153152
}

src/vs/workbench/browser/parts/views/media/paneviewlet.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@
8080
left: 0;
8181
top: -2px;
8282
z-index: 5;
83-
height: 2px;
8483
}
8584

8685
.monaco-pane-view .pane:not(.merged-header) .monaco-progress-container {

src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,10 @@
6060
}
6161

6262
.monaco-workbench .simple-fr-find-part-wrapper .find-replace-progress .monaco-progress-container {
63-
height: 2px;
6463
top: 0px !important;
6564
z-index: 100 !important;
6665
}
6766

68-
.monaco-workbench .simple-fr-find-part-wrapper .find-replace-progress .monaco-progress-container .progress-bit {
69-
height: 2px;
70-
}
71-
7267
.monaco-workbench .simple-fr-find-part-wrapper .monaco-findInput {
7368
width: 224px;
7469
}

src/vs/workbench/contrib/notebook/browser/media/notebook.css

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -268,15 +268,9 @@
268268

269269
.monaco-workbench .notebookOverlay .cell .monaco-progress-container {
270270
top: -3px;
271-
272271
position: absolute;
273272
left: 0;
274273
z-index: var(--z-index-notebook-progress-bar);
275-
height: 2px;
276-
}
277-
278-
.monaco-workbench .notebookOverlay .cell .monaco-progress-container .progress-bit {
279-
height: 2px;
280274
}
281275

282276
.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list:not(.element-focused):focus:before {

src/vs/workbench/contrib/outline/browser/outlinePane.css

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@
1515
position: absolute;
1616
}
1717

18-
.monaco-workbench .outline-pane .outline-progress .monaco-progress-container {
19-
height: 2px;
20-
}
21-
22-
.monaco-workbench .outline-pane .outline-progress .monaco-progress-container .progress-bit {
23-
height: 2px;
24-
}
25-
2618
.monaco-workbench .outline-pane .outline-tree {
2719
height: 100%;
2820
}

0 commit comments

Comments
 (0)