mirror of
https://github.com/bitwarden/android.git
synced 2025-03-16 11:18:45 +03:00
Simplify text field color and textstyles (#4065)
This commit is contained in:
parent
22c0745993
commit
3e9e45ba2f
4 changed files with 1 additions and 5 deletions
|
@ -94,7 +94,6 @@ fun BitwardenDateSelectButton(
|
|||
Icon(
|
||||
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
|
||||
contentDescription = null,
|
||||
tint = BitwardenTheme.colorScheme.icon.primary,
|
||||
)
|
||||
},
|
||||
colors = bitwardenTextFieldButtonColors(),
|
||||
|
|
|
@ -79,7 +79,6 @@ fun BitwardenTimeSelectButton(
|
|||
Icon(
|
||||
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
|
||||
contentDescription = null,
|
||||
tint = BitwardenTheme.colorScheme.icon.primary,
|
||||
)
|
||||
},
|
||||
colors = bitwardenTextFieldButtonColors(),
|
||||
|
|
|
@ -128,7 +128,6 @@ fun BitwardenMultiSelectButton(
|
|||
Icon(
|
||||
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
|
||||
contentDescription = null,
|
||||
tint = BitwardenTheme.colorScheme.icon.primary,
|
||||
)
|
||||
},
|
||||
colors = bitwardenTextFieldButtonColors(),
|
||||
|
|
|
@ -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,
|
||||
)
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue