Remove mentions-input-box

This commit is contained in:
Steffen van Bergerem 2017-03-21 14:28:59 +01:00
parent d38eabf333
commit a1199ac219
No known key found for this signature in database
GPG key ID: 315C9787D548DC6B
6 changed files with 32 additions and 36 deletions

View file

@ -9,7 +9,6 @@
@import 'media-box'; @import 'media-box';
@import 'entypo'; @import 'entypo';
@import 'icons'; @import 'icons';
@import 'mentions';
@import 'animations'; @import 'animations';
@import 'flash_messages'; @import 'flash_messages';
@import 'sprites'; @import 'sprites';

View file

@ -7,7 +7,6 @@ body {
} }
.publisher { .publisher {
.mentions-input-box { background-color: $gray; }
form { form {
#publisher_textarea_wrapper { background-color: $gray; } #publisher_textarea_wrapper { background-color: $gray; }
.btn.btn-link.question_mark:hover .entypo-cog { color: $gray-light; } .btn.btn-link.question_mark:hover .entypo-cog { color: $gray-light; }

View file

@ -1,21 +0,0 @@
.mentions-input-box {
position: relative;
}
.typeahead-mention-box-wrap .twitter-typeahead {
left: -1px;
width: calc(100% + 2px);
.tt-menu {
// Override inline rule of Typeahead
// If this is not overridden (`position: absolute` by default in Typeahead) then
// the box is cut when opened because of the `overflow: hidden` from parent classes of comment form styles. By
// having `position: relative` here we make it visible by inserting it in the flow.
// This has a side effect of "Comment" button move down when box is open, but it feels like the least evil.
// scss-lint:disable ImportantRule
position: relative !important;
// scss-lint:enable ImportantRule
width: 100%;
}
}

View file

@ -196,6 +196,8 @@
} }
.publisher-textarea-wrapper { .publisher-textarea-wrapper {
position: relative;
&:not(.with-location) .location-container, &:not(.with-location) .location-container,
&.markdown-preview .location-container, &.markdown-preview .location-container,
&:not(.with-poll) .poll-creator-container, &:not(.with-poll) .poll-creator-container,

View file

@ -43,3 +43,21 @@
} }
} }
} }
.typeahead-mention-box-wrap .twitter-typeahead {
left: -1px;
width: calc(100% + 2px);
.tt-menu {
// Override inline rule of Typeahead
// If this is not overridden (`position: absolute` by default in Typeahead) then
// the box is cut when opened because of the `overflow: hidden` from parent classes of comment form styles. By
// having `position: relative` here we make it visible by inserting it in the flow.
// This has a side effect of "Comment" button move down when box is open, but it feels like the least evil.
// scss-lint:disable ImportantRule
position: relative !important;
// scss-lint:enable ImportantRule
width: 100%;
}
}

View file

@ -4,7 +4,6 @@
= status.error_messages = status.error_messages
%params %params
.publisher-textarea-wrapper#publisher_textarea_wrapper .publisher-textarea-wrapper#publisher_textarea_wrapper
.mentions-input-box
- if current_user.getting_started? - if current_user.getting_started?
= status.text_area :text, :rows => 2, :value => h(publisher_formatted_text), = status.text_area :text, :rows => 2, :value => h(publisher_formatted_text),
:tabindex => 1, :placeholder => "#{t('contacts.index.start_a_conversation')}...", :tabindex => 1, :placeholder => "#{t('contacts.index.start_a_conversation')}...",