Make WordPress Core

Opened 6 years ago

Closed 6 years ago

Last modified 5 years ago

#44836 closed defect (bug) (fixed)

Uploaded plugin installation page: There is an extra <p> tag messing with a link

Reported by: seedsca's profile seedsca Owned by: pento's profile pento
Milestone: 5.2 Priority: normal
Severity: minor Version: 4.9.8
Component: Upload Keywords: good-first-bug has-patch commit
Focuses: ui, administration Cc:

Description

update.php?action=upload-plugin shows the Activate Plugin button and Return to Plugin Installer link inside the same <p> tag.
This makes the link pop up when the button is active.

If they were both on their own <p> tags or the <p> tag wrapping them was removed, this would not happen.

I could not find where the <p> tag was added or I would have supplied a patch. Any guidance would be appreciated.

Attachments (6)

44836.diff (417 bytes) - added by pratikthink 6 years ago.
Possible fix
4836.2.diff (383 bytes) - added by seedsca 6 years ago.
Activate Plugin button - regular.jpg (8.6 KB) - added by seedsca 6 years ago.
Plugin activate button on regular state. Link looks normal.
Activate Plugin button - active state.jpg (8.8 KB) - added by seedsca 6 years ago.
Plugin activate button on active state. Link moved up by vertical-align: top.
44836.2.diff (375 bytes) - added by seedsca 6 years ago.
Correctly renamed the diff file and removed fixed the path inside by removing the /src/ directory. Now using: diff --git a/wp-includes/css/buttons.css b/wp-includes/css/buttons.css
44836.3.diff (366 bytes) - added by seedsca 6 years ago.
Seems I forgot to fully remove the /src/ directory from the paths of the diff file. Sorry for all the noice... This is the one :)

Download all attachments as: .zip

Change History (31)

#1 @mukesh27
6 years ago

  • Component changed from General to Upload
  • Keywords good-first-bug needs-screenshots added

Hi @seedsca , welcome to WordPress Trac!

Thanks for the report, Can you please add steps to generate above issue and if possible add screenshot so we can understood it well.

#2 @seedsca
6 years ago

Sure thing!

In the admin page, go to Plugins > Add New > Upload Plugin.
Upload a plugin file and install.
You will then be taken to yoursite.com/wp-admin/update.php?action=upload-plugin

If you click on the Activate Plugin button:

Plugin activate button on regular state. Link looks normal.

You will notice the link to the right jumps up:

Plugin activate button on active state. Link moved up by vertical-align: top.

Hope that helps and again, I'd love to do this myself, but I couldn't fine where the paragraph tag gets added. :)

Last edited 6 years ago by seedsca (previous) (diff)

@pratikthink
6 years ago

Possible fix

#3 @pratikthink
6 years ago

  • Keywords needs-testing added

@seedsca
6 years ago

#4 @seedsca
6 years ago

  • Keywords has-patch added; needs-patch removed

/wp-includes/css/buttons.css line 267 has vertical-align:top set.
This does not seem necessary and it's messing with alignment.

I checked all 28 instances of .button-primary and found no changes at all.

Seems safe.

@seedsca
6 years ago

Plugin activate button on regular state. Link looks normal.

@seedsca
6 years ago

Plugin activate button on active state. Link moved up by vertical-align: top.

#5 @seedsca
6 years ago

  • Keywords needs-screenshots removed

#6 @mukesh27
6 years ago

@seedsca 4836.2.diff is working fine for me. Let's wait for core developer response on above solution.

#7 @ianbelanger
6 years ago

  • Keywords needs-testing removed

Hi @seedsca and @pratikthink,

Thanks for your patches. I tested 4836.2.diff, which should probably be named 44836.2.diff, and it seems to work great as a solution to the "jumping" link issue. I didn't see any adverse changes to any other buttons that use the .button-primary class.

This looks good to merge in core.

