-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
report(redesign): runtime settings footer #8229
Merged
Merged
Changes from 25 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
46db5b6
renderer: update gauges
connorjclark 2fe84d6
unsticky for now
connorjclark dfbd61d
score scale
connorjclark 1ce15d2
tweak score scale
connorjclark a57c935
tweak gauge outline
connorjclark 05bcf12
font size and line height for doc
connorjclark 12b1012
narrow header width
connorjclark 86a7e4a
add wrapper to category so that line sep spans width of page
connorjclark 1e8689c
better cat wrapper. meow
connorjclark 91b53b8
fix paddinng in header
connorjclark b34018e
Section header text
connorjclark 76a437b
section header margin
connorjclark 5fc7876
make score scale round
connorjclark d957071
fix gauge width
connorjclark ade931b
fix gauge size and arc
connorjclark 55cb95b
report: row style for runtime settings
connorjclark 48a346d
tests(smokehouse): support artifacts assertions in smoke tests (#8044)
mattzeunert 545ae1e
misc: fix bad auto-merge (#8201)
brendankenny c727c19
core(stack-packs): adjustments to comments and types (#8169)
brendankenny 41065f1
misc(ci): build report and deploy to now.sh on every commit (#8194)
paulirish e2397ef
break word
connorjclark fc2cbac
pr feedback
connorjclark 3e4df12
Merge branch 'master' into report-ui-runtime-settings
connorjclark 65b27e8
fix bad rebase
connorjclark 5412203
fix
connorjclark 316077f
env-item
connorjclark f2599a3
remove dupe
connorjclark File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,9 @@ | |
--circle-size: calc(3 * var(--header-font-size)); | ||
|
||
/* TODO(cjamcl) clean up unused variables. */ | ||
--audits-margin-bottom: 40px; | ||
--circle-size-big: 120px; | ||
--circle-size: 96px; | ||
--color-black-100: #F5F5F5; | ||
--color-black-200: #E0E0E0; | ||
--color-black-400: #BDBDBD; | ||
|
@@ -98,13 +101,14 @@ | |
--color-red-700: #EB0F00; | ||
--color-red: #FF4E42; | ||
--color-white: #FFFFFF; | ||
--env-name-min-width: 220px; | ||
--header-padding: 20px 0 20px 0; | ||
--item-bg: var(--color-black-100); | ||
--item-padding: 10px 0px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i presume There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just checked, it's only uses for the env table. renamed. |
||
--score-container-padding: 12px; | ||
--score-container-width: 160px; | ||
--score-number-font-size-big: 42px; | ||
--score-number-font-size: 34px; | ||
--circle-size-big: 120px; | ||
--circle-size: 96px; | ||
--score-title-font-size-big: 28px; | ||
--score-title-font-size: 20px; | ||
--score-title-line-height-big: 36px; | ||
|
@@ -138,10 +142,12 @@ | |
|
||
@media only screen and (max-width: 480px) { | ||
.lh-vars { | ||
--audits-margin-bottom: 20px; | ||
--body-font-size: 14px; | ||
--body-line-height: 20px; | ||
--circle-size-big: 96px; | ||
--circle-size: 72px; | ||
--env-name-min-width: 120px; | ||
--header-padding: 16px 0 16px 0; | ||
--score-container-padding: 8px; | ||
--score-container-width: 112px; | ||
|
@@ -160,7 +166,7 @@ | |
--text-font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans-serif; | ||
--monospace-font-family: 'Menlo', 'dejavu sans mono', 'Consolas', 'Lucida Console', monospace; | ||
--body-font-size: 12px; | ||
--body-line-height: 16px; | ||
--body-line-height: 20px; | ||
--subheader-font-size: 14px; | ||
--subheader-line-height: 18px; | ||
--header-font-size: 16px; | ||
|
@@ -217,6 +223,10 @@ | |
cursor: pointer; | ||
} | ||
|
||
.lh-container { | ||
word-break: break-word; | ||
} | ||
|
||
.lh-audit-group a, | ||
.lh-category-header__description a { | ||
color: #0c50c7; | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what are these doing here/should we remove thecircle-size
above it?oh looks like they're just alphabetized now :) still remove the one duplicate above it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done