-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add feature banner to Front Page. #37
Merged
+82
−11
Merged
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a6f66a2
First attempt at mast-head.
StevenDufresne 812b25b
Allow for sticky posts.
StevenDufresne 8234792
Add in query control for mast head.
StevenDufresne eec8fd8
Update the header and control expansion of hero bg.
StevenDufresne a7e2ca1
Use an svg.
StevenDufresne 2ab6a52
Rebuild using css and svg image.
StevenDufresne 2d2bf4f
Run lint.
StevenDufresne c45a0d7
Update the copy of doc.
StevenDufresne 6079f7f
Fix rebase conflict.
StevenDufresne 22f0026
Add svg img and functions that allows it.
StevenDufresne 36dd722
Remove the ability to upload svg.
StevenDufresne 08e776a
Use showcase images from cdn.
StevenDufresne 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
4 changes: 4 additions & 0 deletions
4
source/wp-content/themes/wporg-showcase-2022/images/showcase.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -148,3 +148,22 @@ button[type="submit"] { | |
margin-right: var(--wp--preset--spacing--60) !important; | ||
} | ||
} | ||
|
||
.wporg-hero-details { | ||
padding-top: var(--wp--preset--spacing--10); | ||
|
||
> * { | ||
text-align: right; | ||
} | ||
} | ||
|
||
@media (min-width: 782px) { | ||
.wporg-hero-details { | ||
padding-top: 0; | ||
margin-top: -64px !important; | ||
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. This is a bit sensitive. Can't think of a better way. |
||
|
||
> * { | ||
text-align: left; | ||
} | ||
} | ||
} |
12 changes: 3 additions & 9 deletions
12
source/wp-content/themes/wporg-showcase-2022/templates/front-page.html
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.
@dd32 Does this make any sense? To allow SVG uploads but lock it down to admins?
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.
In all honesty, this doesn't belong in the theme, and I'm not sure the context of adding it.
There's also something to say that this should be using
unfiltered_upload
, but that isn't available to anyone on WordPress.org.I think I'd rather enable a plugin such as https://wordpress.org/plugins/safe-svg/ (or one of the others) on the site instead if SVG upload is required.
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.
Yeah fair, I'll avoid adding SVG support.
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.
I think we'll need SVG support eventually, so I've added a low-priority issue over in mu-plugins: WordPress/wporg-mu-plugins#300
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.
Thanks!