File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
pytest_mpl/summary/templates Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 88 integrity ="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3 " crossorigin ="anonymous ">
99 < title > {{ results.title }}</ title >
1010</ head >
11- < body class ="{{ results.classes | join(' ') }} " id ="results ">
11+ < body {% if results.classes | length %} class ="{{ results.classes | join(' ') }} "{% endif %} id ="results ">
1212{% include 'navbar.html' %}
1313< div class ="album bg-light ">
1414 < div class ="container-fluid ">
1515 < div id ="noResultsAlert "> </ div >
16- < div class ="row list ">
16+ < div class ="row list " id =" resultslist " style =" display:none " >
1717 {% filter indent(width=12) -%}
1818 {% include 'result.html' %}
1919 {%- endfilter %}
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ if (window.location.search.length > 0) {
3232} else { // If no parameters, apply default but don't update the URL
3333 resultsList . sort ( 'status-sort' , { order : "desc" } ) ;
3434}
35+ // Show page after initial filtering to prevent flashing
36+ document . getElementById ( 'resultslist' ) . style . display = null ;
3537
3638// Show a message if no tests match current filters
3739var alertPlaceholder = document . getElementById ( 'noResultsAlert' ) ;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ div.result div.status-badge button.btn-warning img {
4242 filter : brightness (0 );
4343}
4444div .mpl-images {
45- height : 1000 px ;
45+ height : auto ;
4646}
4747div .hover-image {
4848 position : relative;
You can’t perform that action at this time.
0 commit comments