-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #668 from fedspendingtransparency/staging
Promote staging to master
- Loading branch information
Showing
183 changed files
with
3,274 additions
and
1,754 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,50 @@ | ||
.sticky-header { | ||
$sticky-header-height: rem(66); | ||
|
||
position: relative; | ||
height: $sticky-header-height; | ||
|
||
.sticky-header__container { | ||
width: 100%; | ||
background-color: #4a4a4a; | ||
color: $color-white; | ||
// bottom shadow cast on the content | ||
box-shadow: 0 2px 2px rgba(0, 0, 0, .3); | ||
|
||
&.sticky-header__container_sticky { | ||
@include media($medium-screen) { | ||
position: fixed; | ||
top: 0; | ||
z-index: $z-header; | ||
} | ||
} | ||
|
||
.sticky-header__header { | ||
@import "mixins/fullSectionWrap"; | ||
@include fullSectionWrap(0, 0); | ||
@include display(flex); | ||
@include justify-content(space-between); | ||
@include flex-direction(row); | ||
@include align-items(center); | ||
@include align-self(stretch); | ||
@include flex-flow(row wrap); | ||
position: relative; | ||
height: $sticky-header-height; | ||
|
||
.sticky-header__title { | ||
@include flex(1 1 auto); | ||
h1 { | ||
font-size: rem(24); | ||
line-height: rem(31); | ||
font-weight: $font-semibold; | ||
margin: 0; | ||
} | ||
} | ||
|
||
.sticky-header__options { | ||
@include flex(0 0 auto); | ||
@import "../../tabbedSearch/header/downloadButton"; | ||
} | ||
} | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
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
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 was deleted.
Oops, something went wrong.
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,12 @@ | ||
.usa-da-account-landing { | ||
@import "all"; | ||
@import "layouts/landingPage/landingPage"; | ||
@import "components/pagination"; | ||
@import "layouts/default/stickyHeader/header"; | ||
@import './searchSection'; | ||
@import './table/resultsSection'; | ||
|
||
.search-section { | ||
display: none; | ||
} | ||
} |
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,39 @@ | ||
.search-section { | ||
background-color: $color-primary-alt-lightest; | ||
padding: rem(10); | ||
border: 1px solid $color-vis-lightest; | ||
text-align: center; | ||
@include media($medium-screen) { | ||
padding: rem(38); | ||
} | ||
.search-section__form { | ||
@include display(flex); | ||
@include flex-direction(row); | ||
@include align-items(center); | ||
@include justify-content(flex-start); | ||
background-color: $color-white; | ||
.search-section__input { | ||
@include flex(1 1 auto); | ||
color: $color-gray-light; | ||
font-weight: 300; | ||
line-height: rem(28); | ||
padding: rem(10) rem(15); | ||
border: 0; | ||
@include media($medium-screen) { | ||
font-size: rem(22); | ||
} | ||
} | ||
.search-section__button { | ||
@include flex(0 0 auto); | ||
@include button-unstyled; | ||
padding: 0 rem(15); | ||
.search-section__button-icon { | ||
height: rem(24); | ||
width: rem(24); | ||
svg { | ||
fill: $color-gray-light; | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.