-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Disable resizing the textarea in CollectionCreate
modal
#2974
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
Changes from all commits
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 |
---|---|---|
|
@@ -75,6 +75,7 @@ | |
|
||
.form__input-flexible-height { | ||
height: auto; | ||
resize: none; | ||
} | ||
|
||
.form__input::placeholder { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
max-height: 80%; | ||
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. This is the style for ALL modal, not just "create collection", so we need to tread carefully here. There are some larger modals like "keyboard shortcuts" where the 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. I apologize for the oversight, I failed to consider the potential utilization of this class for other modals. 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. @lindapaiste, we can solve this issue using the |
||
max-width: 80%; | ||
position: relative; | ||
padding-bottom: #{math.div(25, $base-font-size)}rem; | ||
padding-bottom: #{math.div(12, $base-font-size)}rem; | ||
|
||
@media (max-width: 650px) { | ||
max-width: 100%; | ||
|
@@ -37,6 +37,10 @@ | |
} | ||
} | ||
|
||
.overlay__body:has(.collection-create){ | ||
max-height: none; | ||
} | ||
|
||
.overlay__header { | ||
display: flex; | ||
justify-content: space-between; | ||
|
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.
🚀