mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-26 22:32:23 +02:00
61 lines
1.7 KiB
Svelte
61 lines
1.7 KiB
Svelte
<!--
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
-->
|
|
|
|
<script lang="ts">
|
|
import type { IntlString, Asset } from '@anticrm/platform'
|
|
import { Icon, Label } from '@anticrm/ui'
|
|
|
|
export let icon: Asset | undefined
|
|
export let label: IntlString
|
|
export let description: IntlString | undefined
|
|
</script>
|
|
|
|
<div class="header-container">
|
|
<div class="flex-row-center">
|
|
{#if icon }<span class="icon"><Icon {icon} size={'small'}/></span>{/if}
|
|
<span class="label"><Label {label}/></span>
|
|
</div>
|
|
{#if description }<div class="description">{description}</div>{/if}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.header-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
|
|
.icon {
|
|
margin-right: .5rem;
|
|
opacity: .6;
|
|
}
|
|
.label, .description {
|
|
flex-grow: 1;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
max-width: 35rem;
|
|
}
|
|
.label {
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
color: var(--theme-caption-color);
|
|
}
|
|
.description {
|
|
font-size: .75rem;
|
|
color: var(--theme-content-trans-color);
|
|
}
|
|
}
|
|
</style>
|