Fix tag cloud

This commit is contained in:
Kujiu 2020-06-05 00:39:00 +02:00
parent cf5b22e927
commit eeb29fe8a7
Signed by: kujiu
GPG key ID: ABBB2CAC6855599F
5 changed files with 23 additions and 11 deletions

View file

@ -2,6 +2,11 @@
Changes Changes
======= =======
1.0.7 (*2020-06-05*)
====================
- Fix size of tags
1.0.6 (*2020-06-03*) 1.0.6 (*2020-06-03*)
==================== ====================

View file

@ -27,7 +27,7 @@ with open("README.rst", "r") as fh:
setup( setup(
name="sphinx_nervproject_theme", name="sphinx_nervproject_theme",
version="1.0.6", version="1.0.7",
url="https://procrastinator.nerv-project.eu/nerv-project/communication/sphinx_nervproject_theme", url="https://procrastinator.nerv-project.eu/nerv-project/communication/sphinx_nervproject_theme",
license="EUPL 1.2", license="EUPL 1.2",
author="Kujiu", author="Kujiu",

View file

@ -5,7 +5,7 @@ from sphinx.environment.collectors import EnvironmentCollector
from sphinx import addnodes from sphinx import addnodes
from sphinx.util.osutil import relative_uri from sphinx.util.osutil import relative_uri
__version__ = (1, 0, 6) __version__ = (1, 0, 7)
class SimpleTocTreeCollector(EnvironmentCollector): class SimpleTocTreeCollector(EnvironmentCollector):

View file

@ -6,6 +6,7 @@ sidebars = util/searchbox.html, util/sidetoc.html
[options] [options]
external_links = external_links =
external_languages =
fathom = fathom =
isso = isso =
social = social =

View file

@ -920,12 +920,12 @@ img.align-right, figure.align-right {
ul.ablog-archive { ul.ablog-archive {
list-style: none; list-style: none;
overflow: auto; overflow: auto;
margin-left: 0px; margin-left: 0;
} }
ul.ablog-archive li { ul.ablog-archive li {
float: left; float: left;
margin-right: 5px; margin-right: 0.1em;
font-size: 0.9em; font-size: 0.9em;
} }
@ -947,14 +947,20 @@ ul.postlist-style-circle {
ul.ablog-cloud { ul.ablog-cloud {
list-style: none; list-style: none;
overflow: auto; display: flex;
flex-flow: row wrap;
justify-content: space-around;
} }
ul.ablog-cloud li { ul.ablog-cloud li {
float: left; float: left;
height: 20pt; margin: 0 0 0 0;
line-height: 18pt; padding: 0.005em 1em 0.005em 1em;
margin-right: 5px;
a {
padding: 0 0 0 0;
margin: 0 0 0 0;
}
} }
ul.ablog-cloud a, ul.ablog-cloud a:visited { ul.ablog-cloud a, ul.ablog-cloud a:visited {
@ -971,15 +977,15 @@ li.ablog-cloud-2 {
} }
li.ablog-cloud-3 { li.ablog-cloud-3 {
font-size: 11em !important; font-size: 1.1em !important;
} }
li.ablog-cloud-4 { li.ablog-cloud-4 {
font-size: 12.5em !important; font-size: 1.25em !important;
} }
li.ablog-cloud-5 { li.ablog-cloud-5 {
font-size: 14em !important; font-size: 1.4em !important;
} }
.nav-links summary { .nav-links summary {