Skip to content
Snippets Groups Projects
Unverified Commit d28b9a9d authored by xgui3783's avatar xgui3783 Committed by GitHub
Browse files

Merge pull request #1126 from FZJ-INM1-BDA/hotfix_orientation_button_oloring

Fix perspective orientation button colors
parents 1ffee080 44d6a2f7
No related branches found
No related tags found
No related merge requests found
# v2.6.1
## Bugfix
- Fixed perspective view orientation button colors
......@@ -40,6 +40,7 @@ pages:
- Fetching datasets: 'advanced/datasets.md'
- Display non-atlas volumes: 'advanced/otherVolumes.md'
- Release notes:
- v2.6.1: 'releases/v2.6.1.md'
- v2.6.0: 'releases/v2.6.0.md'
- v2.5.8: 'releases/v2.5.8.md'
- v2.5.7: 'releases/v2.5.7.md'
......
{
"name": "interactive-viewer",
"version": "2.6.0",
"version": "2.6.1",
"description": "HBP interactive atlas viewer. Integrating KG query, dataset previews & more. Based on humanbrainproject/nehuba & google/neuroglancer. Built with angular",
"scripts": {
"build-aot": "ng build && node ./third_party/matomo/processMatomo.js",
......
......@@ -4,8 +4,8 @@
<mat-menu #perspectiveOrientationMenu="matMenu">
<div class="d-flex align-items-center text-light">
<button mat-button color="basic" class="flex-grow-1 text-left"
<div class="d-flex align-items-center iv-custom-comp text">
<button mat-button color="basic" class="flex-grow-1 text-left font-weight-normal"
(click)="set3DViewPoint('coronal', 'first')">
Coronal view
</button>
......@@ -15,8 +15,8 @@
</button>
</div>
<div class="d-flex align-items-center text-light"> <!--mat-menu-item-->
<button mat-button color="basic" class="flex-grow-1 text-left"
<div class="d-flex align-items-center iv-custom-comp text"> <!--mat-menu-item-->
<button mat-button color="basic" class="flex-grow-1 text-left font-weight-normal"
(click)="set3DViewPoint('sagittal', 'first')">
Sagittal view
</button>
......@@ -26,8 +26,8 @@
</button>
</div>
<div class="d-flex align-items-center text-light"> <!--mat-menu-item-->
<button mat-button color="basic" class="flex-grow-1 text-left"
<div class="d-flex align-items-center iv-custom-comp text"> <!--mat-menu-item-->
<button mat-button color="basic" class="flex-grow-1 text-left font-weight-normal"
(click)="set3DViewPoint('axial', 'first')">
Axial view
</button>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment