diff --git a/.gitignore b/.gitignore index 624ce100..e5582694 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ *.swp **/__pycache__ .local +/nginx/nginx.conf # VSCode /.vscode diff --git a/bookwyrm/static/css/bookwyrm.css b/bookwyrm/static/css/bookwyrm.css index 4f4d2efc..145bf439 100644 --- a/bookwyrm/static/css/bookwyrm.css +++ b/bookwyrm/static/css/bookwyrm.css @@ -117,6 +117,20 @@ input[type=file]::file-selector-button:hover { details .dropdown-menu { display: block !important; + +summary::marker { + content: none; +} + +.detail-pinned-button summary { + position: absolute; + right: 0; +} + +.detail-pinned-button form { + float: left; + width: -webkit-fill-available; + margin-top: 1em; } /** Shelving diff --git a/bookwyrm/templates/feed/feed.html b/bookwyrm/templates/feed/feed.html index 1a2488af..eda4c0c0 100644 --- a/bookwyrm/templates/feed/feed.html +++ b/bookwyrm/templates/feed/feed.html @@ -6,49 +6,54 @@