Skip to content

Commit bf30f14

Browse files
committed
Fixed vertical orientation of content in table rows
1 parent 813eac3 commit bf30f14

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

angular/src/app/roles/roles.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h2>{{ "Roles" | localize }}</h2>
4646
<td>{{ role.name }}</td>
4747
<td>{{ role.displayName }}</td>
4848
<td>
49-
<button mat-icon-button [matMenuTriggerFor]="actionsMenu">
49+
<button class="action-button" mat-icon-button [matMenuTriggerFor]="actionsMenu">
5050
<mat-icon>menu</mat-icon>
5151
</button>
5252
<mat-menu #actionsMenu="matMenu">

angular/src/app/tenants/tenants.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h2>{{ "Tenants" | localize }}</h2>
6565
</i>
6666
</td>
6767
<td>
68-
<button mat-icon-button [matMenuTriggerFor]="actionsMenu">
68+
<button class="action-button" mat-icon-button [matMenuTriggerFor]="actionsMenu">
6969
<mat-icon>menu</mat-icon>
7070
</button>
7171
<mat-menu #actionsMenu="matMenu">

angular/src/app/users/users.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ <h2>{{ "Users" | localize }}</h2>
6767
</i>
6868
</td>
6969
<td>
70-
<button mat-icon-button [matMenuTriggerFor]="actionsMenu">
70+
<button class="action-button" mat-icon-button [matMenuTriggerFor]="actionsMenu">
7171
<mat-icon>menu</mat-icon>
7272
</button>
7373
<mat-menu #actionsMenu="matMenu">

angular/src/bsb-theme/css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4608,7 +4608,7 @@ section.content {
46084608

46094609
/* Tables ====================================== */
46104610
.table tbody tr td, .table tbody tr th {
4611-
padding: 10px;
4611+
padding: 18px 10px 0 10px;
46124612
border-top: 1px solid #eee;
46134613
border-bottom: 1px solid #eee; }
46144614

angular/src/shared/core.less

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,11 @@ topbar-languageswitch {
237237
.abp-pagination-controls-wrapper {
238238
text-align: center;
239239
}
240-
240+
241241
.header-dropdown-mat-icon-button {
242242
bottom: 10px;
243+
}
244+
245+
.action-button {
246+
top: -9px;
243247
}

0 commit comments

Comments
 (0)