-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix Button to use dynamic style/class props - For the clear button, use secondary button type with border * Remove username from Header.js * Fix use of show references icons - Add /img to /public - Add chevron image to /src/resources * Add capped badge if the results are capped - Results cap at 10,000 * Add updated CSS for new search bar * Seperate out SearchForm into different components - Change props for button/textInput * Add seperate search form for the home page - Fix issue with TextInputInline not displaying the correct size * Add fix for width of react-table (12 cols now) * Fix column widths, fix issue with htmlFor in range input * Fix more col widths, remove scroll in ResultsList * Remove spacing from Home search inputs * Fix spelling errors - CN -> CRN - Use 'Employment' instead of 'Employment Bands' in react table * Add scroll to results feature * Change scroll to go to Search header
- Loading branch information
1 parent
4a36709
commit afa6309
Showing
33 changed files
with
551 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ | |
margin: 0; | ||
cursor: pointer; | ||
width: 200px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@charset "UTF-8"; | ||
|
||
.pagination { | ||
display: inline-block; | ||
} | ||
|
||
.pagination a { | ||
color: #4263C2; | ||
float: left; | ||
padding: 0.6rem 1rem; | ||
text-decoration: underline; | ||
|
||
} | ||
|
||
.pagination a.active { | ||
background-color: #033e58; | ||
color: white; | ||
} | ||
|
||
.pagination a:hover:not(.active) { | ||
background-color: #e4e8eb; | ||
outline: none; | ||
color: #033e58; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ | |
max-width: 1008px; | ||
} | ||
|
||
/* } */ | ||
} | ||
|
||
@media only screen and (max-width: 767px) { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@charset "UTF-8"; | ||
|
||
/* SBR Primary search page */ | ||
|
||
.label__description { | ||
padding-bottom: 0.5rem; | ||
} | ||
|
||
/* SBR search header */ | ||
|
||
.search_bar { | ||
background-color: #E4E8EB; | ||
padding: 1rem 0 0 0; | ||
} | ||
|
||
.sbr-search-input { | ||
width: 100%; | ||
} | ||
|
||
.three-col-button { | ||
width: 100%; | ||
padding: 0.5456rem 0.8889rem 0.5456rem 0.8889rem; | ||
margin-top: 1.75rem; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "", | ||
"icons": [ | ||
{ | ||
"src": "/s/favicons/android-chrome-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/s/favicons/android-chrome-384x384.png", | ||
"sizes": "384x384", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"display": "standalone" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.