-
Notifications
You must be signed in to change notification settings - Fork 229
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
EDSC-4421: Fixing styling discrepancies from bootstrap upgrade #1870
Changes from 6 commits
dfa7cb1
0577ebe
f3806b8
8fefa6f
b4beaa7
a04bdfc
4439c1f
ca118af
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 |
---|---|---|
|
@@ -52,6 +52,7 @@ | |
display: flex; | ||
align-items: center; | ||
flex: 1; | ||
overflow: hidden; | ||
} | ||
|
||
&__title { | ||
|
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -26,6 +26,10 @@ | |||||||
margin-right: calc(bootstrap.$spacer / 2); | ||||||||
} | ||||||||
|
||||||||
&__header { | ||||||||
z-index: 0; | ||||||||
} | ||||||||
|
||||||||
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.
Suggested change
|
||||||||
.modal-content { | ||||||||
position: relative; | ||||||||
padding: 0.55rem; | ||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,11 @@ | |
|
||
&__actions { | ||
text-align: center; | ||
div { | ||
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. We need to avoid doing nested selectors if we can. If you cant avoid nesting then maybe theres a class you can use instead of an element selector. 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. Shouldn't need this at all with the addition of the |
||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
} | ||
|
||
&__name, | ||
|
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.
@dpesall / @eudoroolivares2016, I played around with this and a better way to fix it would be to add the following in the
&:before
on line 37This will prevent that pseudo element from intercepting the click events 😄