-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add button to open live chat popup in browser #8278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
Changes from 7 commits
d6e318e
a53478b
c76d9fe
b08d11a
c7da41e
3b183cb
304a3f6
b0a605a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -232,3 +232,43 @@ | |
| position: relative; | ||
| inset-block-start: 0.45rem; | ||
| } | ||
|
|
||
| .popoutChatButton { | ||
| border-radius: 50%; | ||
| border-style: none; | ||
| background-color: transparent; | ||
| line-height: 1em; | ||
| color: var(--primary-text-color); | ||
| cursor: pointer; | ||
| font-size: 20px; | ||
| transition: background 0.2s ease-out; | ||
| } | ||
|
|
||
| .popoutChatButton:hover { | ||
| background-color: var(--side-nav-hover-color); | ||
| color: var(--side-nav-hover-text-color); | ||
| transition: background 0.2s ease-in; | ||
| } | ||
|
|
||
| .popoutChatButton:active { | ||
| background-color: var(--tertiary-text-color); | ||
| color: var(--side-nav-active-text-color); | ||
| transition: background 0.2s ease-in; | ||
| } | ||
|
|
||
| .popoutChatIcon { | ||
| pointer-events: none; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why did you add this?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The external link handling wouldn't trigger without this being set With regular text inside the |
||
| } | ||
|
|
||
| .titleContainer { | ||
| display: flex; | ||
| justify-content: space-between; | ||
| margin-block: 1em; | ||
|
|
||
| } | ||
|
|
||
| .title, | ||
| .popoutChatButton { | ||
| padding: 10px; | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.