Skip to content

Commit 85b453e

Browse files
committed
fix c-debug-table styling issues
1 parent 7863b22 commit 85b453e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

templates/element/routes_panel.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
<thead>
5353
<tr>
5454
<th><?= __d('debug_kit', 'Route name') ?></th>
55-
<th class="c-debug_table u-text-left"><?= __d('debug_kit', 'URI template') ?></th>
56-
<th class="c-debug-table u-text-left"><?= __d('debug_kit', 'Defaults') ?></th>
55+
<th class="u-text-left"><?= __d('debug_kit', 'URI template') ?></th>
56+
<th class="u-text-left"><?= __d('debug_kit', 'Defaults') ?></th>
5757
</tr>
5858
</thead>
5959
<tbody>
@@ -86,8 +86,8 @@
8686
?>
8787
<tr class="<?= $class ?>">
8888
<td><?= h(Hash::get($route->options, '_name', $route->getName())) ?></td>
89-
<td class="c-debug-table u-text-left"><?= h($route->template) ?></td>
90-
<td class="c-debug-table u-text-left"><pre><?= json_encode($route->defaults, JSON_PRETTY_PRINT) ?></pre></td>
89+
<td class="u-text-left"><?= h($route->template) ?></td>
90+
<td class="u-text-left"><pre><?= json_encode($route->defaults, JSON_PRETTY_PRINT) ?></pre></td>
9191
</tr>
9292
<?php endforeach; ?>
9393
</tbody>

webroot/css/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,8 @@ strong {
272272
word-break: break-word; /* Not standard for webkit */
273273
}
274274

275-
.c-debug-table th.left,
276-
.c-debug-table td.left {
275+
.c-debug-table th.u-text-left,
276+
.c-debug-table td.u-text-left {
277277
text-align: left;
278278
}
279279

0 commit comments

Comments
 (0)