diff options
| author | Dixsie Wolmers <dixsiew@gmail.com> | 2019-09-06 10:36:25 -0500 |
|---|---|---|
| committer | Gunnar Mills <gmills@us.ibm.com> | 2019-09-11 02:55:13 +0000 |
| commit | 57ed98ee456703d0567661a49348033ca0c29ab2 (patch) | |
| tree | 810a5beaea9b279c3b9be66f33b562d4cdeb0bee /app/configuration/controllers/snmp-controller.html | |
| parent | 219738d2a11dc89f0f259fe99626802c18e6d3a8 (diff) | |
| download | phosphor-webui-57ed98ee456703d0567661a49348033ca0c29ab2.tar.gz phosphor-webui-57ed98ee456703d0567661a49348033ca0c29ab2.zip | |
Fix IE11 SNMP edit bug
- Removes edit button from form
- Removes focus-within (not compatible with IE11 and Edge)
and pointer-event
Tested:
- Input fields are editable and can be saved
- DAP violations and page layout consistency will be addressed
in separate commit
Signed-off-by: Dixsie Wolmers <dixsiew@gmail.com>
Change-Id: I2ccd06802137c2969fec686abc5b5f8e785725b6
Diffstat (limited to 'app/configuration/controllers/snmp-controller.html')
| -rw-r--r-- | app/configuration/controllers/snmp-controller.html | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/app/configuration/controllers/snmp-controller.html b/app/configuration/controllers/snmp-controller.html index aa61f64..45ef681 100644 --- a/app/configuration/controllers/snmp-controller.html +++ b/app/configuration/controllers/snmp-controller.html @@ -68,18 +68,17 @@ </div> </fieldset> </div> - <div class="small-2 align-self-center snmp__buttons"> - <button class="btn edit_button" type="button"> - <icon file="icon-edit.svg" aria-label="Edit"></icon> + <div class="small-1 align-self-center snmp__buttons trash"> + <button + class="btn trash_button" + type="button" + ng-click="removeSNMPManager($index)" + aria-label="Remove"> + <icon file="icon-trashcan.svg" aria-hidden="true"></icon> </button> </div> </div> </div> - <div class="small-1 align-self-center snmp__buttons trash"> - <button class="btn trash_button" type="button" ng-click="removeSNMPManager($index)"> - <icon file="icon-trashcan.svg" aria-label="Remove"></icon> - </button> - </div> </div> <div class="row column"> <button class="btn btn-tertiary btn-add" type="button" ng-click="submitted=false; addNewSNMPManager();"> |

