Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2021-09-03 16:54:26 +03:00
parent 6bc6026db1
commit 6daa85029b
3 changed files with 6 additions and 6 deletions

View File

@ -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;

View File

@ -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 {

View File

@ -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>