Small tidy ups.

This commit is contained in:
voussoir 2022-03-15 13:48:07 -07:00
parent 7d351a5e87
commit 93e03656ca
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB
4 changed files with 9 additions and 11 deletions

View file

@ -20,7 +20,6 @@ def catch_etiquette_exception(function):
status = 404
else:
status = 400
response = exc.jsonify()
response = flasktools.json_response(response, status=status)
response = flasktools.json_response(exc.jsonify(), status=status)
flask.abort(response)
return wrapped

View file

@ -47,6 +47,7 @@ def etiquette_flask_launch(
)
if localhost_only:
log.info('Setting localhost_only=True')
site.localhost_only = True
try:

View file

@ -4,7 +4,8 @@ not specific to one project.
*/
/*
These properties are used by javascript functions.
These properties are used by javascript functions in common.js.
See common.is_narrow_mode, is_wide_mode.
getComputedStyle(document.documentElement).getPropertyValue("--narrow").trim() === "1"
*/
@media screen and (min-width: 800px)
@ -22,11 +23,6 @@ getComputedStyle(document.documentElement).getPropertyValue("--narrow").trim() =
}
}
.hidden
{
display: none !important;
}
html
{
height: 100vh;
@ -83,6 +79,11 @@ pre
white-space: pre-line;
}
.hidden
{
display: none !important;
}
.bold
{
font-weight: bold;

View file

@ -44,9 +44,6 @@ body > .nice_link
height: 40px;
background-color: var(--color_transparency);
}
.nice_link
{
}
.nice_link:hover
{
background-color: var(--color_secondary);