diff --git a/helm-quarry/values.yaml b/helm-quarry/values.yaml index b65cab0..15350cb 100644 --- a/helm-quarry/values.yaml +++ b/helm-quarry/values.yaml @@ -1,6 +1,6 @@ web: repository: 'quay.io/wikimedia-quarry/quarry' - tag: pr-92 # web tag managed by github actions + tag: pr-94 # web tag managed by github actions resources: requests: memory: "300Mi" @@ -11,7 +11,7 @@ web: worker: repository: 'quay.io/wikimedia-quarry/quarry' - tag: pr-92 # worker tag managed by github actions + tag: pr-94 # worker tag managed by github actions resources: requests: memory: "400Mi" diff --git a/quarry/web/static/css/base.css b/quarry/web/static/css/base.css index 204eac2..1a13a96 100644 --- a/quarry/web/static/css/base.css +++ b/quarry/web/static/css/base.css @@ -34,6 +34,18 @@ margin-bottom: 0px; border-bottom-width: 0px; text-align: center; + padding: .5em; + background-color: #E8A02E; + color: black; +} + +.maintenance-msg p { + margin-bottom: 0; +} + +.maintenance-msg a { + color: #183490; + text-decoration: underline; } .flashes { diff --git a/quarry/web/templates/base.html b/quarry/web/templates/base.html index cadf28c..0a8462d 100644 --- a/quarry/web/templates/base.html +++ b/quarry/web/templates/base.html @@ -29,7 +29,7 @@ {% if config['MAINTENANCE_MSG'] %} -
+

{{ config['MAINTENANCE_MSG'] | safe }}

{% endif %}