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) {
226226
227227function createUIForRun ( ) {
228228 const stepTestButton = document . createElement ( "button" ) ;
229- stepTestButton . textContent = "Step Test \u23EF" ;
229+ stepTestButton . className = "step-button" ;
230+ stepTestButton . innerHTML = "Step Test<span>\u23EF</span>" ;
230231 stepTestButton . onclick = ( event ) => {
231232 globalThis . benchmarkClient . step ( ) ;
232233 } ;
233234 const startTestButton = document . createElement ( "button" ) ;
234- startTestButton . textContent = "Start Test \u23F5" ;
235+ startTestButton . innerHTML = "Start Test<span> \u23F5</span> " ;
235236 startTestButton . onclick = ( event ) => {
236237 globalThis . benchmarkClient . start ( ) ;
237238 } ;
Original file line number Diff line number Diff line change @@ -287,15 +287,28 @@ button,
287287}
288288
289289.developer-mode-content button {
290+ font-size : 16px ;
290291 background : white;
291292 flex : auto;
292293 padding : 4px ;
293294 appearance : button;
294295 border : 2px solid rgba (255 , 255 , 255 , 0.5 );
295296 border-radius : 10px ;
296297}
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+
297307.developer-mode-content .tag {
298308 border-radius : 100vh ;
309+ }
310+
311+ .developer-mode-content .step-button {
299312 color : white;
300313 background : rgba (255 , 255 , 255 , 0.1 );
301314}
@@ -518,6 +531,8 @@ section#details .non-standard-params {
518531 display : none;
519532 text-align : center;
520533 margin-bottom : 2em ;
534+ /* Increase contrast a bit */
535+ filter : brightness (1.5 );
521536}
522537
523538section # details .non-standard-params h2 {
@@ -547,6 +562,9 @@ section#details .non-standard-params h2 {
547562# non-standard-params-table tbody td {
548563 padding : 0.1em 0.3em ;
549564}
565+ # non-standard-params-table tbody td : nth-child (2 ) {
566+ color : var (--highlight );
567+ }
550568
551569section # details .all-metric-results {
552570 flex : auto;
You can’t perform that action at this time.
0 commit comments