Build
This commit is contained in:
parent
47df8c69e9
commit
1795ef24bf
@ -2342,7 +2342,7 @@ export default class ChatBubbles {
|
||||
|
||||
if(webpage.site_name) {
|
||||
let nameEl = document.createElement('a');
|
||||
nameEl.classList.add('name');
|
||||
nameEl.classList.add('webpage-name');
|
||||
nameEl.setAttribute('target', '_blank');
|
||||
nameEl.href = webpage.url || '#';
|
||||
setInnerHTML(nameEl, RichTextProcessor.wrapEmojiText(webpage.site_name));
|
||||
|
@ -76,7 +76,7 @@ export type BroadcastEvents = {
|
||||
'audio_pause': void,
|
||||
|
||||
'state_cleared': void,
|
||||
'state_synchronized': number,
|
||||
'state_synchronized': number | void,
|
||||
'state_synchronizing': number | void,
|
||||
|
||||
'contacts_update': number,
|
||||
|
@ -747,10 +747,11 @@ $bubble-margin: .25rem;
|
||||
font-weight: 500 !important;
|
||||
}
|
||||
|
||||
.name {
|
||||
.webpage-name {
|
||||
letter-spacing: -.3px;
|
||||
display: block;
|
||||
font-size: calc(1rem - 1px);
|
||||
font-weight: 500 !important;
|
||||
|
||||
@include hover() {
|
||||
text-decoration: underline;
|
||||
@ -777,11 +778,11 @@ $bubble-margin: .25rem;
|
||||
|
||||
.web, .reply {
|
||||
font-size: var(--messages-secondary-text-size);
|
||||
|
||||
.name, .reply-title {
|
||||
font-weight: 500 !important;
|
||||
display: inline!important;
|
||||
}
|
||||
}
|
||||
|
||||
.reply-title {
|
||||
font-weight: 500 !important;
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
&.is-square-photo {
|
||||
@ -1766,7 +1767,7 @@ $bubble-margin: .25rem;
|
||||
border-left: 2px var(--primary-color) solid;
|
||||
}
|
||||
|
||||
.quote .name, .reply-title/* , .reply i */ {
|
||||
.quote .webpage-name, .reply-title/* , .reply i */ {
|
||||
color: var(--primary-color);
|
||||
}
|
||||
|
||||
@ -1916,7 +1917,7 @@ $bubble-margin: .25rem;
|
||||
background-color: var(--message-out-primary-color);
|
||||
}
|
||||
|
||||
.quote .name, .reply-title, .reply i {
|
||||
.quote .webpage-name, .reply-title, .reply i {
|
||||
color: var(--message-out-primary-color);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user