Skip to content

Commit

Permalink
Resolves #3355 add feedback link (#3378)
Browse files Browse the repository at this point in the history
* #3355 remove references of 'Beta' search

* #3355 add search feedback link and icons

---------

Co-authored-by: jdaigneau5 <[email protected]>
  • Loading branch information
athu-tran and jdaigneau5 authored Dec 18, 2024
1 parent 5ed4223 commit c8f5d8b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 7 deletions.
28 changes: 25 additions & 3 deletions src/components/PrimaryNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,33 @@
</div>
<div class="navbar-item cve-secondary-navbar-item cve-keyword-search">
<div v-if="searchType">
<span class="icon-text mr-2" style="font-size: 14px">
<router-link to="/ResourcesSupport/FAQs#pc_cve_list_basicssearch_cve" class="cve-dark-blue-text">
Access Search Tips
<p>
<span class="icon-text cve-dark-blue-text" style="font-size: 14px">
<router-link to="/ResourcesSupport/FAQs#pc_cve_list_basicssearch_cve" class="cve-dark-blue-text" style="font-size: 14px">
Search tips
</router-link>
<span class="icon">
<p id="lightBulbIcon" class="is-hidden">
lightbulb
</p>
<font-awesome-icon :icon="['fas', 'lightbulb']" aria-labelledby="lightBulbIcon" aria-hidden="false"/>
</span>
</span>
<span class="has-text-black ml-2 mr-2">|</span>
<span class="icon-text cve-dark-blue-text" style="font-size: 14px">
<span>
<a href="https://forms.office.com/g/qmmTaYnr5y" target="_blank" class="cve-dark-blue-text" style="font-size: 14px">
Provide feedback
</a>
<span class="icon cve-icon-xxs">
<p id="externalSurveyLink" class="is-hidden">
Survey opens in a new tab or window depending on browser settings
</p>
<font-awesome-icon icon="external-link-alt" aria-labelledby="extenalSurveyLink" aria-hidden="false"/>
</span>
</span>
</span>
</p>
</div>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ import { library } from '@fortawesome/fontawesome-svg-core';
import { fab } from '@fortawesome/free-brands-svg-icons';
import {
faAngleDoubleLeft, faAngleDoubleRight, faAngleLeft, faAngleRight, faArrowRight, faBlog, faBook, faCaretDown, faCaretUp, faInfoCircle, faCheckCircle,
faExclamationCircle, faFileCode, faTriangleExclamation, faUpRightFromSquare, faLink, faMinus, faPassport, faPlus, faPodcast, faIdCard, faSearch,
faHandshake, faUsersCog, faLaptopCode, faPoll, faTimes, faToolbox, faSitemap, faUser, faUserShield, faBullhorn, faWindowMaximize,
faExclamationCircle, faFileCode, faTriangleExclamation, faUpRightFromSquare, faLightbulb, faLink, faMinus, faPassport, faPlus, faPodcast, faIdCard,
faSearch, faHandshake, faUsersCog, faLaptopCode, faPoll, faTimes, faToolbox, faSitemap, faUser, faUserShield, faBullhorn, faWindowMaximize,
} from '@fortawesome/free-solid-svg-icons';
import { faArrowAltCircleRight, faClipboard, faNewspaper } from '@fortawesome/free-regular-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';

library.add(
faAngleDoubleLeft, faAngleDoubleRight, faAngleLeft, faAngleRight, faArrowRight, faBlog, faBook, faCaretDown, faCaretUp, faInfoCircle, faCheckCircle,
faExclamationCircle, faFileCode, faTriangleExclamation, faUpRightFromSquare, faLink, faMinus, faPassport, faPlus, faPodcast, faIdCard, faSearch,
faHandshake, faUsersCog, faLaptopCode, faPoll, faTimes, faToolbox, faSitemap, faUser, faUserShield, faBullhorn, faWindowMaximize,
faExclamationCircle, faFileCode, faTriangleExclamation, faUpRightFromSquare, faLightbulb, faLink, faMinus, faPassport, faPlus, faPodcast, faIdCard,
faSearch, faHandshake, faUsersCog, faLaptopCode, faPoll, faTimes, faToolbox, faSitemap, faUser, faUserShield, faBullhorn, faWindowMaximize,
faArrowAltCircleRight, faClipboard, faNewspaper, fab,);


Expand Down

0 comments on commit c8f5d8b

Please sign in to comment.