diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-01-10 16:13:21 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-01-10 16:13:21 +0100 |
commit | 0ec535da4fb00f506dd4ef6ad9323326d19b1575 (patch) | |
tree | 9585cbdd5c0274b80811d2842014f78fb59e3ea9 | |
parent | cd50c0849269635f2a20b2bf67750344cee4d5f5 (diff) | |
download | Ishtar-0ec535da4fb00f506dd4ef6ad9323326d19b1575.tar.bz2 Ishtar-0ec535da4fb00f506dd4ef6ad9323326d19b1575.zip |
Operation window: fix display of numeric id (refs #1606)
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_operation.html | 4 | ||||
-rw-r--r-- | ishtar_common/static/media/style.css | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html index 945b3f4e5..e1846c8e2 100644 --- a/archaeological_operations/templates/ishtar/sheet_operation.html +++ b/archaeological_operations/templates/ishtar/sheet_operation.html @@ -27,8 +27,8 @@ <h3>{% trans "General"%}</h3> {% if item.common_name %}<p><label>{%trans "Name:"%}</label> <span class='value'>{{ item.common_name }}</span></p>{% endif %} -<p><label>{%trans "Year:"%}</label> <span class='value'>{{ item.year }}</span></p> -{% if item.operation.operation_code %}<p><label>{%trans "Numerical reference:"%}</label> <span class='value'>{{ item.operation_code }}</span></p>{% endif %} +<p><label>{%trans "Year:"%}</label> <span class='value strong'>{{ item.year }}</span></p> +{% if item.operation_code %}<p><label>{%trans "Numerical reference:"%}</label> <span class='value strong'>{{ item.operation_code }}</span></p>{% endif %} {% if item.code_patriarche %}<p><label>{%trans "Patriarche OA code:"%}</label> <span class='value'>{{ item.code_patriarche }}</span></p>{%else%} <p class='alert'>{%trans "Patriarche OA code not yet recorded!"%}</p>{%endif%} diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index 205afe867..e9f1a8bab 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -592,6 +592,14 @@ table.confirm tr.spacer td:last-child{ width:465px; } +.strong{ + font-weight:bold; +} + +#window span.strong{ + font-size:1.1em; +} + #window p{ margin:0.3em; } |