diff options
author | Michael Davis <michael.s.davis@ibm.com> | 2017-07-27 14:35:00 -0500 |
---|---|---|
committer | Adriana Kobylak <anoo@us.ibm.com> | 2017-10-09 13:18:10 -0500 |
commit | b27188e87541e2d500967083b654237f26f1cac8 (patch) | |
tree | cb109c968a09a2b3f30e6262dc0f1cbfab077f9d /app/configuration | |
parent | e67bccda1bbf79d88887e68517ddf5375b74dd81 (diff) | |
download | phosphor-webui-b27188e87541e2d500967083b654237f26f1cac8.tar.gz phosphor-webui-b27188e87541e2d500967083b654237f26f1cac8.zip |
bug fixes and copy changes based on user feedback
Change-Id: I2dd2cc6168d86676ab7ada9b389cb86cee9b3dae
Signed-off-by: Michael Davis <michael.s.davis@ibm.com>
Diffstat (limited to 'app/configuration')
-rw-r--r-- | app/configuration/controllers/firmware-controller.html | 22 | ||||
-rw-r--r-- | app/configuration/styles/firmware.scss | 9 |
2 files changed, 18 insertions, 13 deletions
diff --git a/app/configuration/controllers/firmware-controller.html b/app/configuration/controllers/firmware-controller.html index edf8c16..76dbfe2 100644 --- a/app/configuration/controllers/firmware-controller.html +++ b/app/configuration/controllers/firmware-controller.html @@ -9,23 +9,20 @@ </div> </div> <div class="row column"> - <p>Use the tables at the top of the page to manage firmware images that are currently available on the BMC. The - image at the top of the table is the Primary image, which will be used the next time the device is - booted. To change which image is Primary, move the image you want to use as the Primary to the top of the table using the arrows.</p> - <p><a ng-click="gotoAnchor()">Scroll down to upload an image file</a> to transfer a new firmware image to the BMC. After uploading a new image, Activate it to make it availbe for use.</p> + <p>Use the following tables to manage firmware image files. The image file that is listed as Active is used the next time that the device is booted. To change the boot order for the image, click the arrow icons.</p> + <p><a ng-click="gotoAnchor()">Scroll down to upload an image file</a> to transfer a new firmware image to the BMC. After uploading a new image, Activate it to make it available for use.</p> </div> <firmware-list title="BMC images" version="bmcActiveVersion" firmwares="firmwares" filter-by="filters.bmc"></firmware-list> <firmware-list title="Server images" version="hostActiveVersion" firmwares="firmwares" filter-by="filters.host"></firmware-list> <div class="row column" id="upload"> <div class="column small-12 page-header"> - <h2 class="inline h3 bold">Upload firmware image</h2> + <h2 class="inline h3 bold">Specify image file location</h2> </div> <form id="firmware__upload-form" role="form" class="firmware__upload-form"> - <p>Specify an image file located on your workstation or a TFTP server. An image file may contain firmware images for the server, BMC, or other hardware devices. Each image that you upload will be unpacked from the image file, and added to the appropriate list above.</p> + <p>Specify an image file located on your workstation or a TFTP server. An image file may contain firmware images for the server, BMC, or other hardware devices. Each image that you upload will be unpacked from the image file and added to the appropriate list above.</p> <div class=" column firmware__upload-station"> - <h3 class="h4 bold">Upload from workstation</h3> - <p>Optional text area. Can be used to explain about updating openBMC firmware from workstation. This could - be step-by-step instruction. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce et</p> + <h3 class="h4 bold">Upload image file from workstation</h3> + <p>Select the image file saved on the workstation storage medium to upload to the server BMC.</p> <label for="file-upload" class="inline firmware__upload-chooser"> <input id="file-upload" type="file" file="file" class="hide" onchange="angular.element(this).scope().fileNameChanged()"/> <span class="button btn-secondary inline">Choose a file</span> @@ -35,13 +32,12 @@ <div class="inline uploading" ng-show="uploading">Upload in progress...</div> </div> <div class=" column firmware__upload-tftp"> - <h3 class="h4 bold">Download from TFTP server</h3> - <p>Optional text area. Can be used to explain about updating openBMC firmware from workstation. This could - be step-by-step instruction. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce et</p> + <h3 class="h4 bold">Download image file from TFTP server</h3> + <p>Specify both the TFTP server IP address and the image file name stored on it to download to the server BMC.</p> <fieldset> <div class="row"> <div class="column small-12 large-4"> - <label for="tftp-ip">Server IP address</label> + <label for="tftp-ip">TFTP Server IP address</label> <input name="tftp-ip" id="tftp-ip" type="number"/> </div> <div class="column small-12 large-4"> diff --git a/app/configuration/styles/firmware.scss b/app/configuration/styles/firmware.scss index 68fa0fc..c634778 100644 --- a/app/configuration/styles/firmware.scss +++ b/app/configuration/styles/firmware.scss @@ -19,11 +19,20 @@ color: $medblue; &.disabled { color: $medgrey; + &:hover { + cursor: default; + } + } + &:hover { + cursor: pointer; } } .icon.icon-as-spacer { text-indent: 0; color: $btn__disabled-txt; + &:hover { + cursor: default; + } } } |