Gelbooru

Notice: We are now selling NEW Gelbooru Merch~! Domestic shipping is free on all orders! Do you have an artist tag on Gelbooru? Let us know so we can properly credit you!

Ticket Information - ID: #816


ID:Category:SeverityReproducibilityDate SubmittedUpdated By:
0000816Feature Requestnormalalways09/05/15 04:44AMJerl
Reportersurveyork
Assigned to:geltas
Resolution:Open
View StatusPublic
Version:0.1.10
Target Version:N/A
Summary:default.css: Restore "div.sidebar li" marging to "0px 0px 0px 0px" instead of "0px 0px 1em 0px"
Description:In the last update to Gelbooru it seems that default.css changed "div.sidebar li" in line 1000 to:

[code]
998 div.sidebar li {
999 list-style-type: none;
1000 margin: 0px 0px 1em 0px;
1001 }
[/code]

Which gives a spacing of 1 line between lines in the left sidebar (tags, wiki list). This 1 line spacing was not present in the previous version. Besides, it makes pages with many tags unnecessarily long and difficult to navigate.

It is suggested to change the aforementioned code in default.css to:

[code]
998 div.sidebar li {
999 list-style-type: none;
1000 margin: 0px 0px 0px 0px;
1001 }
[/code]

in order to recover the interline spacing of the previous Gelbooru version.
Additional Info:
Jerl replied at 2015-09-05 13:04:20
This was discussed with lozer around the time he added it, and from what he told me, he does not have any plans to remove the extra line. Unfortunately it is there for good.