File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 41
41
< li >
42
42
{%- if build.build_status != "in_progress" %}
43
43
< a href ="/crate/{{ metadata.name }}/{{ metadata.version }}/builds/{{ build.id }} " class ="release ">
44
+ {%- else -%}
45
+ < div class ="build-in-progress ">
44
46
{%- endif %}
45
47
< div class ="pure-g ">
46
48
< div class ="pure-u-1 pure-u-sm-1-24 build ">
78
80
</ div >
79
81
{%- if build.build_status != "in_progress" %}
80
82
</ a >
83
+ {%- else -%}
84
+ </ div >
81
85
{%- endif %}
82
86
</ li >
83
87
{%- endfor -%}
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ div.recent-releases-container {
280
280
background-color : var (--background-color );
281
281
}
282
282
283
- .release {
283
+ .release , .build-in-progress {
284
284
display : block ;
285
285
border-bottom : 1px solid var (--color-border );
286
286
padding : 0.4em $search-result-right-left-padding ;
@@ -297,11 +297,13 @@ div.recent-releases-container {
297
297
}
298
298
299
299
.release :hover ,
300
- a .release :focus {
300
+ a .release :focus ,
301
+ .build-in-progress :hover {
301
302
background-color : var (--color-background-code );
302
303
}
303
304
304
- li :last-of-type .release {
305
+ li :last-of-type .release ,
306
+ li :last-of-type .build-in-progress {
305
307
border-bottom : none ;
306
308
}
307
309
You can’t perform that action at this time.
0 commit comments