File tree Expand file tree Collapse file tree 3 files changed +19
-12
lines changed
app/modules/advanced/components
entity-search/entity-search-edit
entity-select/entity-select-edit Expand file tree Collapse file tree 3 files changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -41,22 +41,22 @@ <h3>{{'Edit searchable list' | translate}}</h3>
4141 <!--list item-->
4242 < li class ="list-group-item "
4343 *ngFor ="let entityItem of advEntitySearchableGroupEditModel.advEntitySearchableItemModels ">
44- < div class ="d-flex justify-content-between ">
45- < div >
44+ < div class ="row ">
45+ < div class =" col-md-1 " >
4646 < a >
4747 < i class ="material-icons text-black-50 "> drag_handle </ i >
4848 </ a >
4949 </ div >
50- < div > {{entityItem.name}}</ div >
51- < div >
50+ < div class =" col-md-9 " > {{entityItem.name}}</ div >
51+ < div class =" col-md-2 " >
5252 < i class ="material-icons material-icon-red mr-3 " *ngIf ="!entityItem.name "
5353 mdbTooltip ="{{'Name is required' | translate}}! ">
5454 warning
5555 </ i >
56- < a >
56+ < a class =" pull-right " >
5757 < i class ="material-icons text-black-50 " (click) ="openModalSearchEditName(entityItem) "> edit </ i >
5858 </ a >
59- < a >
59+ < a class =" pull-right " >
6060 < i class ="material-icons text-black-50 "
6161 (click) ="deleteAdvEntitySelectableItem(entityItem.entityItemUId) "> delete </ i >
6262 </ a >
Original file line number Diff line number Diff line change @@ -41,22 +41,22 @@ <h3>{{'Edit selectable list' | translate}}</h3>
4141 <!--list item-->
4242 < li class ="list-group-item "
4343 *ngFor ="let entityItem of advEntitySelectableGroupEditModel.advEntitySelectableItemModels ">
44- < div class ="d-flex justify-content-between ">
45- < div >
44+ < div class ="row ">
45+ < div class =" col-md-1 " >
4646 < a >
4747 < i class ="material-icons text-black-50 "> drag_handle </ i >
4848 </ a >
4949 </ div >
50- < div > {{entityItem.name}}</ div >
51- < div >
50+ < div class =" col-md-9 " > {{entityItem.name}}</ div >
51+ < div class =" col-md-2 " >
5252 < i class ="material-icons material-icon-red mr-3 " *ngIf ="!entityItem.name "
5353 mdbTooltip ="{{'Name is required' | translate}}! ">
5454 warning
5555 </ i >
56- < a >
56+ < a class =" pull-right " >
5757 < i class ="material-icons text-black-50 " (click) ="openModalSelectEditName(entityItem) "> edit </ i >
5858 </ a >
59- < a >
59+ < a class =" pull-right " >
6060 < i class ="material-icons text-black-50 "
6161 (click) ="deleteAdvEntitySelectableItem(entityItem.entityItemUId) "> delete </ i >
6262 </ a >
Original file line number Diff line number Diff line change @@ -57,3 +57,10 @@ gallery {
5757.cal-week-view .cal-events-row {
5858 margin-left : 0 !important ;
5959}
60+
61+ .pull-left {
62+ float : left !important ;
63+ }
64+ .pull-right {
65+ float : right !important ;
66+ }
You can’t perform that action at this time.
0 commit comments