Skip to content

Commit 5760718

Browse files
author
Tim Etchells
committed
Improve project overview page
- info-labels now have min-width instead of fixed width - now refreshes on restart success
1 parent 991ce9f commit 5760718

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

dev/res/css/project-overview.css

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#main {
2-
max-width: 600px;
2+
max-width: 700px;
33
}
44

55
#top-section, #bottom-section {
@@ -17,18 +17,14 @@
1717
margin-right: 10px;
1818
}
1919

20-
table {
21-
table-layout: fixed;
22-
}
23-
2420
tr {
2521
padding-bottom: 0.25em;
2622
}
2723

2824
.info-label {
2925
font-weight: bold;
3026
padding-right: 1em;
31-
width: 125px;
27+
min-width: 125px;
3228
}
3329

3430
input[type="checkbox"] {

dev/src/microclimate/project/Project.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ export default class Project implements ITreeItemAdaptable, vscode.QuickPickItem
250250

251251
this.setAppPort(event.ports.exposedPort);
252252
this.setDebugPort(event.ports.exposedDebugPort);
253+
this.tryRefreshProjectInfoPage();
253254

254255
success = true;
255256
}

0 commit comments

Comments
 (0)