Closed micahjones13 closed 3 years ago
for some reason, it looks like this breaks the select form component styles. can you take a look? its hard for me to see what's going on in the diff history
Just reverted the select scss to match current implementation in master - I'm not sure how this ended up here. I must have forgot to swap branches when I worked on some changes for select :no_good:
Updates scroll bar styles to be inline with current abstract implementation and KM design changes.
Jira Ticket
Dark Theme changes:
--scrollBarThumbBackgroundColor:
torgb(43, 101, 155)
fromrgb(46, 103, 153)
scrollBarTrackCornerBackgroundColor
to--scrollBarTrackBackgroundColor
and changed color torgb(27, 45, 62)
fromrgb(32, 50, 70)
scrollBarVerticalBoxShadow
andscrollBarHorizontalBoxShadow
with valuesinset 3px 3px 3px 0px rgba(0, 0, 0, 0.5);
andinset 1px 3px 3px 0px rgba(0, 0, 0, 0.5)
respectively.Light Theme changes:
--scrollBarThumbBackgroundColor
tovar(--primary, rgb(0, 90, 143))
fromvar(--colorQuaternaryDarken1, #9ba0aa)
scrollBarTrackCornerBackgroundColor
to--scrollBarTrackBackgroundColor
and changed color tovar(--colorWhite, rgb(255, 255, 255));
fromtransparent
scrollBarVerticalBoxShadow
andscrollBarHorizontalBoxShadow
with valuesinset 3px 3px 3px 0px rgba(47, 72, 99, 0.5);
andinset 1px 3px 3px 0px rgba(47, 72, 99, 0.5)
respectively.Some values are not using pre-existing colors (ie. rgb(43, 101, 155) and rgb(27, 45, 62)) and so I left them as is. We will most likely be auditing the color values and var names in the future, and these can be updated along with that audit.