Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm-quarry/values.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
12 changes: 12 additions & 0 deletions quarry/web/static/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion quarry/web/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<body>
{% if config['MAINTENANCE_MSG'] %}
<div class="alert alert-warning maintenance-msg">
<div class="maintenance-msg">
<p>{{ config['MAINTENANCE_MSG'] | safe }}</p>
</div>
{% endif %}
Expand Down