File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ Changelog for Isso
9
9
This change necessitates adjusting custom CSS files to the new names.
10
10
- Drop support for outdated Python version 3.5
11
11
(#808, l33tname)
12
+ - Fix avatar sizing, limit default gravatar images to 55px (#831, l33tname)
13
+ In case of a custom gravatar URL, the ``&s=55 `` size parameter will have
14
+ to be added, see `Gravatar: Image requests `_.
15
+
16
+ .. _Gravatar : Image requests: http://en.gravatar.com/site/implement/images/
12
17
13
18
0.12.6 (2022-03-06)
14
19
-------------------
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ gravatar
107
107
108
108
gravatar-url
109
109
Url for gravatar images. The "{}" is where the email hash will be placed.
110
- Defaults to "https://www.gravatar.com/avatar/{}?d=identicon"
110
+ Defaults to "https://www.gravatar.com/avatar/{}?d=identicon&s=55 "
111
111
112
112
latest-enabled
113
113
If True it will enable the ``/latest `` endpoint. Optional, defaults
Original file line number Diff line number Diff line change 47
47
.isso-comment > .isso-avatar {
48
48
display : block;
49
49
float : left;
50
- width : 7% ;
51
50
margin : 3px 15px 0 0 ;
52
51
}
53
52
.isso-comment > .isso-avatar > svg {
Original file line number Diff line number Diff line change @@ -57,7 +57,9 @@ log-file =
57
57
gravatar = false
58
58
59
59
# default url for gravatar. {} is where the hash will be placed
60
- gravatar-url = https://www.gravatar.com/avatar/{}?d =identicon
60
+ # `s=55` results in height and width of 55px.
61
+ # for other options, see http://en.gravatar.com/site/implement/images/
62
+ gravatar-url = https://www.gravatar.com/avatar/{}?d =identicon&s =55
61
63
62
64
# enable the "/latest" endpoint, that serves comment for multiple posts (not
63
65
# needing to previously know the posts URIs)
You can’t perform that action at this time.
0 commit comments