diff options
author | Lvbo163 <lv.bo163@zte.com.cn> | 2018-01-11 10:57:14 +0800 |
---|---|---|
committer | Lvbo163 <lv.bo163@zte.com.cn> | 2018-01-11 10:57:14 +0800 |
commit | c825e1c7a6fa1aa8f1c430384620ffd0addf25f8 (patch) | |
tree | 8ac8c13f7062d1907c7f82ca364a8a0d027f6efb /sdc-workflow-designer-ui/src/app/components/editable-property | |
parent | 008518dc35ded3bb6dc3e6352472b5816271f583 (diff) |
add internationalization
add i18n for internationalization
Issue-ID: SDC-901
Change-Id: I2784194b0fbf1f1b3de9dd03feb33d03ba495e15
Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/components/editable-property')
2 files changed, 3 insertions, 3 deletions
diff --git a/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.css b/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.css index 78475cfa..431bf7c0 100644 --- a/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.css +++ b/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.css @@ -10,7 +10,7 @@ * ZTE - initial API and implementation and/or initial documentation
*/
- .edit{
+.edit{
font-size: 24px;
width: 300px;
height: 30px;
diff --git a/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.html b/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.html index 8dde9f1c..6a63f69a 100644 --- a/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.html +++ b/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.html @@ -1,5 +1,5 @@ <input class="edit pull-left" [ngModel]="name" (ngModelChange)="change($event)" (click)="startEdit()" (blur)="stopEdit()" -(mouseover)="showEditComponent(true)" (mouseout)="showEditComponent(false)"> + (mouseover)="showEditComponent(true)" (mouseout)="showEditComponent(false)"> <button *ngIf="showEdit" type="button" class="btn blue1 pull-left" (click)="stopEdit();"> -<i class="fa fa-check"></i> + <i class="fa fa-check"></i> </button> |