Skip to content

Commit 6cc175c

Browse files
authored
Fix HTML/CSS warning for palette group detail (bokeh#14021)
1 parent 9b83ee5 commit 6cc175c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/bokeh/server/views/app_index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="main-menu">
4040

4141
<a class="navbar-brand" href="//bokeh.org" id="logo">
42-
<img src="https://static.bokeh.org/logos/logotype.svg" height="30" width="110" />
42+
<img src="https://static.bokeh.org/logos/logotype.svg" alt="Logo" height="30" width="110" />
4343
</a>
4444

4545
<button class="navbar-toggler ml-auto hidden-sm-up float-xs-left" type="button" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">

src/bokeh/sphinxext/_templates/palette_group_detail.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
{% for number in numbers %}
88
<tr>
99

10-
<td height='20px' width='30px'> {{ number }} </td>
10+
<td style="height: 20px; width: 30px;"> {{ number }} </td>
1111

1212
{% for color in palettes[number] %}
13-
<td height="20px" width="20px" style="background-color: {{ color }};border: #444444 thin solid;"/>
13+
<td style="height: 20px; width: 20px; background-color: {{ color }}; border: #444444 thin solid;"></td>
1414
{% endfor %}
1515

1616
</tr>

0 commit comments

Comments
 (0)