diaspora/app/assets/stylesheets/bootstrap-fix.css.scss
Steffen van Bergerem b275b2edbc Merge pull request #5435 from SansPseudoFix/5329-fix-mention-popup-hidden
A temporary fix for mention modal #5329
2014-11-30 13:48:24 +01:00

23 lines
486 B
SCSS

// A temporary fix for broken classes in bootstrap 2.
// Can probably be removed when migration of bootstrap 3 is done.
input::-moz-placeholder,
textarea::-moz-placeholder {
color: #999999;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
color: #999999;
}
// A temporary fix for mention modal #5329
#new_status_message_pane .modal {
position: absolute;
max-height: none;
}
#new_status_message_pane .modal-body{
overflow-y: visible;
max-height: none;
}