Opened 9 years ago
Closed 8 years ago
#2131 closed enhancement (fixed)
Submit video page CSS issue
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Component: | WordPress.tv | Keywords: | has-patch |
| Cc: |
Description
On page http://wordpress.tv/submit-video/ the very last line where the video filename is to be attached has arrows for scrolling, but there is nothing to scroll.
In the CSS .video-upload p { overflow: auto; } is probably the issue (thanks @dd32)
As @ocean90 indicated : A proper clearfix should be used instead.
Thanks for changing.
Attachments (3)
Change History (12)
This ticket was mentioned in Slack in #wptv by jerrysarcastic. View the logs.
9 years ago
This ticket was mentioned in Slack in #meta by audrasjb. View the logs.
8 years ago
#4
@
8 years ago
<p> is a block-level element, so adding display: block; here doesn't appear to do anything.
Replacing overflow: auto; with overflow: hidden; should be enough.
#6
@
8 years ago
@SergeyBiryukov @casiepa my previous patch was uncorrectly built. The last one is the good one :P
Thanks Pascal.
Hi,
I try to work on this ticket but I can't understand why my git status on my local branch for this ticket don't retrieve any change between the meta-environment and my branch. As I'm going crazy with that, let's share the small fix for this ticket:
in file
anon-upload-template.phplocated inwp-content/themes/wptv2, replace:.video-upload p { margin: 16px 0; overflow: auto; }with:
.video-upload p { margin: 16px 0; display: block; overflow: hidden; }Then, Pascal' issue should be fixed. I tested it with several use cases and it works fine.
Sorry, and let's learn deeper how to make a real meta .diff file…
Regard,
Jb