Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3525610
D5141.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D5141.diff
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Tue, Dec 24, 5:55 PM (8 h, 50 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2700626
Default Alt Text
D5141.diff (1 KB)
Attached To
Mode
D5141: [web] add ellipsis icon to the left of the "see more..." text
Attached
Detach File
Event Timeline
Log In to Comment