Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust the layout of Edge ACL admin interface #105

Merged
merged 1 commit into from
Oct 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions view/adminhtml/templates/system/config/dialogs.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,22 @@
</thead>
<tbody class="item-container">
<tr>
<td><input name="value" data-type="acl" required="required" class="input-text admin__control-text acl-items-field" type="text"></td>
<td>
<input name="value" data-type="acl" data-id="" required="required" class="input-text admin__control-text dictionary-items-field" type="text">
</td>
<td>
<div class="admin__field-option" title="'+acl_negated_title+'">
<input name="negated" class="admin__control-checkbox" type="checkbox" id="acl_entry_'+ aclTimestamp +'">
<label class="admin__field-label" for="acl_entry_'+ aclTimestamp +'"></label>
</div>
</td>
<td class="col-actions">
<button class="action-delete fastly-save-action save_item" title="Save" type="button"><span>Save</span></button>
<button class="action-delete remove_item" title="Delete" type="button"><span>Delete</span></button>
<button class="action-delete fastly-save-action save_item" title="Save" type="button">
<span>Save</span>
</button>
<button class="action-delete remove_item" title="Delete" type="button">
<span>Delete</span>
</button>
</td>
</tr>
</tbody>
Expand Down