Remove mentions-input-box
This commit is contained in:
parent
d38eabf333
commit
a1199ac219
6 changed files with 32 additions and 36 deletions
|
|
@ -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';
|
||||||
|
|
|
||||||
|
|
@ -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; }
|
||||||
|
|
|
||||||
|
|
@ -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%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -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')}...",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue