Spaces:
Building
Building
File size: 1,372 Bytes
9f79da5 07d6c00 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
mat-dialog-content {
padding: 20px 24px;
min-width: 500px;
max-width: 600px;
}
.full-width {
width: 100%;
margin-bottom: 16px;
}
.test-users-section {
margin-top: 24px;
h4 {
margin-bottom: 16px;
color: rgba(0, 0, 0, 0.87);
}
.test-user-row {
display: flex;
gap: 8px;
align-items: flex-start;
margin-bottom: 8px;
.flex-1 {
flex: 1;
}
button {
margin-top: 8px;
}
}
}
mat-dialog-actions {
padding: 16px 24px;
margin: 0;
border-top: 1px solid #e0e0e0;
}
// Locale specific styles
.locale-code {
color: #666;
font-size: 0.85em;
margin-left: 8px;
font-family: 'Courier New', monospace;
}
.selected-languages {
display: flex;
flex-wrap: wrap;
gap: 4px;
align-items: center;
span {
white-space: nowrap;
}
}
mat-option {
&:hover .locale-code {
color: #333;
}
}
// Multi-select için özel stil
.mat-mdc-select-trigger {
min-height: 56px;
display: flex;
align-items: center;
padding: 0 16px;
}
// Loading spinner in select
mat-spinner {
margin: 0 auto;
}
// Material form field density
::ng-deep {
.mat-mdc-form-field {
margin-bottom: 4px;
}
.mat-mdc-option {
.mat-icon {
margin-right: 8px;
vertical-align: middle;
}
}
} |