Unverified Commit c32e3567 by Robb Hamilton Committed by GitHub

Merge pull request #290 from rhamilto/issue-2716

Prohibit horizontal resizing of textarea inside origin-modal-popup
parents 56c7a9dd b40803cd
......@@ -86,6 +86,10 @@
margin-top: 0;
padding: 10px @grid-gutter-width 10px (@grid-gutter-width / 2);
}
textarea {
resize: vertical; // so the textarea cannot be resized wider than the popup
}
}
.origin-modal-popup-backdrop.modal-backdrop {
......
......@@ -415,6 +415,9 @@ div.hopscotch-bubble .hopscotch-nav-button.prev {
margin-top: 0;
padding: 10px 40px 10px 20px;
}
.origin-modal-popup textarea {
resize: vertical;
}
.origin-modal-popup-backdrop.modal-backdrop {
background-color: transparent;
cursor: not-allowed;
......
......@@ -86,6 +86,10 @@
margin-top: 0;
padding: 10px @grid-gutter-width 10px (@grid-gutter-width / 2);
}
textarea {
resize: vertical; // so the textarea cannot be resized wider than the popup
}
}
.origin-modal-popup-backdrop.modal-backdrop {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment