New emojis
This commit is contained in:
parent
3bad23b3f6
commit
f985b0cf2b
|
@ -10,10 +10,6 @@ body {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cursor-default {
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bulma override */
|
/* Bulma override */
|
||||||
.media-content {
|
.media-content {
|
||||||
overflow: hidden !important;
|
overflow: hidden !important;
|
||||||
|
@ -271,6 +267,12 @@ div.feed.popped-out {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Cursors */
|
/* Cursors */
|
||||||
|
.cursor-default {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
.cursor-pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
.cursor-notallowed {
|
.cursor-notallowed {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
@ -286,5 +288,5 @@ div.feed.popped-out {
|
||||||
}
|
}
|
||||||
.emoji-button button {
|
.emoji-button button {
|
||||||
background-color: rgba(255, 255, 255, 0.5);
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
color: rgba(0, 0, 0, 0.5);
|
/* color: rgba(0, 0, 0, 0.5); */
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,15 +64,10 @@ const app = Vue.createApp({
|
||||||
audioTracks: {},
|
audioTracks: {},
|
||||||
},
|
},
|
||||||
reactions: [
|
reactions: [
|
||||||
'❤️',
|
['❤️', '👍', '😂', '😉', '😢', '😡', '🥰'],
|
||||||
'😂',
|
['😏', '🔥', '😈', '🍑', '🍆', '💦', '🍌'],
|
||||||
// '😉',
|
['😋', '⭐', '😇', '😴', '😱', '👀', '🎃'],
|
||||||
// '😢',
|
['🙈', '🙉', '🙊', '☀️', '🌈', '✨', '🎂']
|
||||||
// '😡',
|
|
||||||
'🔥',
|
|
||||||
// '😈',
|
|
||||||
'🍑',
|
|
||||||
'🍆',
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -893,10 +893,21 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="dropdown-menu" :id="`react-menu-${msg.msgID}`" role="menu">
|
<div class="dropdown-menu" :id="`react-menu-${msg.msgID}`" role="menu">
|
||||||
<div class="dropdown-content">
|
<div class="dropdown-content p-0">
|
||||||
<a v-for="i in config.reactions" href="#" class="dropdown-item" @click.prevent="sendReact(msg, i)">
|
<!-- Iterate over reactions in rows of emojis-->
|
||||||
|
<div class="columns is-mobile ml-0 mb-2 mr-1"
|
||||||
|
v-for="row in config.reactions">
|
||||||
|
|
||||||
|
<!-- Loop over the icons -->
|
||||||
|
<div class="column p-0 is-narrow"
|
||||||
|
v-for="i in row">
|
||||||
|
<button type="button"
|
||||||
|
class="button px-2 mt-1 ml-1 mr-0 mb-1"
|
||||||
|
@click="sendReact(msg, i)">
|
||||||
[[i]]
|
[[i]]
|
||||||
</a>
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user