Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ <h4 mat-dialog-title class="mb-2">
class="me-3 mb-3 apikey__icon"
>key
</mat-icon>
<mat-form-field class="w-75" appearance="outline">
<mat-form-field class="w-75">
<mat-label>{{ 'apikey.gridHeader.NAME' | translate }}</mat-label>
<input
matInput
Expand All @@ -184,11 +184,13 @@ <h4 mat-dialog-title class="mb-2">
<button
matSuffix
[cdkCopyToClipboard]="apikeyInit.apikey_name"
class="d-flex justify-content-center align-items-center"
class="d-flex justify-content-center align-items-center copy-btn"
mat-stroked-button
type="button">
<i class="eos-icons">content_copy</i>
{{ 'apikey.addApikey.COPY' | translate }}
<div class="d-flex justify-content-center align-items-center">
<i class="eos-icons">content_copy</i>
{{ 'apikey.addApikey.COPY' | translate }}
</div>
</button>
</mat-form-field>
</div>
Expand All @@ -199,7 +201,7 @@ <h4 mat-dialog-title class="mb-2">
class="me-3 mb-3 apikey__icon"
>key
</mat-icon>
<mat-form-field class="w-75" appearance="outline">
<mat-form-field class="w-75">
<mat-label>{{ 'apikey.addApikey.SECRET' | translate }}</mat-label>
<input
matInput
Expand All @@ -209,11 +211,13 @@ <h4 mat-dialog-title class="mb-2">
<button
matSuffix
[cdkCopyToClipboard]="apikeyInit.apikey_secret"
class="d-flex justify-content-center align-items-center"
class="d-flex justify-content-center align-items-center copy-btn"
mat-stroked-button
type="button">
<i class="eos-icons">content_copy</i>
{{ 'apikey.addApikey.COPY' | translate }}
<div class="d-flex justify-content-center align-items-center">
<i class="eos-icons">content_copy</i>
{{ 'apikey.addApikey.COPY' | translate }}
</div>
</button>
</mat-form-field>
</div>
Expand All @@ -230,7 +234,7 @@ <h4 mat-dialog-title class="mb-2">
class="me-3 mb-3 apikey__icon"
>key
</mat-icon>
<mat-form-field class="w-75" appearance="outline">
<mat-form-field class="w-75">
<mat-label>{{ 'apikey.addApikey.TOKEN' | translate }}</mat-label>
<input
matInput
Expand All @@ -240,11 +244,12 @@ <h4 mat-dialog-title class="mb-2">
<button
matSuffix
[cdkCopyToClipboard]="bearerToken"
class="d-flex justify-content-center align-items-center"
mat-stroked-button
type="button">
<i class="eos-icons">content_copy</i>
{{ 'apikey.addApikey.COPY' | translate }}
<div class="d-flex justify-content-center align-items-center">
<i class="eos-icons">content_copy</i>
{{ 'apikey.addApikey.COPY' | translate }}
</div>
</button>
</mat-form-field>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,12 @@

.w-15 {
width: 15% !important;
}

.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control {
padding: 0 10px;
}

.type-label {
height: 26px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ <h4 mat-dialog-title class="mb-2">
}}
</h4>
<div class="d-flex align-items-center justify-content-center mb-1">
<button mat-icon-button aria-label="close">
<i class="eos-icons" (click)="onCancel()">close</i>
<button mat-icon-button aria-label="close" (click)="onCancel()">
<i class="eos-icons">close</i>
</button>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ <h4 mat-dialog-title class="mb-1">
</mat-slide-toggle>
</section>
<div class="ms-auto align-items-center mb-1">
<button mat-icon-button aria-label="close">
<i class="eos-icons" (click)="onCancel()">close</i>
<button mat-icon-button aria-label="close" (click)="onCancel()">
<i class="eos-icons">close</i>
</button>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ <h4 mat-dialog-title class="mb-1">
</mat-slide-toggle>
</section>
<div class="ms-auto align-items-center mb-1">
<button mat-icon-button aria-label="close">
<i class="eos-icons" (click)="onCancel()">close</i>
<button mat-icon-button aria-label="close" (click)="onCancel()">
<i class="eos-icons">close</i>
</button>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ <h4 mat-dialog-title class="mb-1">
}}
</h4>
<div class="d-flex align-items-center justify-content-center mb-1">
<button mat-icon-button aria-label="close">
<i class="eos-icons" (click)="onCancel()">close</i>
<button mat-icon-button aria-label="close" (click)="onCancel()">
<i class="eos-icons">close</i>
</button>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
<div class="nv-dialog">
<div class="d-flex justify-content-between align-items-center">
<h4 mat-dialog-title class="mb-2">{{ 'setting.IMPORT' | translate }}</h4>
<button class="mb-2" aria-label="Close dialog" mat-icon-button>
<i class="eos-icons" (click)="onCancel()">close</i>
<button
class="mb-2"
aria-label="Close dialog"
(click)="onCancel()"
mat-icon-button>
<i class="eos-icons">close</i>
</button>
</div>
<hr class="fancy mb-2" />
Expand Down