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
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
Original file line number Diff line number Diff line change
Expand Up @@ -1774,6 +1774,7 @@
height: 40px;

text-align: center;
text-overflow: ellipsis;

color: white;
background-color: #04436a;
Expand Down