Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

319 update epa style #9

Merged
merged 29 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c715ae4
Multitumor and Nested Dichotomous (#264)
hausman-gdit Sep 13, 2023
a722e74
BMDS Desktop settings flag (#261)
shapiromatron Sep 21, 2023
aa073b9
UI updates for nested dichotomous and multitumor (#265)
shapiromatron Sep 27, 2023
516485f
293 mt min max datasets (#266)
hausman-gdit Oct 4, 2023
b72c1da
Complete nested dichotomous summary table (#267)
shapiromatron Oct 4, 2023
9cde81e
switch to ruff format (#271)
shapiromatron Oct 31, 2023
fbf2f0f
update python package versions (#268)
hausman-gdit Oct 31, 2023
c485cb5
integration tests - nested dichotomous + multitumor (#269)
hausman-gdit Oct 31, 2023
1e10519
297 dynamic word export (#270)
hausman-gdit Oct 31, 2023
13d1705
update to pydantic v2 (#273)
shapiromatron Nov 7, 2023
eedf582
multitumor display edits (#272)
shapiromatron Nov 8, 2023
c3ad4ed
add years context (#274)
hausman-gdit Nov 9, 2023
3fef58e
remove zenodo.org badge (#278)
shapiromatron Dec 7, 2023
59274be
283 polyk data link (#275)
hausman-gdit Dec 7, 2023
1470f3f
polyk - copy dataset to clipboard for bmds modeling (#276)
hausman-gdit Dec 7, 2023
b0ab6a0
Add Word and Excel reports to Poly K adjustments (#277)
shapiromatron Dec 11, 2023
e25d44d
add Desktop mode (#279)
shapiromatron Dec 13, 2023
c8ecff5
2, 6
hausman-gdit Dec 18, 2023
121396f
Revert "2, 6"
hausman-gdit Dec 19, 2023
c481860
Run tests in CI (#5)
shapiromatron Feb 1, 2024
c7a3cbd
324 random bootstrap seed (#1)
hausman-gdit Feb 1, 2024
2b91242
328 improve error message (#4)
hausman-gdit Feb 7, 2024
71786b7
321 improve nomenclature for statistical outputs (#2)
hausman-gdit Feb 9, 2024
774b67f
EPA Template CSS updates
hausman-gdit Feb 12, 2024
e528477
Merge remote-tracking branch 'origin/main' into 319-update-epa-style
shapiromatron Feb 12, 2024
ca7ebda
fix branch info
shapiromatron Feb 12, 2024
70c8486
pull in content for usepa/hawc
shapiromatron Feb 12, 2024
6b73c70
fix animation
shapiromatron Feb 13, 2024
4d7f820
add sticky top
shapiromatron Feb 13, 2024
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
45 changes: 25 additions & 20 deletions bmds_server/static/css/epa/bmdsonline.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
/* Global */
:focus {
/* disable big blue border in main content */
#main-content :focus {
outline: none !important;
}

/* this rule was disabled in the epa style; re-enable to header */
header.l-header * {
-webkit-transition-duration: 200ms;
transition-duration: 200ms;
/* disable global transitions */
* {
-webkit-transition-duration: unset;
transition-duration: unset;
-webkit-transition-property: background-color, border-color, color, opacity, text-shadow, -webkit-box-shadow, -webkit-transform;
transition-property: background-color, border-color, color, opacity, text-shadow, -webkit-box-shadow, -webkit-transform;
transition-property: background-color, border-color, box-shadow, color, opacity, text-shadow, transform;
transition-property: background-color, border-color, box-shadow, color, opacity, text-shadow, transform, -webkit-box-shadow, -webkit-transform;
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
transition-timing-function: cubic-bezier(0.4, 0, 1, 1)
-webkit-transition-timing-function: unset;
transition-timing-function: unset;
}

/* Header */
#search-box {
margin-top: 0px;
/* EPA header menu items */
.l-header__nav .menu__item > .menu__link {
font-size: 0.91rem !important;
}

/* override environment banner position */
.env-banner {
margin: 0 10% 0 70%;
/* usa-banner flag icon */
.usa-banner__button[aria-expanded=true]::after {
-webkit-mask: url(/static/vendor/uswds/3.1.0/img/usa-icons/expand_less.svg) no-repeat center/contain;
}

.usa-banner__button[aria-expanded=false]::after {
-webkit-mask: url(/static/vendor/uswds/3.1.0/img/usa-icons/expand_more.svg) no-repeat center/contain;
}

/* Background fill */
Expand All @@ -37,14 +41,15 @@ table td {

/* sidebar-cards */
.card.pane {
border-color:#5b616b;
border-width: 1px 1px 4px 1px;
border-radius: 0;
border-color: #5b616b;
border-width: 1px 1px 4px 1px;
border-radius: 0;
}

.card.pane > .card-header {
border-color:#5b616b;
background-color: #5b616b;
border-radius: 0;
border-color: #5b616b;
background-color: #5b616b;
border-radius: 0;
}

/* always above toast container */
Expand Down
Loading
Loading