summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/v2.css2
-rw-r--r--lib/VNWeb/Producers/Page.pm2
-rw-r--r--lib/VNWeb/Releases/Page.pm2
-rw-r--r--lib/VNWeb/Staff/Page.pm2
-rw-r--r--lib/VNWeb/TT/TagPage.pm2
-rw-r--r--lib/VNWeb/TT/TraitPage.pm2
6 files changed, 6 insertions, 6 deletions
diff --git a/css/v2.css b/css/v2.css
index 6deac78d..8db1fae4 100644
--- a/css/v2.css
+++ b/css/v2.css
@@ -117,7 +117,7 @@ b.grayedout { font-weight: normal }
i.grayedout { font-style: normal }
.underline { text-decoration: underline }
#maincontent h2 b { font: 13px "Tahoma", "Arial", sans-serif; font-weight: normal; }
-p.description { margin: 10px 100px!important; }
+p.description, div.description { margin: 10px 100px!important; }
b.done { font-weight: normal; color: $statok }
b.todo { font-weight: normal; color: $statnok }
b.neutral { font-weight: normal }
diff --git a/lib/VNWeb/Producers/Page.pm b/lib/VNWeb/Producers/Page.pm
index 5fe9a57a..128b1ad7 100644
--- a/lib/VNWeb/Producers/Page.pm
+++ b/lib/VNWeb/Producers/Page.pm
@@ -59,7 +59,7 @@ sub info_ {
}, grep $rel{$_}, keys %PRODUCER_RELATION;
} if $p->{relations}->@*;
- p_ class => 'description', sub { lit_ bb_format $p->{desc} } if length $p->{desc};
+ div_ class => 'description', sub { lit_ bb_format $p->{desc} } if length $p->{desc};
}
diff --git a/lib/VNWeb/Releases/Page.pm b/lib/VNWeb/Releases/Page.pm
index 0c771a71..936829e0 100644
--- a/lib/VNWeb/Releases/Page.pm
+++ b/lib/VNWeb/Releases/Page.pm
@@ -222,7 +222,7 @@ TUWF::get qr{/$RE{rrev}} => sub {
h1_ sub { txt_ $r->{title}; debug_ $r };
h2_ class => 'alttitle', lang_attr($r->{lang}), $r->{original} if length $r->{original};
_infotable_ $r;
- p_ class => 'description', sub { lit_ bb_format $r->{notes} } if $r->{notes};
+ div_ class => 'description', sub { lit_ bb_format $r->{notes} } if $r->{notes};
};
};
};
diff --git a/lib/VNWeb/Staff/Page.pm b/lib/VNWeb/Staff/Page.pm
index c8665eaf..84962044 100644
--- a/lib/VNWeb/Staff/Page.pm
+++ b/lib/VNWeb/Staff/Page.pm
@@ -180,7 +180,7 @@ TUWF::get qr{/$RE{srev}} => sub {
h1_ sub { txt_ $main->{name}; debug_ $s };
h2_ class => 'alttitle', lang => $s->{lang}, $main->{original} if $main->{original};
_infotable_ $main, $s;
- p_ class => 'description', sub { lit_ bb_format $s->{desc} };
+ div_ class => 'description', sub { lit_ bb_format $s->{desc} };
};
_roles_ $s;
diff --git a/lib/VNWeb/TT/TagPage.pm b/lib/VNWeb/TT/TagPage.pm
index 9da7a996..b0d97e69 100644
--- a/lib/VNWeb/TT/TagPage.pm
+++ b/lib/VNWeb/TT/TagPage.pm
@@ -34,7 +34,7 @@ sub infobox_ {
parents_ g => $t;
- p_ class => 'description', sub {
+ div_ class => 'description', sub {
lit_ bb_format $t->{description};
} if $t->{description};
diff --git a/lib/VNWeb/TT/TraitPage.pm b/lib/VNWeb/TT/TraitPage.pm
index 85c2c15e..8679ed91 100644
--- a/lib/VNWeb/TT/TraitPage.pm
+++ b/lib/VNWeb/TT/TraitPage.pm
@@ -34,7 +34,7 @@ sub infobox_ {
parents_ i => $t;
- p_ class => 'description', sub {
+ div_ class => 'description', sub {
lit_ bb_format $t->{description};
} if $t->{description};