#8 @SergeyBiryukov
6 years ago

  • Milestone changed from Awaiting Review to 5.0
  • Owner set to SergeyBiryukov
  • Status changed from new to reviewing

#9 follow-up: @seedsca
6 years ago

@ianbelanger and @SergeyBiryukov Thanks!
Should I change the diff file's name? Or are we all set?
Happy to help the community that's helped me so much :)

#10 @ianbelanger
6 years ago

I don't think that there's any need to change the name of the diff @seedsca, unless Sergey says differently.

#11 in reply to: ↑ 9 @SergeyBiryukov
6 years ago

Replying to seedsca:

Should I change the diff file's name? Or are we all set?

Thanks for the ticket and the patch :) It's generally helpful if the name of the diff is the same as the ticket number, but ultimately it doesn't matter that much, the patch is fine as is.

#12 @pento
6 years ago

  • Milestone changed from 5.0 to 5.1

This ticket was mentioned in Slack in #core-media by joemcgill. View the logs.


6 years ago

#14 @joemcgill
6 years ago

  • Milestone changed from 5.1 to Future Release

Punting this to a future release. Unless @SergeyBiryukov is still planning to review this, we should remove the assignment so someone else will pick it up.

@seedsca
6 years ago

Correctly renamed the diff file and removed fixed the path inside by removing the /src/ directory. Now using: diff --git a/wp-includes/css/buttons.css b/wp-includes/css/buttons.css

@seedsca
6 years ago

Seems I forgot to fully remove the /src/ directory from the paths of the diff file. Sorry for all the noice... This is the one :)

#15 @seedsca
6 years ago

@SergeyBiryukov anything else to do with this little patch? Seems simple enough.

#16 @ianbelanger
6 years ago

#46416 was marked as a duplicate.

#17 @ianbelanger
6 years ago

  • Keywords commit added

I retested the latest patch against trunk and it still applies just fine. I think this is all set to commit

This ticket was mentioned in Slack in #core by seedsca. View the logs.


6 years ago

#19 @SergeyBiryukov
6 years ago

  • Milestone changed from Future Release to 5.2

#20 @mukesh27
6 years ago

I tested patch 44836.3.diff and it working fine in trunk version.

In current situation if we remove vertical-align: top; from below buttons.css then it will resolve the alignment issue and that active button state use .wp-core-ui p .button { vertical-align: baseline; } child css.

.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:hover, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary:active {
    background: #0073aa;
    border-color: #006799;
    box-shadow: inset 0 2px 0 #006799;
    /*vertical-align: top;*/
}

Class button-primary is used in whole core buttons so can we replace vertical-align: top; to vertical-align: baseline; in above css?

@ianbelanger can you please check this.

This ticket was mentioned in Slack in #core-media by joemcgill. View the logs.


6 years ago

#22 @ianbelanger
6 years ago

Hi @mukesh27,

Changing vertical-align: top; to vertical-align: baseline; for these selectors:

.wp-core-ui .button-primary.active,
.wp-core-ui .button-primary.active:hover,
.wp-core-ui .button-primary.active:focus,
.wp-core-ui .button-primary:active

Would achieve the same result as simply removing vertical-align: top; from .wp-core-ui p .button, but I think that it is an unnecessary change, since there doesn't seem to be anywhere else in core that has this bug. I vote for leaving the patch as is.

#23 @pento
6 years ago

  • Owner changed from SergeyBiryukov to pento
  • Status changed from reviewing to accepted

#24 @pento
6 years ago

  • Resolution set to fixed
  • Status changed from accepted to closed

In 45150:

UI: Remove vertical alignment from active primary buttons.

This caused the post-plugin installation actions to jump around when the "Activate Plugin" primary button became active.

Props seedsca, pratikthink, ianbelanger, mukesh27.
Fixes #44836.

This ticket was mentioned in Slack in #core by seedsca. View the logs.


5 years ago

Note: See TracTickets for help on using tickets.