Skip to content

Commit

Permalink
fix(reporter): minor UI fixes and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
panzarino committed Aug 1, 2020
1 parent 4977450 commit 87cb89a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/reporter/src/agents/agents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Agents = observer(({ model }: AgentsProps) => (
<li className='hook-item'>
<Collapsible
header={`Spies / Stubs (${model.agents.length})`}
headerClass='hook-name'
headerClass='hook-header'
contentClass='instrument-content'
>
<table>
Expand Down
2 changes: 1 addition & 1 deletion packages/reporter/src/commands/commands.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
padding: 4px 0;

&:focus {
outline: 1px dotted #6c6c6c;
outline: none;
}

> .collapsible-header-inner:focus {
Expand Down
2 changes: 1 addition & 1 deletion packages/reporter/src/routes/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Routes = observer(({ model }: RoutesProps) => (
<li className='hook-item'>
<Collapsible
header={`Routes (${model.routes.length})`}
headerClass='hook-name'
headerClass='hook-header'
contentClass='instrument-content'
>
<table>
Expand Down
1 change: 1 addition & 0 deletions packages/reporter/src/runnables/runnables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
&.runnable-pending > div > .runnable-wrapper,
&.runnable-pending > div > .runnable-instruments {
border-left: 5px solid lighten($pending, 25%);
padding-bottom: 0;
}

&.runnable-passed > div > .runnable-wrapper,
Expand Down

0 comments on commit 87cb89a

Please sign in to comment.