Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jolevesq committed Feb 5, 2025
1 parent 447e352 commit d374f0b
Show file tree
Hide file tree
Showing 22 changed files with 396 additions and 18 deletions.
10 changes: 5 additions & 5 deletions cgpv-main.js

Large diffs are not rendered by default.

Binary file modified cgpv-main.js.br
Binary file not shown.
2 changes: 1 addition & 1 deletion cgpv-main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion corePackages/geoview-aoi-panel.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion corePackages/geoview-basemap-panel.js

Large diffs are not rendered by default.

Binary file modified corePackages/geoview-basemap-panel.js.br
Binary file not shown.
4 changes: 2 additions & 2 deletions corePackages/geoview-geochart.js

Large diffs are not rendered by default.

Binary file modified corePackages/geoview-geochart.js.br
Binary file not shown.
2 changes: 1 addition & 1 deletion corePackages/geoview-geochart.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion corePackages/geoview-swiper.js

Large diffs are not rendered by default.

Binary file modified corePackages/geoview-swiper.js.br
Binary file not shown.
4 changes: 2 additions & 2 deletions corePackages/geoview-time-slider.js

Large diffs are not rendered by default.

Binary file modified corePackages/geoview-time-slider.js.br
Binary file not shown.
2 changes: 1 addition & 1 deletion corePackages/geoview-time-slider.js.map

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,49 @@ table.state {
color: green
}

.editor {
display: inline-flex;
gap: 10px;
font-family: monospace;
line-height: 21px;
background: #282a3a;
border-radius: 2px;
padding: 20px 10px;
height: 500px;
overflow-y: auto;
}

.line-numbers {
width: 20px;
text-align: right;
height: 9999px;
}

.line-numbers span {
counter-increment: linenumber;
}

.line-numbers span::before {
content: counter(linenumber);
display: block;
color: #506882;
}

textarea {
height: 99999px;
line-height: 21px;
overflow-y: hidden;
padding: 0;
border: 0;
background: #282a3a;
color: #fff;
min-width: 500px;
outline: none;
resize: none;
overflow-x: auto;
white-space: nowrap;
}

@media only screen and (max-width: 767px) {
body {
padding: 2px; /* Adjust the value as needed */
Expand Down
Loading

0 comments on commit d374f0b

Please sign in to comment.