Skip to content

Commit

Permalink
chore(dep-graph): add accent on checkboxes (nrwl#11469)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcabanes authored Aug 5, 2022
1 parent dec9102 commit c521092
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dep-graph/client/src/app/sidebar/collapse-edges-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export const CollapseEdgesPanel = memo(
name="collapseEdges"
value="collapseEdges"
type="checkbox"
className="h-4 w-4 rounded border-slate-400 dark:border-slate-300"
className="h-4 w-4 accent-purple-500"
onChange={(event) => collapseEdgesChanged(event.target.checked)}
checked={collapseEdges}
></input>
/>
</div>
<div className="ml-3 text-sm">
<label
Expand Down
4 changes: 2 additions & 2 deletions dep-graph/client/src/app/sidebar/group-by-folder-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export const GroupByFolderPanel = memo(
name="displayOptions"
value="groupByFolder"
type="checkbox"
className="h-4 w-4 rounded border-slate-300 dark:border-slate-700"
className="accent-green-nx-base h-4 w-4"
onChange={(event) => groupByFolderChanged(event.target.checked)}
checked={groupByFolder}
></input>
/>
</div>
<div className="ml-3 text-sm">
<label
Expand Down
4 changes: 2 additions & 2 deletions dep-graph/client/src/app/sidebar/search-depth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ export const SearchDepth = memo(
name="depthFilter"
value="depthFilterActivated"
type="checkbox"
className="h-4 w-4 rounded border-slate-300 dark:text-slate-700"
className="accent-green-nx-base h-4 w-4"
checked={searchDepthEnabled}
onChange={(event) =>
searchDepthFilterEnabledChange(event.target.checked)
}
></input>
/>
</div>
<div className="ml-3 text-sm">
<label
Expand Down
4 changes: 2 additions & 2 deletions dep-graph/client/src/app/sidebar/text-filter-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ export function TextFilterPanel({
name="textFilterCheckbox"
type="checkbox"
value="includeInPath"
className="h-4 w-4 rounded border-slate-300 dark:border-slate-700"
className="accent-green-nx-base h-4 w-4"
checked={includePath}
onChange={toggleIncludeLibsInPathChange}
></input>
/>
</div>
<div className="ml-3 text-sm">
<label
Expand Down

0 comments on commit c521092

Please sign in to comment.