Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/meteor/.eslintcache

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apps/meteor/app/channel-settings/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Meteor } from 'meteor/meteor';

if (Meteor.isClient) {
module.exports = require('./client/index.js');
module.exports = require('./client/index.ts');
}
if (Meteor.isServer) {
module.exports = require('./server/index.js');
module.exports = require('./server/index.ts');
}
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import './stylesheets/e2e.css';

export * from './rocketchat.e2e';
13 changes: 0 additions & 13 deletions apps/meteor/app/e2e/client/stylesheets/e2e.css

This file was deleted.

4 changes: 0 additions & 4 deletions apps/meteor/app/emoji-emojione/client/emojione-sprites.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@
image-rendering: optimizeQuality;
}

.message .emojione.big {
width: 44px;
height: 44px;
}
.big > .emojione {
width: 44px;
height: 44px;
Expand Down
4 changes: 2 additions & 2 deletions apps/meteor/app/emoji/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Meteor } from 'meteor/meteor';

if (Meteor.isClient) {
module.exports = require('./client/index.js');
module.exports = require('./client/index.ts');
}
if (Meteor.isServer) {
module.exports = require('./server/index.js');
module.exports = require('./server/index.ts');
}
File renamed without changes.
18 changes: 0 additions & 18 deletions apps/meteor/app/highlight-words/client/client.js

This file was deleted.

1 change: 0 additions & 1 deletion apps/meteor/app/highlight-words/client/index.js

This file was deleted.

1 change: 0 additions & 1 deletion apps/meteor/app/mentions/client/mentionLink.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.message .mention-link,
.mention-link {
padding: 0 2px 2px;

Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
import './init';
import './methods/setReaction';
import './stylesheets/reaction.css';
89 changes: 0 additions & 89 deletions apps/meteor/app/reactions/client/stylesheets/reaction.css

This file was deleted.

1 change: 0 additions & 1 deletion apps/meteor/app/reactions/server/index.js

This file was deleted.

1 change: 1 addition & 0 deletions apps/meteor/app/reactions/server/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './setReaction';
194 changes: 0 additions & 194 deletions apps/meteor/app/theme/client/imports/components/messages.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,102 +54,6 @@
max-width: 400px;
}

.message {
&:hover,
&.active {
background-color: #f7f8fa;

& .message-actions {
display: flex;
}
}

& .toggle-hidden {
display: none;
}

&&--ignored {
min-height: 25px;
padding: 2px 50px 2px 70px;

font-size: 12px;

& > .thumb {
top: 3px;

width: 20px;
height: 20px;
margin-left: 16px;

& .avatar {
width: 100%;
height: 100%;
}
}

& .user {
font-size: 0.75rem;
font-weight: initial;
}

& .message-body-wrapper .body,
& .message-oembed,
& .attachment,
& .message-discussion,
& .message-thread,
& .reactions,
& .edited,
& .role-tag {
display: none;
}

& .toggle-hidden {
display: block;
}

& + .message--ignored.sequential {
display: none;
}
}

&.active {
& .message-actions__label {
color: var(--rc-color-button-primary);
}
}

& .rc-popover-anchor {
display: block;

visibility: hidden;

width: 0;
height: 0;

opacity: 0;
}

& .rc-popover {
top: -200vh;
right: 180px;

&__wrapper {
position: fixed;
top: -100vh;
left: -100vw;

width: 300vw;
height: 300vh;
}

&__content {
position: absolute;
top: 0;
left: 0;
}
}
}

.message-body {
&--unstyled {
vertical-align: bottom;
Expand Down Expand Up @@ -213,104 +117,6 @@
left: 2px;
}

.compact {
& .message {
min-height: 26px;
padding: 5px 15px 5px 37px;

&.sequential {
& .thumb:not(.thumb-small),
& .user {
display: inline-block;
}

& .title {
position: relative;
left: 0;

width: auto;

text-align: left;
justify-content: initial;

& .time,
& .edited {
display: inline-block;
}
}
}

& .attachment {
& .attachment-title > a {
font-size: 0.9em;
}

& .attachment-author img {
border-radius: 2px;
}

& .inline-image img {
max-height: 100px;
}

& .inline-video {
max-height: 150px;
}
}

& blockquote iframe {
width: 266px;
height: 150px;
}

& .message-body-wrapper {
display: flex;
align-items: flex-start;
}

& .body {
display: inline;

max-width: 100%;
margin-left: 4px;
padding-right: 48px;

word-wrap: anywhere;
}

& .title {
& .avatar-image {
border-radius: 2px;
}

& .role-tag {
display: none;
}

& .edited {
margin-left: 4px;

& .icon-pencil::before {
margin-right: 0;
}
}
}

& .thumb {
left: 10px;

width: 20px;
height: 20px;
margin-left: 0;

& .avatar {
width: 20px;
height: 20px;
}
}
}
}

.message-popup .rcx-message-attachment {
overflow-y: auto !important;

Expand Down
Loading