Opened 8 years ago
Closed 7 years ago
#2131 closed enhancement (fixed)
Submit video page CSS issue
Reported by: | casiepa | Owned by: | obenland |
---|---|---|---|
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.
8 years ago
This ticket was mentioned in Slack in #meta by audrasjb. View the logs.
7 years ago
#4
@
7 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
@
7 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.php
located inwp-content/themes/wptv2
, replace:with:
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