mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-22 16:27:22 +00:00
Remove bottom border in tables. Clean warinings. (#379)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
parent
a2679e18dd
commit
71a04f0bc2
@ -43,7 +43,7 @@
|
|||||||
<div class="flex-row-center">
|
<div class="flex-row-center">
|
||||||
<CircleButton icon={value.icon} size={'x-large'} />
|
<CircleButton icon={value.icon} size={'x-large'} />
|
||||||
<div class="flex-col caption-color ml-3">
|
<div class="flex-col caption-color ml-3">
|
||||||
<div class="small-text">{value.label}</div>
|
<div class="label">{value.label}</div>
|
||||||
<div class="overflow-label">{value.value}</div>
|
<div class="overflow-label">{value.value}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="button" on:click|preventDefault={copyLink}>
|
<div class="button" on:click|preventDefault={copyLink}>
|
||||||
|
@ -130,47 +130,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-body {
|
|
||||||
margin-top: .75rem;
|
|
||||||
|
|
||||||
th, td {
|
|
||||||
padding: .75rem 0;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
th {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: .75rem;
|
|
||||||
color: var(--theme-content-dark-color);
|
|
||||||
}
|
|
||||||
td {
|
|
||||||
color: var(--theme-caption-color);
|
|
||||||
}
|
|
||||||
.tr-body { border-top: 1px solid var(--theme-button-border-hovered); }
|
|
||||||
}
|
|
||||||
|
|
||||||
.item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: .75rem 1rem;
|
|
||||||
}
|
|
||||||
.file-icon {
|
|
||||||
margin-right: 1.25rem;
|
|
||||||
width: 2rem;
|
|
||||||
height: 2rem;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 0.625rem;
|
|
||||||
line-height: 150%;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: #fff;
|
|
||||||
background-color: var(--primary-button-enabled);
|
|
||||||
border: 1px solid rgba(0, 0, 0, .1);
|
|
||||||
border-radius: .5rem;
|
|
||||||
}
|
|
||||||
.file-desc {
|
|
||||||
font-size: 0.75rem;
|
|
||||||
color: var(--theme-content-dark-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.resume {
|
.resume {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
@ -73,18 +73,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</svelte:fragment> -->
|
</svelte:fragment> -->
|
||||||
|
|
||||||
<!-- <div class="flex-row-center">
|
|
||||||
<div class="avatar">
|
|
||||||
<div class="border"/>
|
|
||||||
<Avatar />
|
|
||||||
</div>
|
|
||||||
<div class="flex-col">
|
|
||||||
<div class="name">{formatName(candidate.name)}</div>
|
|
||||||
<div class="title">For {getVacancyName()}</div>
|
|
||||||
<div class="city">at Cisco</div>
|
|
||||||
</div>
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<div class="grid-cards">
|
<div class="grid-cards">
|
||||||
<CandidateCard {candidate}/>
|
<CandidateCard {candidate}/>
|
||||||
<VacancyCard {vacancy}/>
|
<VacancyCard {vacancy}/>
|
||||||
@ -98,57 +86,6 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import '../../../../packages/theme/styles/mixins.scss';
|
|
||||||
|
|
||||||
.avatar {
|
|
||||||
flex-shrink: 0;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
margin-right: 1.5rem;
|
|
||||||
width: 6rem;
|
|
||||||
height: 6rem;
|
|
||||||
border-radius: 50%;
|
|
||||||
filter: drop-shadow(0px 14px 44px rgba(28, 23, 22, .8));
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
@include bg-layer(var(--theme-avatar-hover), .5);
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
&::before {
|
|
||||||
content: '';
|
|
||||||
@include bg-layer(var(--theme-avatar-bg), .1);
|
|
||||||
backdrop-filter: blur(25px);
|
|
||||||
z-index: -2;
|
|
||||||
}
|
|
||||||
.border {
|
|
||||||
@include bg-fullsize;
|
|
||||||
border: 2px solid var(--theme-avatar-border);
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.name {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.25rem;
|
|
||||||
color: var(--theme-caption-color);
|
|
||||||
}
|
|
||||||
.title, .city {
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: .75rem;
|
|
||||||
color: var(--theme-content-color);
|
|
||||||
}
|
|
||||||
.title { margin-top: .75rem; }
|
|
||||||
.resume a {
|
|
||||||
font-size: .75rem;
|
|
||||||
color: var(--theme-content-dark-color);
|
|
||||||
&:hover { color: var(--theme-content-color); }
|
|
||||||
}
|
|
||||||
|
|
||||||
.attachments {
|
.attachments {
|
||||||
margin-top: 3.5rem;
|
margin-top: 3.5rem;
|
||||||
}
|
}
|
||||||
@ -158,21 +95,4 @@
|
|||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
column-gap: 1.5rem;
|
column-gap: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
// .container {
|
|
||||||
// display: flex;
|
|
||||||
// flex-direction: column;
|
|
||||||
// height: 100%;
|
|
||||||
// background-color: var(--theme-bg-color);
|
|
||||||
// border-radius: 1.25rem;
|
|
||||||
// box-shadow: 0px 3.125rem 7.5rem rgba(0, 0, 0, .4);
|
|
||||||
|
|
||||||
// .tabs-container {
|
|
||||||
// flex-grow: 1;
|
|
||||||
// display: flex;
|
|
||||||
// flex-direction: column;
|
|
||||||
// height: fit-content;
|
|
||||||
// padding: 0 2.5rem 2.5rem;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -106,6 +106,6 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
.btn { flex-grow: 1; }
|
.btn { flex-grow: 1; }
|
||||||
.btn + .btn { margin-left: .75rem; }
|
// .btn + .btn { margin-left: .75rem; }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -15,15 +15,11 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
// import type { IntlString } from '@anticrm/platform'
|
||||||
import type { IntlString } from '@anticrm/platform'
|
|
||||||
import { Label } from '@anticrm/ui'
|
import { Label } from '@anticrm/ui'
|
||||||
|
|
||||||
export let label: IntlString
|
|
||||||
export let placeholder: IntlString
|
|
||||||
export let value: any
|
export let value: any
|
||||||
export let focus: boolean
|
export let maxWidth: string | undefined = undefined
|
||||||
export let maxWidth: string
|
|
||||||
export let onChange: (value: any) => void
|
export let onChange: (value: any) => void
|
||||||
|
|
||||||
function getLabel(value: boolean | undefined) {
|
function getLabel(value: boolean | undefined) {
|
||||||
@ -31,15 +27,21 @@
|
|||||||
if (value === false) return 'No'
|
if (value === false) return 'No'
|
||||||
return 'N/A'
|
return 'N/A'
|
||||||
}
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
</script>
|
<div
|
||||||
|
class="flex-row-center yesno-container"
|
||||||
<div class="flex-row-center yesno-container" class:yes={value === true} class:no={value === false} class:unknown={value === undefined} on:click={() => {
|
class:yes={value === true}
|
||||||
if (value === true) value = false
|
class:no={value === false}
|
||||||
else if (value === false) value = undefined
|
class:unknown={value === undefined}
|
||||||
else value = true
|
style={(maxWidth) ? `max-width: ${maxWidth};` : ''}
|
||||||
onChange(value)
|
on:click={() => {
|
||||||
}}>
|
if (value === true) value = false
|
||||||
|
else if (value === false) value = undefined
|
||||||
|
else value = true
|
||||||
|
onChange(value)
|
||||||
|
}}
|
||||||
|
>
|
||||||
<svg class="svg-small" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
<svg class="svg-small" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
||||||
<circle class:yes={value === true} class:no={value === false} cx="8" cy="8" r="6"/>
|
<circle class:yes={value === true} class:no={value === false} cx="8" cy="8" r="6"/>
|
||||||
{#if value === true}
|
{#if value === true}
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
export let label: IntlString
|
export let label: IntlString
|
||||||
export let color: string
|
export let color: string
|
||||||
export let counter: number
|
// export let counter: number
|
||||||
export let addAction: () => void | undefined
|
export let addAction: () => void | undefined
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -71,10 +71,10 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: var(--theme-caption-color);
|
color: var(--theme-caption-color);
|
||||||
span {
|
// span {
|
||||||
font-weight: 400;
|
// font-weight: 400;
|
||||||
color: var(--theme-content-dark-color);
|
// color: var(--theme-content-dark-color);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
.tool {
|
.tool {
|
||||||
opacity: .4;
|
opacity: .4;
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
import type { IntlString } from '@anticrm/platform'
|
import type { IntlString } from '@anticrm/platform'
|
||||||
import { EditBox } from '@anticrm/ui'
|
import { EditBox } from '@anticrm/ui'
|
||||||
|
|
||||||
export let label: IntlString
|
// export let label: IntlString
|
||||||
export let placeholder: IntlString
|
export let placeholder: IntlString
|
||||||
export let value: any
|
export let value: any
|
||||||
export let focus: boolean
|
export let focus: boolean
|
||||||
|
@ -158,6 +158,7 @@
|
|||||||
color: var(--theme-caption-color);
|
color: var(--theme-caption-color);
|
||||||
border-bottom: 1px solid var(--theme-button-border-hovered);
|
border-bottom: 1px solid var(--theme-button-border-hovered);
|
||||||
&:hover .firstCell .menuRow { visibility: visible; }
|
&:hover .firstCell .menuRow { visibility: visible; }
|
||||||
|
&:last-child { border-bottom: none; }
|
||||||
}
|
}
|
||||||
.fixed .menuRow { visibility: visible; }
|
.fixed .menuRow { visibility: visible; }
|
||||||
</style>
|
</style>
|
||||||
|
@ -200,6 +200,7 @@
|
|||||||
.checkCell { visibility: visible; }
|
.checkCell { visibility: visible; }
|
||||||
}
|
}
|
||||||
&:hover .firstCell .menuRow { visibility: visible; }
|
&:hover .firstCell .menuRow { visibility: visible; }
|
||||||
|
&:last-child { border-bottom: none; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.fixed {
|
.fixed {
|
||||||
|
Loading…
Reference in New Issue
Block a user