Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

updated mobile formatting for skip-to-results box and results table #185

Open
wants to merge 1 commit into
base: DEV
Choose a base branch
from
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
8 changes: 8 additions & 0 deletions assets-components/css/record-table.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ table.record-table {
text-align: center;
}

td:before {
content:"";
}

th {
background: #063346;
line-height: 1em;
Expand All @@ -26,6 +30,10 @@ table.record-table {
color: #fff;
}

.btn.btn-remove {
margin-top:1.25em !important;
}

@media (min-width: 768px) {
.remove-label {
display: block;
Expand Down
6 changes: 4 additions & 2 deletions assets-components/css/skip-to-results.less
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
line-height:normal;
color:#fff;
margin-bottom:20px;
width:225px;
max-width:225px;
width:100%;
font-family: 'Open Sans', sans-serif;
}

Expand All @@ -31,6 +32,7 @@
line-height: 24px;
margin: 0px;
padding: 6px;
width: 225px;
max-width:225px;
width:100%;
}
}
12 changes: 10 additions & 2 deletions assets-components/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10116,7 +10116,8 @@ ul#hc-gov-assets .nav-tabs {
line-height: normal;
color: #fff;
margin-bottom: 20px;
width: 225px;
max-width: 225px;
width: 100%;
font-family: 'Open Sans', sans-serif;
}
#hc-gov-assets .notification-box a,
Expand All @@ -10136,7 +10137,8 @@ ul#hc-gov-assets .nav-tabs {
line-height: 24px;
margin: 0px;
padding: 6px;
width: 225px;
max-width: 225px;
width: 100%;
}
#hc-gov-assets table.record-table {
background: #063346;
Expand All @@ -10150,6 +10152,9 @@ ul#hc-gov-assets .nav-tabs {
padding: 0.5em;
text-align: center;
}
#hc-gov-assets table.record-table td:before {
content: "";
}
#hc-gov-assets table.record-table th {
background: #063346;
line-height: 1em;
Expand All @@ -10160,6 +10165,9 @@ ul#hc-gov-assets .nav-tabs {
#hc-gov-assets table.record-table .btn .glyphicon {
color: #fff;
}
#hc-gov-assets table.record-table .btn.btn-remove {
margin-top: 1.25em !important;
}
@media (min-width: 768px) {
#hc-gov-assets table.record-table .remove-label {
display: block;
Expand Down