my17560 / dokuwiki-template-readthedokus

"Read the Docs" flavored DokuWiki template
MIT License
13 stars 10 forks source link

Bookcreator plugin box misaligned with Title #66

Closed eduardomozart closed 1 year ago

eduardomozart commented 1 year ago

Hello, When using the BookCreator plugin to export multiple DokuWiki pages to ODT/PDF, it creates a new option on Page Toolbox section to add pages to the book. It shows the link to go to the bookcreator page aside at the DokuWiki page title, but it's CSS style seems misaligned on Read the Dokus template, as can be seen below:

image

eduardomozart commented 1 year ago

It can be fixed with the following CSS code:

/* Plugin Support (Bookcreator Plugin) */

div.bookcreator__bookbar {
    min-height: 75px;
    width: auto !important;
}

image

my17560 commented 1 year ago

I've fixed it and committed it to the repo. Could you try?

eduardomozart commented 1 year ago

I can confirm that your last commit fixed the issue. Thank you!