mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
47 lines
1.1 KiB
SCSS
47 lines
1.1 KiB
SCSS
@mixin adf-card-view-keyvaluepairsitem-theme($theme) {
|
|
$foreground: map-get($theme, foreground);
|
|
|
|
.adf-card-view {
|
|
&__key-value-pairs {
|
|
&__row {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
&__col {
|
|
width: 50%;
|
|
|
|
.mat-form-field {
|
|
width: 100%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.mat-form-field-appearance-legacy .mat-form-field-label {
|
|
color: mat-color($foreground, text, 0.4) !important;
|
|
}
|
|
}
|
|
|
|
&__add-btn-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
&__add-btn.mat-button {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
&__read-only {
|
|
padding-bottom: 20px;
|
|
|
|
.mat-table {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.mat-header-row, .mat-row {
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|