@@ -1,19 +1,3 @@
table tr td:nth-child(4) {
display: none;
}

table tr td:nth-child(5) {
display: none;
}

th:nth-child(4) {
display: none;
}

th:nth-child(5) {
display: none;
}

b {
display: none;
}
@@ -28,15 +12,15 @@ b {
}

.result {
margin-top: 3vh;
/* margin-top: 3vh; */
max-height: 45vh !important;
word-wrap: break-word;
overflow-y: auto;
overflow-x: hidden;
font-family: Roboto;
}

.result > table {
.result>table {
width: 100%;
max-height: 45vh !important;
margin: 0;
@@ -67,7 +51,7 @@ b {
height: 80vh;
min-width: 300px;
min-height: 330px;
box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07);
box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
word-wrap: break-spaces;
}

@@ -78,8 +62,7 @@ b {
font-size: 5rem;
}

input,
textarea {
input, textarea {
display: block;
padding: .5rem .75rem;
width: 100%;
@@ -96,10 +79,17 @@ textarea {
font-family: inherit;
}

.react-form > input:-ms-input-placeholder, /* IE 10+ */
.react-form > input:-moz-placeholder, /* Firefox 18- */
.react-form > input::-moz-placeholder, /* Firefox 19+ */
.react-form > input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
.react-form>input:-ms-input-placeholder,
/* IE 10+ */

.react-form>input:-moz-placeholder,
/* Firefox 18- */

.react-form>input::-moz-placeholder,
/* Firefox 19+ */

.react-form>input::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
font-family: VCR, Courier New, Courier, Lucida Sans Typewriter, Lucida Typewriter, monospace;
text-transform: uppercase;
color: #ababab;
@@ -117,35 +107,26 @@ textarea {
overflow: hidden;
padding: 5vh 5vw 0 5vw;
min-height: 95vh;

z-index: 0;
}

.tracking-form td:nth-child(3),
.tracking-form th:nth-child(3) {
.tracking-form td:nth-child(3), .tracking-form th:nth-child(3) {
display: none;
}

.tracking-wrapper {
min-width: 100vw;
min-height: 100vh;
overflow-x: hidden;
}

.result {
max-height: 60vh;
}
}


.definition-list h3 {
display: none;
}

dd:nth-child(8),
dd:nth-child(10),
.accent-color:nth-child(7),
.accent-color:nth-child(9) {
dd:nth-child(8), dd:nth-child(10), .accent-color:nth-child(7), .accent-color:nth-child(9) {
display: none;
}

@@ -164,4 +145,49 @@ dd:nth-child(10),

.prev-select {
margin-top: 15px;
}

table tr td:nth-child(4) {
display: none;
}

table tr td:nth-child(5) {
display: none;
}

th:nth-child(4) {
display: none;
}

th:nth-child(5) {
display: none;
}

.table-wrapper th, .table-wrapper td {
font-size: 1em;
padding-right: 10px;
}

.table-wrapper th:nth-child(2), .table-wrapper td:nth-child(2) {
/* text-align: center; */
}

.table-wrapper tbody {
text-transform: none;
}

.table-wrapper tbody>tr {
height: 40px;
}

.table-wrapper tbody>td {
padding: 0 !important;
font-size: inherit !important;
}

.table-wrapper thead > tr {
height: 35px;
}

.table-wrapper tbody > tr:first-child {
}
@@ -1,4 +1,4 @@
export default {
trackingCodes: [],
results: ''
results: {}
}
@@ -6,6 +6,7 @@ export default function requestResult(state = initialState.results, action) {
case 'TRACKING_API_SUCCESS':
console.log('Saving search results to state');
const converted = htmlToJson(action.data);
if (converted === undefined) return {};
return {
headers: converted[0],
rows: converted[1]