diff --git a/docs/contribute.rst b/docs/contribute.rst index b7c22c3..8a3886d 100644 --- a/docs/contribute.rst +++ b/docs/contribute.rst @@ -61,12 +61,3 @@ definitely need help: - close threads and remove threads completely - edit comments - -* `Pagination `_ – while Isso is - generally a lot faster than Disqus, after approx. 50 comments you will - notice roughly 1 second rendering time. It would be nice if the client - fetches only N comments and continues when the user scrolls down (or click - on a button to fetch more). - -* CSS improvements. For some websites, the Isso integration just looks ugly. - If you can improve it, please do it :) diff --git a/isso/css/isso.css b/isso/css/isso.css index 46edbcd..380fd90 100644 --- a/isso/css/isso.css +++ b/isso/css/isso.css @@ -172,7 +172,7 @@ .isso-postbox > .form-wrapper > .auth-section .input-wrapper { display: inline-block; position: relative; - max-width: 30%; + max-width: 25%; margin: 0; } .isso-postbox > .form-wrapper > .auth-section .input-wrapper input { @@ -185,9 +185,11 @@ } .isso-postbox > .form-wrapper > .auth-section .input-wrapper:first-child input { border-radius: 3px 0 0 3px; + border-right: 0; } .isso-postbox > .form-wrapper > .auth-section .input-wrapper:nth-last-child(2) input { border-radius: 0 3px 3px 0; + border-left: 0; } .isso-postbox > .form-wrapper > .auth-section .post-action { display: inline-block; @@ -225,4 +227,4 @@ float: none; text-align: right; } -} \ No newline at end of file +}