summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-07-30 13:03:13 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2018-07-30 13:03:13 +0200
commit554e0a2cda3fb3615c44fb362c92d8e84918e0a2 (patch)
treeaf181dd40196ce84d5d80a5d3d8ee65479683047
parentb3c45886666282fe6e98ffc584ed35cc431b6223 (diff)
downloadbackoffice-554e0a2cda3fb3615c44fb362c92d8e84918e0a2.tar.gz
backoffice-554e0a2cda3fb3615c44fb362c92d8e84918e0a2.tar.bz2
backoffice-554e0a2cda3fb3615c44fb362c92d8e84918e0a2.zip
Transparent background for the instances list.
-rw-r--r--talerbackoffice/backoffice/static/backoffice.css6
-rw-r--r--talerbackoffice/backoffice/templates/backoffice.html4
2 files changed, 7 insertions, 3 deletions
diff --git a/talerbackoffice/backoffice/static/backoffice.css b/talerbackoffice/backoffice/static/backoffice.css
index 45b7486..dea999e 100644
--- a/talerbackoffice/backoffice/static/backoffice.css
+++ b/talerbackoffice/backoffice/static/backoffice.css
@@ -1,6 +1,10 @@
+#instances {
+ border: 1px solid #ccc;
+ background: transparent;
+}
+
#choices {
float: left;
- margin-right: 40pt;
}
.overlay {
diff --git a/talerbackoffice/backoffice/templates/backoffice.html b/talerbackoffice/backoffice/templates/backoffice.html
index 9e6b2b6..3ca3bbf 100644
--- a/talerbackoffice/backoffice/templates/backoffice.html
+++ b/talerbackoffice/backoffice/templates/backoffice.html
@@ -11,8 +11,8 @@
<br />
<div>
- <span style="margin-right: 10px;">Current instance: </span>
- <select id="instance" onchange="change_instance();">
+ <span style="margin-right: 10px;">Current instance:</span>
+ <select id="instances" onchange="change_instance();">
{% for instance in instances %}
<option value="{{ instance }}">{{ instance }}</option>
{% endfor %}