jekyll / minima

Minima is a one-size-fits-all Jekyll theme for writers.

Home Page:https://jekyll.github.io/minima/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pager-edge problem

nxjosephofficial opened this issue · comments

Hello. I don't understand why it is looking like this.
2022-10-16_12-43
I'm using minima 2.5.1, jekyll-paginate 1.1.0 and jekyll 4.2.2

@nxjosephofficial The issue you're referring to is more related to Minima than the pagination plugin. Therefore, I have transferred the issue to Minima repository.

For further clarification, you're not using Minima 2.5, but a "repository version" of the theme using the jekyll-remote-theme plugin.

To help understand what exactly is your issue, I would need more details from you:

  • Is it the misalignment of numbers?
  • Is it the dotted square box to the left end?
  • Is it the sharp edge of the left box but rounded edge of the right box?

The issue you're referring to is more related to Minima than the pagination plugin. Therefore, I have transferred the issue to Minima repository.

Okay, thank you.

you're not using Minima 2.5, but a "repository version" of the theme using the jekyll-remote-theme plugin.

These are my settings.

minima:
  date_format: "%b %-d, %Y"
  skin: dark

# Build settings
theme: minima

paginate: 5

plugins:
 - jekyll-feed
 - jekyll-seo-tag
 - jekyll-sitemap
 - jekyll-paginate

Is it the dotted square box to the left end?

Yes, definitely. I didn't understand why dotted square box is appearing. I don't want it to show up.

We haven't made an official release of the theme containing skins, so you're still using the "repository version".
Regardless, to solve your issue have the following at end of your stylesheet:

.pager-edge { display: none }

Do using official release instead of repository version matter to appearing of dotted square box?

I added it like this.

      &.pager-edge {
        color: $border-color-01;
        border: 1px dashed;
        display: none;

Now it looks like this.
2022-10-16_12-43

Do using official release instead of repository version matter to appearing of dotted square box?

Technically, the repository version is unstable and subject to change. The released v2.5.1 doesn't have extra styling for pager buttons.

Either ways, the issue is all CSS. You're free to make changes to suit your taste.