mirror of
https://github.com/hcengineering/platform.git
synced 2025-06-12 13:42:38 +00:00
Update
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
parent
6bc6026db1
commit
6daa85029b
@ -48,6 +48,7 @@
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
border-radius: 1.25rem;
|
||||
// box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, .55);
|
||||
|
||||
.header {
|
||||
flex-shrink: 0;
|
||||
|
@ -80,7 +80,7 @@ $: {
|
||||
.popup {
|
||||
position: fixed;
|
||||
background-color: transparent;
|
||||
backdrop-filter: blur(1rem);
|
||||
backdrop-filter: blur(.5rem);
|
||||
filter: drop-shadow(0 1.5rem 4rem rgba(0, 0, 0, .6));
|
||||
}
|
||||
.modal-overlay {
|
||||
|
@ -16,7 +16,7 @@
|
||||
<script lang="ts">
|
||||
import { createEventDispatcher } from 'svelte'
|
||||
import type { Ref, Space } from '@anticrm/core'
|
||||
import { DatePicker, EditBox, Card, Tabs, Section, Grid, Button } from '@anticrm/ui'
|
||||
import { DatePicker, EditBox, Card, Tabs, Section, Grid, Row, Button } from '@anticrm/ui'
|
||||
import { UserBox, UserInfo, Avatar } from '@anticrm/presentation'
|
||||
import type { Person } from '@anticrm/contact'
|
||||
import File from './icons/File.svelte'
|
||||
@ -48,10 +48,9 @@
|
||||
okLabel={'Save'}
|
||||
okAction={createCandidate}
|
||||
on:close={() => { dispatch('close') }}>
|
||||
<div style="margin-bottom: 1.5rem;">
|
||||
<UserInfo value={{firstName: 'First', lastName: 'Last', city: 'Cityvech'}} size={'large'} subtitle={'Candidate'} />
|
||||
</div>
|
||||
<Grid>
|
||||
<Grid rowGap={1.5}>
|
||||
<Row><EditBox label={'Name'} placeholder={'John Connor'} /></Row>
|
||||
<Row><UserInfo value={{firstName: 'First', lastName: 'Last', city: 'Cityvech'}} size={'large'} subtitle={'Candidate'} /></Row>
|
||||
<UserBox _class={recruit.class.Candidate} title='Candidate' caption='Candidates' bind:value={candidate} />
|
||||
<DatePicker title={'Pick due date'} />
|
||||
</Grid>
|
||||
|
Loading…
Reference in New Issue
Block a user