Skip to content

Commit

Permalink
fix(nc-gui): add box shodow on expanded form input boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshmane7218 committed May 10, 2024
1 parent 04734b8 commit b78936e
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1019,8 +1019,15 @@ export default {
@apply !xs:(mt-1.75 ml-1);
}

.nc-data-cell {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
&:hover,
&:focus-within {
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1) !important;
}
}
.nc-data-cell:focus-within {
@apply !border-1 !border-brand-500 !rounded-lg !shadow-none !ring-0;
@apply !border-1 !border-brand-500 !rounded-lg;
}

:deep(.nc-system-field input) {
Expand Down

1 comment on commit b78936e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR changes have been deployed. Please run the following command to verify:

docker run -d -p 8888:8080 nocodb/nocodb-timely:0.205.0-pr-8452-20240510-1443

Please sign in to comment.