DEV: Minor changes to `/theme-qunit` landing page (#13032)
This commit is contained in:
parent
cf6b823a2d
commit
033a1fb2af
|
@ -32,10 +32,6 @@
|
||||||
html {
|
html {
|
||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
}
|
}
|
||||||
a {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
<%- end %>
|
<%- end %>
|
||||||
</head>
|
</head>
|
||||||
|
@ -44,9 +40,14 @@
|
||||||
<div id="qunit"></div>
|
<div id="qunit"></div>
|
||||||
<div id="qunit-fixture"></div>
|
<div id="qunit-fixture"></div>
|
||||||
<%- else %>
|
<%- else %>
|
||||||
<h3>Select a theme/component:</h3>
|
<h2>Theme QUnit Test Runner</h2>
|
||||||
<%- @suggested_themes.each do |(id, name)| %>
|
<%- if @suggested_themes.size == 0 %>
|
||||||
<%= link_to name, theme_qunit_url(id: id) %>
|
<p>Cannot find any theme tests.</p>
|
||||||
|
<%- else %>
|
||||||
|
<h3>Select a theme/component: </h3>
|
||||||
|
<%- @suggested_themes.each do |(id, name)| %>
|
||||||
|
<h4><%= link_to name, theme_qunit_url(id: id) %></h4>
|
||||||
|
<%- end %>
|
||||||
<%- end %>
|
<%- end %>
|
||||||
<%- end %>
|
<%- end %>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue