The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rocket.Chat/app/ui/client/components/selectDropdown.html

20 lines
526 B

9 years ago
<template name="selectDropdown">
<div class="rc-input">
<label class="rc-input__label">
<div class="rc-input__title">Invite people to channel</div>
<div class="rc-input__wrapper">
<div class="rc-input__icon">
8 years ago
{{> icon block="rc-input__icon-svg" icon="at"}}
9 years ago
</div>
{{ selectedUsers }}
<input type="text" class="rc-input__element" placeholder="Type user name" name="users">
</div>
</label>
{{#if open}}
<div class="fadeInDown">
{{ > popupList .}}
</div>
{{/if}}
</div>
</template>