Skip to content
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

[FIX] Long room announcement cut off #8907

Merged
merged 7 commits into from
Dec 4, 2017
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ html.rtl .flex-tab {

cursor: pointer;
vertical-align: middle;
word-wrap: break-word;

font-size: 14px;

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/rocketchat-theme/client/imports/forms/tags.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

width: 100%;
min-height: 43px;
padding: 0 1rem 0 3.25rem;
padding: 0 1rem 0 2.25rem;

border-width: var(--tags-border-width);
border-color: var(--tags-border-color);
Expand Down
3 changes: 3 additions & 0 deletions packages/rocketchat-theme/client/imports/general/base_old.css
Original file line number Diff line number Diff line change
Expand Up @@ -1772,8 +1772,11 @@
overflow: hidden;

height: 40px;
padding: 0 20px;

text-align: center;
white-space: nowrap;
text-overflow: ellipsis;

color: white;
background-color: #04436a;
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-ui/client/views/app/room.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h2>
<div class="messages-container-main">
{{#unless embeddedVersion}}
{{#if showAnnouncement}}
<div class="fixed-title announcement">
<div class="fixed-title announcement" title="{{RocketChatMarkdown roomAnnouncement}}">
{{{RocketChatMarkdown roomAnnouncement}}}
</div>
{{/if}}
Expand Down