sindresorhus/refined-github

On milestones page, the bulk issue-update toolbar has incorrect padding that breaks vertical centering #3606

jonboiser posted onGitHub

<!-- Thanks for reporting a bug! â›° 1. Make sure the bug is caused by Refined GitHub. Try disabling the extension first. 2. Include a full URL where the bug appears. 3. Include a screenshot/gif Issues without a URL/screenshot will be closed -->

Here's an example of this kind of page https://github.com/learningequality/kolibri/milestone/60.

image

If you click any checkbox, the menu a the top right of this div will change the bulk-update menu, and as you can see in the screenshot, the menu of dropdowns is missing some padding.

I tried to fix this by adding this custom CSS (copying the selector from the DOM inspector)

#js-issues-toolbar > div.table-list-triage.js-issues-toolbar-triage > div {
    padding: 13px;
}

But this messes with the same menu on the main issues page:

Next screenshot is from https://github.com/learningequality/kolibri/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc (click any checkbox to see this; without the above custom CSS, you won't see this excessive padding).

image

So I added a second rule to override the first one

#js-issues-toolbar > div.table-list-triage.flex-auto.js-issues-toolbar-triage > div {
    padding: 0 !important;
}

And this combination of custom CSS seems to fix the layout issues for me.


Thanks for the detailed report!

This is due to https://github.com/sindresorhus/refined-github/blob/ee04d7feefbccd6d70f4153e512e27df70eadf72/source/refined-github.css#L26

The issue is that this rule was not supposed to change the vertical padding. It should just change padding-left and padding-right

posted by fregante over 4 years ago

Fund this Issue

$0.00
Funded

Pull requests