Skip to content

Commit

Permalink
style(#46): 🎨 Ran prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mariewah committed Oct 30, 2025
1 parent dbc1782 commit 3d90cb3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/Filter/filter.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@

/* Optional: “active mode” outline if you toggle a class via JS */
#btnDoElevationControl.active,
#doAcceptedFiltering.active{
#doAcceptedFiltering.active {
outline: 2px solid #7ba8ff;
outline-offset: 1px;
}

/* ---------- Panels / moved containers ---------- */
/* Keep Potree’s moved subtrees neat and full-width inside our panels */
#elevation_list [id='materials.elevation_container']{
#elevation_list [id='materials.elevation_container'] {
width: 100%;
box-sizing: border-box;
padding: 6px 8px; /* small breathing room since we moved it out of Appearance */
}

/* Slight spacing inside our panel lists (under the button) */
#elevation_list,
#accepted_list_host{
#accepted_list_host {
display: block;
padding: 4px 0;
}
Expand Down Expand Up @@ -78,7 +78,7 @@
/* ---------- Accordions / headers (light touch) ---------- */
/* Don’t fight jQuery-UI’s theme. Just small spacing adjustments. */
#menu_elevation + .pv-menu-list,
#menu_accepted + .pv-menu-list{
#menu_accepted + .pv-menu-list {
padding-top: 6px;
}

Expand Down
6 changes: 3 additions & 3 deletions src/Filter/filter.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/** Two Potree sidebar sections with buttons + panel bodies:
*
*
* • Elevation → moves #materials.elevation_container into our Elevation body
* Used for controlling the elevation gradient with a slider and altering between different gradient schemes
* Used for controlling the elevation gradient with a slider and altering between different gradient schemes
* • Accepted → custom UI fully defined here (no external module)
* Used for indicating which points/surveys are accepted as the seabed and which are not
*/
*/
const byId = (id) => document.getElementById(id)

/**
Expand Down

0 comments on commit 3d90cb3

Please sign in to comment.