diff --git a/openlibrary/templates/type/edition/view.html b/openlibrary/templates/type/edition/view.html index 00698fce8b4..6d56f45eb3c 100644 --- a/openlibrary/templates/type/edition/view.html +++ b/openlibrary/templates/type/edition/view.html @@ -339,13 +339,13 @@


$if edition.first_sentence:
-

$_("First Sentence")

+

$_("First Sentence")

"$(edition.first_sentence)"

$if edition.description:
-

$_("Edition Description")

+

$_("Edition Description")

$:sanitize(format(edition.description)) @@ -360,7 +360,7 @@

$_("Edition Description")

$if edition.notes or edition.series or edition.volume or edition.genres or edition.other_titles or edition.copyright_date or edition.translation_of or edition.translated_from:
-

$_("Edition Notes") +

$_("Edition Notes")

$if edition.notes: $:format(edition.notes) @@ -403,7 +403,7 @@

$ contributors = edition.get('contributors', []) $if contributors:
-

$_("Contributors")

+

$_("Contributors")

$for c in contributors: $:display_value(c.role, c.name) diff --git a/static/css/components/work.less b/static/css/components/work.less index c301eeefcca..18f965bc0e5 100644 --- a/static/css/components/work.less +++ b/static/css/components/work.less @@ -29,11 +29,6 @@ // Center (editionAbout) div.editionAbout { margin-bottom: 20px; - h3 { - font-size: 14px; - margin: 0 0 0em; - } - p { margin: 1em 0; font-size: 13px; @@ -96,6 +91,11 @@ vertical-align: middle; font-size: .8em; } +h3.edition-header { + font-size: 14px; + margin: 0 0 0em; +} + h2.edition-byline { margin: 7px 2px 20px; }