-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: fix UI issues presented in UI audit #967
base: main
Are you sure you want to change the base?
Changes from all commits
4c092f6
dad8a0b
2726c97
231e545
4d42e39
fe02564
e30f82a
84e53ed
dc48540
29520a4
da38384
701a573
d7ec5ca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ input { | |
background-color: none; | ||
} | ||
.onboarding { | ||
padding: 1rem; | ||
padding: 2rem 1rem; | ||
width: 100%; | ||
|
||
&-selectWrapperRow { | ||
|
@@ -313,7 +313,6 @@ input { | |
border-top: 1px solid #e5e5e5; | ||
box-sizing: border-box; | ||
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. May want to check in with Joanna on the shadow CSS - we notice there were some inconsistencies across CoursePlan with this so we might as well fix them here |
||
border-radius: 9px; | ||
padding-top: 1rem; | ||
height: 8rem; | ||
|
||
|
@@ -370,12 +369,13 @@ input { | |
} | ||
|
||
&--disabled { | ||
opacity: 0.3; | ||
opacity: 0.6; | ||
border: 1px solid $sangBlue; | ||
background-color: $disabledGray; | ||
|
||
&:hover { | ||
opacity: 0.3; | ||
opacity: 0.6; | ||
cursor: not-allowed; | ||
} | ||
} | ||
} | ||
|
@@ -389,10 +389,10 @@ input { | |
} | ||
&-select { | ||
background: $white; | ||
border: 1px solid $inactiveGray; | ||
border: 0.5px solid $inactiveGray; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Like the rest of these fixes, thanks for paying such close attention here! I'm glad we're getting on top of these UI changes so soon |
||
|
||
box-sizing: border-box; | ||
border-radius: 1px; | ||
border-radius: 2px; | ||
width: 100%; | ||
font-size: 14px; | ||
line-height: 17px; | ||
|
@@ -495,11 +495,12 @@ input { | |
width: inherit; | ||
background: $white; | ||
box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.25); | ||
border-radius: 7px; | ||
border: 0.5px solid $inactiveGray; | ||
border-radius: 0px 0px 2px 2px; | ||
max-height: 150px; | ||
overflow: auto; | ||
|
||
margin-top: 6px; | ||
margin-top: 5px; | ||
|
||
&-item { | ||
height: 2.25rem; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there are a lot of Profile + Onboarding css changes that we'll have due to the UI revamp next sem - may need to put changes in those files on hold for now