summaryrefslogtreecommitdiffstats
path: root/app/common/directives
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2018-11-14 13:44:41 -0600
committerGunnar Mills <gmills@us.ibm.com>2018-11-15 15:46:11 -0600
commit84e114a43065e2c20e87bd8a1a0dfb3ced896147 (patch)
treebc334f4ba60b6bf9fcca5d1ed4e9bf4ee5e1abf5 /app/common/directives
parentbc5cc7f75c4cb0c81200a2fcb2e68815b2b8c1b9 (diff)
downloadphosphor-webui-84e114a43065e2c20e87bd8a1a0dfb3ced896147.tar.gz
phosphor-webui-84e114a43065e2c20e87bd8a1a0dfb3ced896147.zip
Move to Bootstrap 4
Bootstrap < 4.1.2 has the following CVE: https://nvd.nist.gov/vuln/detail/CVE-2018-14041 Removed bootstrap-theme.css due to "Replaced the separate optional theme with configurable options via SCSS variables (e.g., $enable-gradients: true)." Added "width: 100%" to a few places where width 100% was no longer getting inherited. Moved a few elements and adjusted styles to get the same look as before. See https://getbootstrap.com/docs/4.0/migration/ for more information. Tested: Manually on a Witherspoon. Change-Id: I0a72665ac1ca6eacd0b553a585b1fb15e14ae62c Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'app/common/directives')
-rw-r--r--app/common/directives/log-search-control.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/app/common/directives/log-search-control.html b/app/common/directives/log-search-control.html
index 113e9f0..1184bda 100644
--- a/app/common/directives/log-search-control.html
+++ b/app/common/directives/log-search-control.html
@@ -1,9 +1,11 @@
-<p class="content-label">Filter events</p>
-<div class="content__search">
- <label for="content__search-input">Event Log Search</label>
- <input id="content__search-input" type="text" ng-model="customSearch" ng-keydown="doSearchOnEnter($event)"/>
- <div class="search-submit__wrapper">
- <button class="clear-input" ng-click="clear()">&#10005;</button>
- <input id="content__search-submit" type="submit" class="btn btn-primary content__search-submit" value="Filter" ng-click="doSearchOnClick()"/>
+<section id="event-search" class="row column" aria-label="event log search">
+ <p class="content-label">Filter events</p>
+ <div class="content__search">
+ <label for="content__search-input">Event Log Search</label>
+ <input id="content__search-input" type="text" ng-model="customSearch" ng-keydown="doSearchOnEnter($event)"/>
+ <div class="search-submit__wrapper">
+ <button class="clear-input" ng-click="clear()">&#10005;</button>
+ <input id="content__search-submit" type="submit" class="btn btn-primary content__search-submit" value="Filter" ng-click="doSearchOnClick()"/>
+ </div>
</div>
-</div>
+</section>
OpenPOWER on IntegriCloud