diff --git a/bookwyrm/static/css/format.css b/bookwyrm/static/css/format.css index ccd7277de..a01aff827 100644 --- a/bookwyrm/static/css/format.css +++ b/bookwyrm/static/css/format.css @@ -25,6 +25,16 @@ html { min-width: 75% !important; } +/* --- "disabled" for non-buttons --- */ +.is-disabled { + background-color: #dbdbdb; + border-color: #dbdbdb; + box-shadow: none; + color: #7a7a7a; + opacity: 0.5; + cursor: not-allowed; +} + /* --- SHELVING --- */ /** @todo Replace icons with SVG symbols. diff --git a/bookwyrm/templates/snippets/pagination.html b/bookwyrm/templates/snippets/pagination.html index 252be29e3..3b33ca628 100644 --- a/bookwyrm/templates/snippets/pagination.html +++ b/bookwyrm/templates/snippets/pagination.html @@ -1,12 +1,26 @@ {% load i18n %}