Simplify text field color and textstyles (#4065)

This commit is contained in:
David Perez 2024-10-10 15:06:10 -05:00 committed by GitHub
parent 22c0745993
commit 3e9e45ba2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 1 additions and 5 deletions

View file

@ -94,7 +94,6 @@ fun BitwardenDateSelectButton(
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
contentDescription = null,
tint = BitwardenTheme.colorScheme.icon.primary,
)
},
colors = bitwardenTextFieldButtonColors(),

View file

@ -79,7 +79,6 @@ fun BitwardenTimeSelectButton(
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
contentDescription = null,
tint = BitwardenTheme.colorScheme.icon.primary,
)
},
colors = bitwardenTextFieldButtonColors(),

View file

@ -128,7 +128,6 @@ fun BitwardenMultiSelectButton(
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
contentDescription = null,
tint = BitwardenTheme.colorScheme.icon.primary,
)
},
colors = bitwardenTextFieldButtonColors(),

View file

@ -92,7 +92,6 @@ fun BitwardenTextField(
Icon(
painter = iconResource.iconPainter,
contentDescription = iconResource.contentDescription,
tint = BitwardenTheme.colorScheme.icon.primary,
)
}
},
@ -101,7 +100,7 @@ fun BitwardenTextField(
{
Text(
text = it,
color = BitwardenTheme.colorScheme.text.primary,
style = textStyle,
)
}
},