-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix input text caret size on Safari * Prevent errors in absence of Permissions API; move microphone handling to messageBoxAudioMessage module
- Loading branch information
1 parent
ebbb457
commit 6ef4095
Showing
5 changed files
with
49 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
<template name="messageBoxAudioMessage" args="rid"> | ||
<div class="rc-message-box__audio-message {{stateClass}}"> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-cancel js-audio-message-cancel"> | ||
{{> icon block="rc-input__icon-svg" icon="circle-cross"}} | ||
{{#if isAllowed}} | ||
<div class="rc-message-box__audio-message {{stateClass}}"> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-cancel js-audio-message-cancel"> | ||
{{> icon block="rc-input__icon-svg" icon="circle-cross"}} | ||
</div> | ||
<div class="rc-message-box__audio-message-timer"> | ||
<span class="rc-message-box__audio-message-timer-dot"></span> | ||
<span class="rc-message-box__audio-message-timer-text">{{time}}</span> | ||
</div> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-done js-audio-message-done"> | ||
{{> icon block="rc-input__icon-svg" icon="checkmark-circled"}} | ||
</div> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-mic js-audio-message-record"> | ||
{{> icon block="rc-input__icon-svg" icon="mic"}} | ||
</div> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-loading js-audio-message-loading"> | ||
{{> icon block="rc-input__icon-svg" icon="loading"}} | ||
</div> | ||
</div> | ||
<div class="rc-message-box__audio-message-timer"> | ||
<span class="rc-message-box__audio-message-timer-dot"></span> | ||
<span class="rc-message-box__audio-message-timer-text">{{time}}</span> | ||
</div> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-done js-audio-message-done"> | ||
{{> icon block="rc-input__icon-svg" icon="checkmark-circled"}} | ||
</div> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-mic js-audio-message-record"> | ||
{{> icon block="rc-input__icon-svg" icon="mic"}} | ||
</div> | ||
<div class="rc-message-box__icon rc-message-box__audio-message-loading js-audio-message-loading"> | ||
{{> icon block="rc-input__icon-svg" icon="loading"}} | ||
</div> | ||
</div> | ||
{{/if}} | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters