Skip to content

Commit aaacf4b

Browse files
Merge pull request #50 from raw-letisso/issue-1887
UI breaks for storages on some resolutions #1887
2 parents df6a02d + d0e1b99 commit aaacf4b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Diff for: src/app/app.component.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,4 +280,4 @@ a:hover {
280280
margin-bottom: 24px;
281281
}
282282
}
283-
}
283+
}

Diff for: src/app/modules/storage-management/pages/browse-storages/components/list-repositories/list-repositories.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div style="width: 100%; height: 73vh; position:relative; overflow: hidden;" fxLayout="column">
1+
<div style="width: 100%; height: 100%; position:relative; overflow: hidden;" fxLayout="column">
22
<table mat-table [dataSource]="repositoriesSource" style="width: 100%;">
33
<ng-container *ngFor="let column of repositoryColumns;">
44
<ng-container [matColumnDef]="column">

Diff for: src/app/modules/storage-management/pages/browse-storages/components/list-repositories/list-repositories.component.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.overlay {
2-
height: calc(73vh - 10rem);
2+
height: 100%;
33
width: 100%;
44
background: rgba(29, 41, 53, 0.65);
55
z-index: 99;
@@ -21,4 +21,4 @@
2121
.mat-header-cell {
2222
padding-right: 0px;
2323
}
24-
}
24+
}

Diff for: src/app/modules/storage-management/pages/browse-storages/components/list-storages/list-storages.component.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<div style="position:relative; height: 73vh; ">
1+
<div style="position:relative; height: 100%; ">
22

33
<table class="mat-table" style="width: 100%;">
44
<thead>
55
<tr class="mat-header-row">
66
<th class="mat-header-cell cdk-column-repository mat-column-repository mat-table-sticky ng-star-inserted"
7-
style="width: 75%;">
7+
style="width: 50%;">
88
Storage
99
</th>
1010
<th class="mat-header-cell cdk-column-repository mat-column-repository mat-table-sticky ng-star-inserted"
11-
style="width: 25%; text-align: right; font-size: 18px;">
11+
style="width: 50%; text-align: right; font-size: 18px;">
1212
<a (click)="toggleStorageSearch()"
1313
[class.active]="(showSearch$ | async)"
1414
style="margin-right: 10px;">

Diff for: src/app/modules/storage-management/pages/browse-storages/components/list-storages/list-storages.component.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919

2020
::ng-deep mat-list-item {
21-
height: 40px !important;
21+
height: 100% !important;
2222

2323
.list-row {
2424
.link {

0 commit comments

Comments
 (0)