Skip to content

Commit 19393e0

Browse files
authored
fix(reporter): minor UI fixes and improvements (#8153)
1 parent 008f07a commit 19393e0

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

packages/reporter/src/agents/agents.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Agents = observer(({ model }: AgentsProps) => (
4545
<li className='hook-item'>
4646
<Collapsible
4747
header={`Spies / Stubs (${model.agents.length})`}
48-
headerClass='hook-name'
48+
headerClass='hook-header'
4949
contentClass='instrument-content'
5050
>
5151
<table>

packages/reporter/src/commands/commands.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
padding: 4px 0;
4141

4242
&:focus {
43-
outline: 1px dotted #6c6c6c;
43+
outline: none;
4444
}
4545

4646
> .collapsible-header-inner:focus {

packages/reporter/src/routes/routes.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const Routes = observer(({ model }: RoutesProps) => (
5555
<li className='hook-item'>
5656
<Collapsible
5757
header={`Routes (${model.routes.length})`}
58-
headerClass='hook-name'
58+
headerClass='hook-header'
5959
contentClass='instrument-content'
6060
>
6161
<table>

packages/reporter/src/runnables/runnables.scss

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
&.runnable-pending > div > .runnable-wrapper,
112112
&.runnable-pending > div > .runnable-instruments {
113113
border-left: 5px solid lighten($pending, 25%);
114+
padding-bottom: 0;
114115
}
115116

116117
&.runnable-passed > div > .runnable-wrapper,

0 commit comments

Comments
 (0)