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 @@

{{ tab.name }}

-
- -
+
+
+
+ +
+
-{# feed settings #} -
- - - {{ _("Feed settings") }} - - {% if settings_saved %} - {{ _("Saved!") }} - {% endif %} - -
- {% csrf_token %} + {# feed settings #} +
+ + + + {{ _("Feed settings") }} + + {% if settings_saved %} + {{ _("Saved!") }} + {% endif %} + + + {% csrf_token %} -
-
-
- - {% for name, value in feed_status_types_options %} - - {% endfor %} +
+
+
+ + {% for name, value in feed_status_types_options %} + + {% endfor %} +
-
-
- -
- -
+
+ +
+ +
+
{# announcements and system messages #} {% if not activities.number > 1 %} diff --git a/complete_bwdev.sh b/complete_bwdev.sh new file mode 100644 index 00000000..b9cd7420 --- /dev/null +++ b/complete_bwdev.sh @@ -0,0 +1,29 @@ +#/usr/bin/env bash +# for zsh, run: +# autoload bashcompinit +# bashcompinit +complete -W "up +service_ports_web +initdb +resetdb +makemigrations +migrate +bash +shell +dbshell +restart_celery +pytest +collectstatic +makemessages +compilemessages +update_locales +build +clean +black +populate_streams +populate_suggestions +generate_thumbnails +generate_preview_images +copy_media_to_s3 +set_cors_to_s3 +runweb" -o bashdefault -o default bw-dev