diff --git a/assets/css/global.scss b/assets/css/global.scss
index 3a3c09b21..959cba45a 100755
--- a/assets/css/global.scss
+++ b/assets/css/global.scss
@@ -408,3 +408,39 @@ a.ogp-card__link--unset:hover {
color: #205493;
font-weight: bold;
}
+
+.usa-search [type="submit"] {
+ background-image: none;
+}
+
+@media screen and (min-width: 700px){
+.search-icon {
+ transform: scale(1.5);
+}
+}
+
+@media screen and (max-width: 1314px){
+.fibf-wheel {
+ margin-left:0rem;
+ margin-right: -2rem;
+}
+}
+
+/** Buttons on Bussiness Standard Sub-Pages **/
+.usa-button--accent-cool {
+ background-color: #0081a1;
+}
+
+.esgms-table-wrapper thead tr {
+ height: auto;
+}
+
+.esgms-table-wrapper thead tr th,
+.esgms-table-wrapper tbody tr td:first-child,
+.esgms-table-wrapper tbody tr td {
+ background-clip: padding-box;
+}
+
+.esgms-table-wrapper thead tr th.populated {
+ vertical-align: bottom;
+}
diff --git a/assets/css/main-page.scss b/assets/css/main-page.scss
index 1c1cbf548..24dd06a54 100755
--- a/assets/css/main-page.scss
+++ b/assets/css/main-page.scss
@@ -42,7 +42,7 @@ body{
.article {
color: #046b99;
text-decoration: none;
- font-size: 1.05em;
+ font-size: 0.95em;
class: ext-link;
rel: external no follow;
}
diff --git a/assets/files/downloads/acq/Contract-Writing-Download-All.zip b/assets/files/downloads/acq/Contract-Writing-Download-All.zip
index e56f111ce..4949d7d5e 100755
Binary files a/assets/files/downloads/acq/Contract-Writing-Download-All.zip and b/assets/files/downloads/acq/Contract-Writing-Download-All.zip differ
diff --git a/assets/files/downloads/erm/Electronic-Records-Management-Download-All.zip b/assets/files/downloads/erm/Electronic-Records-Management-Download-All.zip
index b9e368dd5..b92c20e2a 100644
Binary files a/assets/files/downloads/erm/Electronic-Records-Management-Download-All.zip and b/assets/files/downloads/erm/Electronic-Records-Management-Download-All.zip differ
diff --git a/assets/files/downloads/grants/Grants-Management-Download-All.zip b/assets/files/downloads/grants/Grants-Management-Download-All.zip
index 62ddfb687..421655786 100755
Binary files a/assets/files/downloads/grants/Grants-Management-Download-All.zip and b/assets/files/downloads/grants/Grants-Management-Download-All.zip differ
diff --git a/assets/files/downloads/hr/acquisition/acquisition.zip b/assets/files/downloads/hr/acquisition/acquisition.zip
index 7fbb9df38..c7098ff16 100644
Binary files a/assets/files/downloads/hr/acquisition/acquisition.zip and b/assets/files/downloads/hr/acquisition/acquisition.zip differ
diff --git a/assets/files/downloads/hr/benefits/benefit.zip b/assets/files/downloads/hr/benefits/benefit.zip
index 7e85ae2a3..4aa758833 100644
Binary files a/assets/files/downloads/hr/benefits/benefit.zip and b/assets/files/downloads/hr/benefits/benefit.zip differ
diff --git a/assets/files/downloads/hr/epm/epm.zip b/assets/files/downloads/hr/epm/epm.zip
index 002b8755e..6821a18bc 100644
Binary files a/assets/files/downloads/hr/epm/epm.zip and b/assets/files/downloads/hr/epm/epm.zip differ
diff --git a/assets/files/downloads/hr/retirement/retirement.zip b/assets/files/downloads/hr/retirement/retirement.zip
index 226f6d24f..60c7b7511 100644
Binary files a/assets/files/downloads/hr/retirement/retirement.zip and b/assets/files/downloads/hr/retirement/retirement.zip differ
diff --git a/assets/files/downloads/rpm/Real-Property-Management-Download-All.zip b/assets/files/downloads/rpm/Real-Property-Management-Download-All.zip
index 77e8ee042..ad8ec4363 100644
Binary files a/assets/files/downloads/rpm/Real-Property-Management-Download-All.zip and b/assets/files/downloads/rpm/Real-Property-Management-Download-All.zip differ
diff --git a/assets/files/downloads/travel/Travel-and-Expense-Management-Download-All.zip b/assets/files/downloads/travel/Travel-and-Expense-Management-Download-All.zip
index 1d3e523fe..a79693608 100644
Binary files a/assets/files/downloads/travel/Travel-and-Expense-Management-Download-All.zip and b/assets/files/downloads/travel/Travel-and-Expense-Management-Download-All.zip differ
diff --git a/assets/images/search.svg b/assets/images/search.svg
new file mode 100644
index 000000000..a50fa62fd
--- /dev/null
+++ b/assets/images/search.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/assets/js/app.js b/assets/js/app.js
index ba1502173..2d06882a6 100644
--- a/assets/js/app.js
+++ b/assets/js/app.js
@@ -170,13 +170,23 @@ function imageChecker(url){
tr += '';
jQuery("#" + page.table + " > tbody").append(tr);
});
+ let title = $('title').text();
table.DataTable({
responsive: true,
dom: 'Bfrtip',
buttons: [
'copyHtml5',
'excelHtml5',
- 'csvHtml5',
+ {
+ extend: 'csv',
+ text: 'CSV',
+ charset: 'utf-8',
+ extension: '.csv',
+ fieldSeparator: ',',
+ fieldBoundary: '"',
+ filename: title,
+ bom: true
+ },
'pdfHtml5',
'print',
'pageLength'