Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3531734
D5323.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
D5323.diff
View Options
diff --git a/web/chat/chat-input-bar.css b/web/chat/chat-input-bar.css
--- a/web/chat/chat-input-bar.css
+++ b/web/chat/chat-input-bar.css
@@ -37,28 +37,8 @@
width: 100%;
justify-content: center;
}
-button.joinButton {
- display: flex;
- align-items: center;
- border: none;
- padding: 12px 24px;
- border-radius: 4px;
- color: var(--fg);
- font-size: var(--m-font-16);
- font-weight: var(--semi-bold);
- cursor: pointer;
-}
-
-button.joinButton {
- display: flex;
- border-radius: 4px;
- justify-content: center;
- cursor: pointer;
-}
p.joinButtonText {
- font-size: var(--m-font-16);
font-weight: var(--semi-bold);
- color: var(--fg);
padding-left: 8px;
}
span.explanation {
diff --git a/web/chat/chat-input-bar.react.js b/web/chat/chat-input-bar.react.js
--- a/web/chat/chat-input-bar.react.js
+++ b/web/chat/chat-input-bar.react.js
@@ -34,6 +34,7 @@
useDispatchActionPromise,
} from 'lib/utils/action-utils';
+import Button from '../components/button.react';
import {
type InputState,
type PendingMultimediaUpload,
@@ -185,13 +186,13 @@
}
joinButton = (
<div className={css.joinButtonContainer}>
- <button
+ <Button
+ variant="filled"
+ buttonColor={{ backgroundColor: `#${this.props.threadInfo.color}` }}
onClick={this.onClickJoin}
- className={css.joinButton}
- style={{ backgroundColor: `#${this.props.threadInfo.color}` }}
>
{buttonContent}
- </button>
+ </Button>
</div>
);
}
@@ -414,8 +415,7 @@
}
};
- onClickJoin = (event: SyntheticEvent<HTMLAnchorElement>) => {
- event.preventDefault();
+ onClickJoin = () => {
this.props.dispatchActionPromise(joinThreadActionTypes, this.joinAction());
};
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 26, 7:57 AM (12 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2704460
Default Alt Text
D5323.diff (1 KB)
Attached To
Mode
D5323: [web] Use Button in join chat button
Attached
Detach File
Event Timeline
Log In to Comment