From 4bf1549edf85c007d0de5daeeed3f28d658e126f Mon Sep 17 00:00:00 2001 From: Roberto Dip Date: Fri, 15 Dec 2023 16:14:35 -0300 Subject: [PATCH] fix background color of OS updates inputs (#15695) Unreleased bug for software updates, this sets the background color to white to match [the design](https://www.figma.com/file/47NY3lf808YJG3O72l7pEC/%2311951-Windows-OS-updates?type=design&node-id=140-2790&mode=design&t=B8cw9JqeT9t8arW2-0) image --- .../OSUpdates/components/MacOSTargetForm/_styles.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/pages/ManageControlsPage/OSUpdates/components/MacOSTargetForm/_styles.scss b/frontend/pages/ManageControlsPage/OSUpdates/components/MacOSTargetForm/_styles.scss index 5f7ea20db..468655f83 100644 --- a/frontend/pages/ManageControlsPage/OSUpdates/components/MacOSTargetForm/_styles.scss +++ b/frontend/pages/ManageControlsPage/OSUpdates/components/MacOSTargetForm/_styles.scss @@ -3,4 +3,8 @@ padding: $pad-large; background-color: $ui-fleet-blue-10; } + + input { + background-color: $core-white; + } }