File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -226,12 +226,13 @@ function createSuitesTagsButton(setSuiteEnabled) {
226
226
227
227
function createUIForRun ( ) {
228
228
const stepTestButton = document . createElement ( "button" ) ;
229
- stepTestButton . textContent = "Step Test \u23EF" ;
229
+ stepTestButton . className = "step-button" ;
230
+ stepTestButton . innerHTML = "Step Test<span>\u23EF</span>" ;
230
231
stepTestButton . onclick = ( event ) => {
231
232
globalThis . benchmarkClient . step ( ) ;
232
233
} ;
233
234
const startTestButton = document . createElement ( "button" ) ;
234
- startTestButton . textContent = "Start Test \u23F5" ;
235
+ startTestButton . innerHTML = "Start Test<span> \u23F5</span> " ;
235
236
startTestButton . onclick = ( event ) => {
236
237
globalThis . benchmarkClient . start ( ) ;
237
238
} ;
Original file line number Diff line number Diff line change @@ -287,15 +287,28 @@ button,
287
287
}
288
288
289
289
.developer-mode-content button {
290
+ font-size : 16px ;
290
291
background : white;
291
292
flex : auto;
292
293
padding : 4px ;
293
294
appearance : button;
294
295
border : 2px solid rgba (255 , 255 , 255 , 0.5 );
295
296
border-radius : 10px ;
296
297
}
298
+
299
+ .developer-mode-content button span {
300
+ padding-left : 10px ;
301
+ font-size : 1.5em ;
302
+ line-height : 10px ;
303
+ position : relative;
304
+ top : 2px ;
305
+ }
306
+
297
307
.developer-mode-content .tag {
298
308
border-radius : 100vh ;
309
+ }
310
+
311
+ .developer-mode-content .step-button {
299
312
color : white;
300
313
background : rgba (255 , 255 , 255 , 0.1 );
301
314
}
@@ -518,6 +531,8 @@ section#details .non-standard-params {
518
531
display : none;
519
532
text-align : center;
520
533
margin-bottom : 2em ;
534
+ /* Increase contrast a bit */
535
+ filter : brightness (1.5 );
521
536
}
522
537
523
538
section # details .non-standard-params h2 {
@@ -547,6 +562,9 @@ section#details .non-standard-params h2 {
547
562
# non-standard-params-table tbody td {
548
563
padding : 0.1em 0.3em ;
549
564
}
565
+ # non-standard-params-table tbody td : nth-child (2 ) {
566
+ color : var (--highlight );
567
+ }
550
568
551
569
section # details .all-metric-results {
552
570
flex : auto;
You can’t perform that action at this time.
0 commit comments