Skip to content

Commit c4f5fdf

Browse files
authored
feat: add css to make orgid copable (#4965)
1 parent 47a491e commit c4f5fdf

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/operator/OrgOverlay.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
.overlay-header--color {
1+
.overlay-header--color.overlay-header--title {
22
color: #fff;
3+
user-select: text !important;
4+
-moz-user-select: text !important;
5+
-webkit-user-select: text !important;
6+
-ms-user-select: text !important;
7+
-o-user-select: text !important;
38
}
49

510
.cf-overlay--body {

src/operator/OrgOverlay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const OrgOverlay: FC = () => {
7979
<Overlay.Container maxWidth={1000}>
8080
<Overlay.Header
8181
title={orgID}
82-
className="overlay-header--color"
82+
className="overlay-header--color overlay-header--title"
8383
onDismiss={() => history.goBack()}
8484
/>
8585
<SpinnerContainer

0 commit comments

Comments
 (0)