Skip to content

Commit 3b609c7

Browse files
committed
use less ids in style
1 parent d08bc1c commit 3b609c7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

templates/bootstrap/assets/css/api.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ table.summaryTable th {
5858
text-align: left;
5959
}
6060

61-
#nav {
61+
.top-nav {
6262
padding: 3px;
6363
margin: 0 0 10px 0;
6464
border-top: 1px #BFCFFF solid;
6565
}
6666

67-
#classDescription {
67+
.classDescription {
6868
padding: 5px;
6969
margin: 10px 0 20px 0;
7070
border-bottom: 1px solid #BFCFFF;

templates/html/views/eventDetails.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
<?= $event->name ?>
3636
<span class="detail-header-tag small">
3737
event
38+
of type <?= $renderer->createTypeLink($event->types) ?>
3839
<?php if (!empty($event->since)): ?>
3940
(available since version <?= $event->since ?>)
4041
<?php endif; ?>

templates/html/views/type.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828
echo $type->name;
2929
?></h1>
30-
<div id="nav">
30+
<div class="top-nav">
3131
<a href="index.html">All Classes</a>
3232
<?php if (!($type instanceof InterfaceDoc) && !empty($type->properties)): ?>
3333
| <a href="#properties">Properties</a>
@@ -83,7 +83,7 @@
8383
<?php endif; ?>
8484
</table>
8585

86-
<div id="classDescription">
86+
<div class="class-description">
8787
<p><strong><?= ApiMarkdown::process($type->shortDescription, $type, true) ?></strong></p>
8888
<?= ApiMarkdown::process($type->description, $type) ?>
8989

0 commit comments

Comments
 (0)