Page MenuHomePhabricator

D5141.id16936.diff
No OneTemporary

D5141.id16936.diff

diff --git a/web/chat/chat-thread-list-see-more-sidebars.react.js b/web/chat/chat-thread-list-see-more-sidebars.react.js
--- a/web/chat/chat-thread-list-see-more-sidebars.react.js
+++ b/web/chat/chat-thread-list-see-more-sidebars.react.js
@@ -2,6 +2,7 @@
import classNames from 'classnames';
import * as React from 'react';
+import { IoIosMore } from 'react-icons/io';
import type { ThreadInfo } from 'lib/types/thread-types';
@@ -31,16 +32,15 @@
return (
<div className={classNames(css.thread, css.sidebar)} onClick={onClick}>
<a className={css.threadButton}>
- <div className={css.threadRow}>
- <div
- className={classNames({
- [css.sidebarTitle]: true,
- [css.seeMoreButton]: true,
- [css.unread]: unread,
- })}
- >
- See more...
- </div>
+ <div
+ className={classNames({
+ [css.sidebarTitle]: true,
+ [css.seeMoreButton]: true,
+ [css.unread]: unread,
+ })}
+ >
+ <IoIosMore size="22px" />
+ <div className={css.seeMoreText}>See more...</div>
</div>
</a>
</div>
diff --git a/web/chat/chat-thread-list.css b/web/chat/chat-thread-list.css
--- a/web/chat/chat-thread-list.css
+++ b/web/chat/chat-thread-list.css
@@ -170,7 +170,12 @@
color: var(--fg);
}
div.seeMoreButton {
- padding-left: 58px;
+ display: flex;
+ align-items: center;
+ padding-left: 22px;
+}
+div.seeMoreText {
+ padding-left: 14px;
}
div.sidebarLastActivity {
white-space: nowrap;

File Metadata

Mime Type
text/plain
Expires
Wed, Dec 25, 8:01 AM (10 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2700626
Default Alt Text
D5141.id16936.diff (1 KB)

Event Timeline