Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/ui/side_panel.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,5 @@
width: 1px;
background-color: #333;
background-clip: content-box;
padding-right: 2px;
padding-left: 2px;
cursor: col-resize;
}
10 changes: 8 additions & 2 deletions src/widget/accordion.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
.neuroglancer-accordion-chevron svg {
width: 20px;
height: 20px;
fill: rgb(255, 255, 255); /* Chevron color */
fill: rgba(255, 255, 255, 0.80); /* Chevron color */
}

.neuroglancer-accordion-item[data-expanded="false"]
Expand All @@ -34,11 +34,17 @@
padding: 8px 2px;
cursor: pointer;
justify-content: space-between;
align-items: center;
display: flex;
}

.neuroglancer-accordion-header-text {
color: rgba(255, 255, 255, 0.80);
}

.neuroglancer-accordion-body {
padding: 2px;
padding: 8px 2px;
overflow-x: auto;
overflow-y: auto;
padding-top: 0;
}