Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion _assets/css/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
font-size: 14px;
}

@media screen and (min-width: 768px) {
@media screen and (min-width: 830px) {
.ck {
display: none
}
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ primary_navigation:
show_in_menu: true
show_in_footer: false
- text: 'Cybersecurity'
permalink: /fibf-cyb-soc/
permalink: /fibf-cyb-cvd/
show_in_menu: true
show_in_footer: false
- text: 'Coordinated Vulnerability Disclosure'
Expand Down
8 changes: 5 additions & 3 deletions _includes/searchgov/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

{% if include.searchgov %}
{% if include.searchgov.inline == true %}
<form id="search_form" class="usa-search usa-search--small" action="{{site.baseurl}}/search/" accept-charset="UTF-8" method="get">
<form id="search_form" class="usa-search" action="{{site.baseurl}}/search/" accept-charset="UTF-8" method="get">
{% else %}
<form id="search_form" class="usa-search usa-search--small" action="{{include.searchgov.endpoint}}/search" accept-charset="UTF-8" method="get">
<form id="search_form" class="usa-search" action="{{include.searchgov.endpoint}}/search" accept-charset="UTF-8" method="get">
{% endif %}


Expand All @@ -16,7 +16,9 @@
<div role="search">
<label class="usa-sr-only" for="extended-search-field-small">Search small</label>
<input class="usa-input usagov-search-autocomplete" id="extended-search-field-small" type="search" name="query" autocomplete="off">
<button class="usa-button" type="submit"><span class="usa-sr-only">Search</span></button>
<button class="usa-button" type="submit">
<img src="{{site.baseurl}}/assets/images/search.svg" class="search-icon" alt="Search Icon" />
</button>
</div>
</form>
{% endif %}
2 changes: 1 addition & 1 deletion _layouts/video-card.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{% include video-card/tag-line.html title = "Learn About Shared Services" sub_title = page.title go_back_url = '/video-center/' %}
<script src="{{ base.url | prepend: site.url }}/assets/js/shareButton.js"></script>

<div class="usa-layout-docs usa-section">
<div class="usa-layout-docs usa-section" id="main-content">
<div class="grid-container">
<div class="grid-row grid-gap">
<div class="grid-col-12 desktop:grid-col-9">
Expand Down
36 changes: 36 additions & 0 deletions assets/css/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
2 changes: 1 addition & 1 deletion assets/css/main-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Binary file modified assets/files/downloads/acq/Contract-Writing-Download-All.zip
Binary file not shown.
Binary file not shown.
Binary file modified assets/files/downloads/grants/Grants-Management-Download-All.zip
Binary file not shown.
Binary file modified assets/files/downloads/hr/acquisition/acquisition.zip
Binary file not shown.
Binary file modified assets/files/downloads/hr/benefits/benefit.zip
Binary file not shown.
Binary file modified assets/files/downloads/hr/epm/epm.zip
Binary file not shown.
Binary file modified assets/files/downloads/hr/retirement/retirement.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions assets/images/search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,23 @@ function imageChecker(url){
tr += '</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'
Expand Down