Skip to content

Commit

Permalink
Merge pull request #1457 from Shelf-nu/fix-unconsistent-placeholder-s…
Browse files Browse the repository at this point in the history
…tyles

fix: some styles with dynamic select and dropdown
  • Loading branch information
DonKoko authored Nov 26, 2024
2 parents 0a91914 + 2c45a13 commit 6943133
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,12 @@ function CustodyEnumField({
className="w-full justify-start font-normal [&_span]:w-full [&_span]:max-w-full [&_span]:truncate"
>
<div className="flex items-center justify-between">
<span className=" text-left">
<span
className={tw(
"text-left",
selectedIds.length <= 0 && "text-gray-500"
)}
>
{value === "without-custody"
? "Without custody"
: selectedIds.length > 0
Expand Down Expand Up @@ -675,7 +680,12 @@ function CategoryEnumField({
className="w-full justify-start font-normal [&_span]:w-full [&_span]:max-w-full [&_span]:truncate"
>
<div className="flex items-center justify-between">
<span className="text-left">
<span
className={tw(
"text-left",
selectedIds.length <= 0 && "text-gray-500"
)}
>
{selectedIds.length > 0
? selectedIds
.map((id) => {
Expand Down Expand Up @@ -778,7 +788,12 @@ function LocationEnumField({
className="w-full justify-start font-normal [&_span]:w-full [&_span]:max-w-full [&_span]:truncate"
>
<div className="flex items-center justify-between">
<span className="text-left">
<span
className={tw(
"text-left",
selectedIds.length <= 0 && "text-gray-500"
)}
>
{selectedIds.length > 0
? selectedIds
.map((id) => {
Expand Down Expand Up @@ -881,7 +896,12 @@ function KitEnumField({
className="w-full justify-start font-normal [&_span]:w-full [&_span]:max-w-full [&_span]:truncate"
>
<div className="flex items-center justify-between">
<span className="text-left">
<span
className={tw(
"text-left",
selectedIds.length <= 0 && "text-gray-500"
)}
>
{selectedIds.length > 0 && data.kits && data.kits.length > 0
? selectedIds
.map((id) => {
Expand Down
2 changes: 1 addition & 1 deletion app/components/assets/custom-fields-inputs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function AssetCustomFields({
DATE: (field) => (
<div className="flex w-full items-end">
<Input
className="w-full"
className="w-full placeholder:text-gray-500"
label={field.name}
hideLabel
type="date"
Expand Down
7 changes: 6 additions & 1 deletion app/components/dynamic-select/dynamic-select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,12 @@ export default function DynamicSelect({
ref={triggerRef}
className="flex w-full items-center justify-between whitespace-nowrap rounded border border-gray-300 px-[14px] py-2 text-[14px] hover:cursor-pointer disabled:opacity-50"
>
<span className="truncate whitespace-nowrap pr-2">
<span
className={tw(
"truncate whitespace-nowrap pr-2",
selectedValue === undefined && "text-gray-500"
)}
>
{triggerValue}
</span>
<ChevronDownIcon />
Expand Down

0 comments on commit 6943133

Please sign in to comment.