This is an automated email from the ASF dual-hosted git repository. riemer pushed a commit to branch minor-layout-improvement-2 in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit 72d13bf2d3bad50ecabff538c23d9c021a90c793 Author: Dominik Riemer <[email protected]> AuthorDate: Mon Nov 24 09:37:06 2025 +0100 fix: Various layout bugs --- .../add-to-collection/add-to-collection.component.html | 2 +- ui/src/app/core/components/iconbar/iconbar.component.scss | 15 +++++++++++++++ .../data-explorer-widget-data-settings.component.html | 10 +++++++--- .../data-explorer-chart-view-toolbar.component.html | 2 +- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/ui/src/app/core-ui/static-properties/static-collection/add-to-collection/add-to-collection.component.html b/ui/src/app/core-ui/static-properties/static-collection/add-to-collection/add-to-collection.component.html index 65aa7a0491..9a796e8790 100644 --- a/ui/src/app/core-ui/static-properties/static-collection/add-to-collection/add-to-collection.component.html +++ b/ui/src/app/core-ui/static-properties/static-collection/add-to-collection/add-to-collection.component.html @@ -15,7 +15,7 @@ ~ limitations under the License. ~ --> -<div *ngIf="!showFileSelecion"> +<div *ngIf="!showFileSelecion" fxLayoutGap="10px"> <button mat-button mat-flat-button (click)="add()"> <mat-icon class="icon">add</mat-icon> <span>{{ 'Add' | translate }}</span> diff --git a/ui/src/app/core/components/iconbar/iconbar.component.scss b/ui/src/app/core/components/iconbar/iconbar.component.scss index 2938e709ab..89c3eaf4b6 100644 --- a/ui/src/app/core/components/iconbar/iconbar.component.scss +++ b/ui/src/app/core/components/iconbar/iconbar.component.scss @@ -134,6 +134,21 @@ padding: 12px 8px 14px; overflow-y: auto; overscroll-behavior: contain; + scrollbar-width: thin; + scrollbar-color: rgba(0, 0, 0, 0.3) transparent; +} + +.menubar-scroll::-webkit-scrollbar { + width: 6px; +} + +.menubar-scroll::-webkit-scrollbar-track { + background: transparent; +} + +.menubar-scroll::-webkit-scrollbar-thumb { + background: rgba(0, 0, 0, 0.35); + border-radius: 6px; } /* Ungrouped items */ diff --git a/ui/src/app/data-explorer/components/chart-view/designer-panel/data-settings/data-explorer-widget-data-settings.component.html b/ui/src/app/data-explorer/components/chart-view/designer-panel/data-settings/data-explorer-widget-data-settings.component.html index c4d2d55187..206b183efb 100644 --- a/ui/src/app/data-explorer/components/chart-view/designer-panel/data-settings/data-explorer-widget-data-settings.component.html +++ b/ui/src/app/data-explorer/components/chart-view/designer-panel/data-settings/data-explorer-widget-data-settings.component.html @@ -30,13 +30,17 @@ > <mat-expansion-panel-header class="expansion-panel-header"> <div fxFlex="100" fxLayout="row"> - <div fxFlex fxLayoutAlign="start center"> + <span + fxFlex + fxLayoutAlign="start center" + class="measure-name" + > {{ sourceConfig?.measureName || ('New Data Source' | translate) }} - </div> - <div fxFlex fxLayoutAlign="end center"> + </span> + <div fxLayoutAlign="end center"> <button mat-icon-button color="accent" diff --git a/ui/src/app/data-explorer/components/chart-view/toolbar/data-explorer-chart-view-toolbar.component.html b/ui/src/app/data-explorer/components/chart-view/toolbar/data-explorer-chart-view-toolbar.component.html index af3b0141a0..751a8e4508 100644 --- a/ui/src/app/data-explorer/components/chart-view/toolbar/data-explorer-chart-view-toolbar.component.html +++ b/ui/src/app/data-explorer/components/chart-view/toolbar/data-explorer-chart-view-toolbar.component.html @@ -74,7 +74,7 @@ <button mat-flat-button [matTooltip]="'Add to Asset' | translate" - class="edit-menu-btn" + class="mat-basic" (click)="addToAssetEmitter.emit()" data-cy="add-to-Asset-data-view-btn" >
