Skip to content

Commit cc9419a

Browse files
committed
bug fixes in json, UI copy to clipboard etc
1 parent 940f566 commit cc9419a

File tree

2 files changed

+17
-30
lines changed

2 files changed

+17
-30
lines changed

.vscodeignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ out/test/**
1010

1111
# Ignore source code
1212
src/**
13-
syntaxes/**
1413

1514
# Ignore all webview files except the build directory
1615
webview/src/**

webview/src/styles/custom-theme.css

Lines changed: 17 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,30 @@
11
.custom-table .p-datatable-table {
2-
border: 1px solid #ccc;
2+
border: 0.0625rem solid #ccc;
33
}
44

55
.custom-table .p-datatable-thead>tr>th,
66
.custom-table .p-datatable-tbody>tr>td {
7-
border: 1px solid #ccc;
7+
border: 0.0625rem solid #ccc;
88
}
99

1010
.icon-box {
1111
display: flex;
1212
align-items: center;
1313
margin-left: auto;
1414
}
15+
1516
.icon-box-toggle {
1617
display: flex;
1718
align-items: center;
18-
border: 1px solid #575757;
19-
/* padding: 10px; */
19+
border: 0.0625rem solid #575757;
2020
margin-left: auto;
2121
border-radius: 15%;
22-
/* Push the icons to the right */
2322
}
2423

25-
2624
.icon-box i {
27-
font-size: 5rem;
25+
font-size: 5.2rem;
2826
color: #b5b5b5;
29-
margin: 3px;
27+
margin: 0.1875rem;
3028
cursor: pointer;
3129
}
3230

@@ -36,15 +34,12 @@
3634
}
3735

3836
.icon-box .bordered-icon {
39-
padding: 3px;
37+
padding: 0.1875rem;
4038
}
4139

4240
.icon-box .highlighted {
4341
background-color: #3b3b3b;
44-
/* Highlight background color */
45-
border-radius: 4px;
46-
47-
/* Optional: rounded corners */
42+
border-radius: 0.25rem;
4843
}
4944

5045
.bordered-icon.highlighted i {
@@ -62,63 +57,56 @@
6257
justify-content: space-between;
6358
align-items: center;
6459
width: 100%;
65-
/* Ensure it takes full width */
6660
}
6761

6862
.status-info p {
69-
margin: 0 10px;
70-
font-size: large;
71-
/* Space between status texts */
63+
margin: 0 0.625rem;
64+
font-size: 1.1rem;
7265
}
66+
7367
.spinner-container {
7468
display: flex;
7569
justify-content: center;
7670
align-items: center;
7771
height: 100vh;
78-
/* This makes the container full height of the viewport */
7972
width: 100vw;
80-
/* This makes the container full width of the viewport */
8173
position: fixed;
82-
/* This positions the container relative to the viewport */
8374
top: 0;
8475
left: 0;
8576
}
8677

87-
8878
.p-progress-spinner-circle {
89-
/* fix for IE browsers */
9079
stroke: #d62d20;
9180
stroke-dasharray: 89, 200;
9281
}
9382

94-
9583
.error-container {
9684
display: flex;
9785
flex-direction: column;
9886
justify-content: center;
99-
gap: 10px;
87+
gap: 0.625rem;
10088
align-items: center;
10189
width: 100vw;
102-
position: fixed;
90+
position: fixed;
10391
top: 5%;
104-
left: 0;
92+
left: 0;
10593
}
10694

10795
.error-message {
10896
color: #ff4d4f;
109-
font-size: 16px;
97+
font-size: 1rem;
11098
text-align: center;
11199
}
112100

113101
.html-content-container {
114102
width: 100%;
115103
height: 100%;
116104
overflow: auto;
117-
/* Adjust as needed */
118105
}
106+
119107
.meta-icon-section {
120108
display: flex;
121109
justify-content: space-between;
122110
align-items: center;
123-
margin: 10px 0;
111+
margin: 0.625rem 0;
124112
}

0 commit comments

Comments
 (0)