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/contextualBar.html

24 lines
845 B

<template name="contextualBar">
{{#if template}}
<div class="contextual-bar">
<div class="contextual-bar-wrap">
<header class="contextual-bar__header">
{{#with headerData}}
<div class="contextual-bar__header-data">
{{> icon block="contextual-bar__header-icon" icon=icon}}
<h1 class="contextual-bar__header-title">{{_ label}}
<sub class="contextual-bar__header-description">{{ description }}</sub>
</h1>
</div>
{{/with}}
<button class="contextual-bar__header-close js-close" aria-label="{{_ "Close"}}">
{{> icon block="contextual-bar__header-close-icon" icon="plus"}}
</button>
</header>
<section class="contextual-bar__content flex-tab {{id}}">
{{> Template.dynamic template=template data=flexData}}
</section>
</div>
</div>
{{/if}}
</template>