mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-07 16:07:44 +00:00
fix(console): minor layout issues (#6835)
Co-authored-by: Livio Spring <livio.a@gmail.com>
This commit is contained in:
parent
0a1da1f02c
commit
a2a02598d0
@ -10,6 +10,6 @@ import { AddDomainDialogComponent } from './add-domain-dialog.component';
|
|||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [AddDomainDialogComponent],
|
declarations: [AddDomainDialogComponent],
|
||||||
imports: [CommonModule, TranslateModule, MatDialogModule, MatButtonModule, InputModule, FormsModule],
|
imports: [CommonModule, TranslateModule, MatButtonModule, InputModule, MatDialogModule, FormsModule],
|
||||||
})
|
})
|
||||||
export class AddDomainDialogModule {}
|
export class AddDomainDialogModule {}
|
||||||
|
@ -15,6 +15,7 @@ import { HasRolePipeModule } from 'src/app/pipes/has-role-pipe/has-role-pipe.mod
|
|||||||
import { AddDomainDialogModule } from './add-domain-dialog/add-domain-dialog.module';
|
import { AddDomainDialogModule } from './add-domain-dialog/add-domain-dialog.module';
|
||||||
import { DomainVerificationComponent } from './domain-verification/domain-verification.component';
|
import { DomainVerificationComponent } from './domain-verification/domain-verification.component';
|
||||||
import { DomainsComponent } from './domains.component';
|
import { DomainsComponent } from './domains.component';
|
||||||
|
import { MatDialogModule } from '@angular/material/dialog';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [DomainsComponent, DomainVerificationComponent],
|
declarations: [DomainsComponent, DomainVerificationComponent],
|
||||||
@ -30,6 +31,7 @@ import { DomainsComponent } from './domains.component';
|
|||||||
MatTooltipModule,
|
MatTooltipModule,
|
||||||
CopyToClipboardModule,
|
CopyToClipboardModule,
|
||||||
InputModule,
|
InputModule,
|
||||||
|
MatDialogModule,
|
||||||
TranslateModule,
|
TranslateModule,
|
||||||
InfoSectionModule,
|
InfoSectionModule,
|
||||||
MatProgressSpinnerModule,
|
MatProgressSpinnerModule,
|
||||||
|
@ -22,6 +22,10 @@
|
|||||||
|
|
||||||
.edit-text-area {
|
.edit-text-area {
|
||||||
min-height: 80px;
|
min-height: 80px;
|
||||||
|
|
||||||
|
&.defaulttext {
|
||||||
|
color: if($is-dark-theme, #ffffff50, #00000050);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.hovering {
|
&.hovering {
|
||||||
|
@ -50,6 +50,7 @@
|
|||||||
.centerline {
|
.centerline {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
text-wrap: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
|
@ -53,7 +53,9 @@
|
|||||||
type="submit"
|
type="submit"
|
||||||
mat-stroked-button
|
mat-stroked-button
|
||||||
>
|
>
|
||||||
<i class="las la-history"></i> {{ 'ACTIONS.RESETDEFAULT' | translate }}
|
<div class="cnsl-action-button">
|
||||||
|
<i class="las la-history"></i><span>{{ 'ACTIONS.RESETDEFAULT' | translate }}</span>
|
||||||
|
</div>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="save-button"
|
class="save-button"
|
||||||
|
@ -44,6 +44,12 @@
|
|||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.centerline {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-wrap: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
.message-text-actions {
|
.message-text-actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
@ -54,13 +60,4 @@
|
|||||||
display: block;
|
display: block;
|
||||||
margin: 0 0.25rem 3rem 0.25rem;
|
margin: 0 0.25rem 3rem 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reset-button {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
i {
|
|
||||||
margin-bottom: 3px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -33,9 +33,9 @@
|
|||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
|
|
||||||
.open-in-dialog-btn {
|
.open-in-dialog-btn {
|
||||||
width: 36px;
|
display: flex;
|
||||||
height: 36px;
|
align-items: center;
|
||||||
line-height: initial;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user