mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ACS-5645] modified the changes
This commit is contained in:
+6
-8
@@ -120,6 +120,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
.adf-metadata-properties .adf-metadata-grouped-properties-container .mat-expansion-panel {
|
||||
.mat-expansion-panel-body {
|
||||
padding: 0 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.adf-info-drawer-layout-content .adf-content-metadata-card .adf-metadata-properties .mat-expansion-panel {
|
||||
border: 1px solid var(--theme-metadata-property-panel-border-color);
|
||||
border-radius: 12px;
|
||||
@@ -135,11 +141,3 @@
|
||||
.adf-metadata-grouped-properties-container .mat-content.mat-content-hide-toggle {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.adf-metadata-grouped-properties-container {
|
||||
.mat-expansion-panel {
|
||||
.mat-expansion-panel-body {
|
||||
padding: 0 24px 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+3
-2
@@ -390,20 +390,21 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
|
||||
this.editable = !this.editable;
|
||||
this.editableChange.emit(this.editable);
|
||||
this.panel.open();
|
||||
this.editableTags = false;
|
||||
this.editableCategories = false;
|
||||
group.editable =false;
|
||||
break;
|
||||
case ButtonType.Tags:
|
||||
this.editableTags = !this.editableTags;
|
||||
this.editableTagsChange.emit(this.editableTags);
|
||||
this.isTagPanelVisible = this.editableTags;
|
||||
this.tagNameControlVisible = true;
|
||||
group.editable =false;
|
||||
break;
|
||||
case ButtonType.Categories:
|
||||
this.editableCategories = !this.editableCategories;
|
||||
this.editableCategoriesChange.emit(this.editableCategories);
|
||||
this.isCategoriesPanelVisible = this.editableCategories;
|
||||
this.categoryControlVisible = true;
|
||||
group.editable =false;
|
||||
break;
|
||||
case ButtonType.Group:
|
||||
group.editable = !group.editable;
|
||||
|
||||
Reference in New Issue
Block a user