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 {
|
.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: 1px solid var(--theme-metadata-property-panel-border-color);
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
@@ -135,11 +141,3 @@
|
|||||||
.adf-metadata-grouped-properties-container .mat-content.mat-content-hide-toggle {
|
.adf-metadata-grouped-properties-container .mat-content.mat-content-hide-toggle {
|
||||||
align-items: center;
|
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.editable = !this.editable;
|
||||||
this.editableChange.emit(this.editable);
|
this.editableChange.emit(this.editable);
|
||||||
this.panel.open();
|
this.panel.open();
|
||||||
this.editableTags = false;
|
group.editable =false;
|
||||||
this.editableCategories = false;
|
|
||||||
break;
|
break;
|
||||||
case ButtonType.Tags:
|
case ButtonType.Tags:
|
||||||
this.editableTags = !this.editableTags;
|
this.editableTags = !this.editableTags;
|
||||||
this.editableTagsChange.emit(this.editableTags);
|
this.editableTagsChange.emit(this.editableTags);
|
||||||
this.isTagPanelVisible = this.editableTags;
|
this.isTagPanelVisible = this.editableTags;
|
||||||
this.tagNameControlVisible = true;
|
this.tagNameControlVisible = true;
|
||||||
|
group.editable =false;
|
||||||
break;
|
break;
|
||||||
case ButtonType.Categories:
|
case ButtonType.Categories:
|
||||||
this.editableCategories = !this.editableCategories;
|
this.editableCategories = !this.editableCategories;
|
||||||
this.editableCategoriesChange.emit(this.editableCategories);
|
this.editableCategoriesChange.emit(this.editableCategories);
|
||||||
this.isCategoriesPanelVisible = this.editableCategories;
|
this.isCategoriesPanelVisible = this.editableCategories;
|
||||||
this.categoryControlVisible = true;
|
this.categoryControlVisible = true;
|
||||||
|
group.editable =false;
|
||||||
break;
|
break;
|
||||||
case ButtonType.Group:
|
case ButtonType.Group:
|
||||||
group.editable = !group.editable;
|
group.editable = !group.editable;
|
||||||
|
|||||||
Reference in New Issue
Block a user