mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-13 19:58:09 +00:00
Drag&Drop room config (#5064)
Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
This commit is contained in:
parent
9532c15b8f
commit
352e8a4f3f
@ -1022,7 +1022,6 @@ a.no-line {
|
||||
.bottom-highlight-select { border-bottom: 1px solid var(--highlight-select); }
|
||||
|
||||
|
||||
|
||||
.checkbox_style {
|
||||
input {
|
||||
appearance: none;
|
||||
|
@ -142,6 +142,10 @@
|
||||
width: 1px;
|
||||
height: var(--spacing-4);
|
||||
background-color: var(--theme-divider-color); // var(--global-surface-02-BorderColor);
|
||||
|
||||
&.short {
|
||||
margin: 0 var(--spacing-1);
|
||||
}
|
||||
}
|
||||
.hulyHeader-titleGroup,
|
||||
.hulyHeader-buttonsGroup {
|
||||
@ -355,9 +359,6 @@
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-width: 0;
|
||||
}
|
||||
&__tools {
|
||||
display: flex;
|
||||
|
@ -95,14 +95,14 @@
|
||||
{#if title}{title}{/if}
|
||||
<slot name="title" />
|
||||
</div>
|
||||
{#if counter !== false}
|
||||
{#if counter !== false || $$slots.counter}
|
||||
<span class="hulyAccordionItem-header__separator">•</span>
|
||||
<span class="hulyAccordionItem-header__counter">
|
||||
{#if typeof counter === 'number'}{counter}{/if}
|
||||
<slot name="counter" />
|
||||
</span>
|
||||
{/if}
|
||||
{#if duration !== false}
|
||||
{#if duration !== false || $$slots.duration}
|
||||
<span class="hulyAccordionItem-header__separator">•</span>
|
||||
<span class="hulyAccordionItem-header__duration">
|
||||
{#if typeof duration === 'number'}{duration}{/if}
|
||||
|
@ -162,7 +162,7 @@
|
||||
}
|
||||
&.small {
|
||||
height: var(--global-small-Size);
|
||||
gap: var(--spacing-0_25);
|
||||
gap: var(--spacing-0_5);
|
||||
border-radius: var(--small-BorderRadius);
|
||||
|
||||
&.type-button {
|
||||
|
@ -111,6 +111,7 @@
|
||||
class:w-full={focusable || fullSize}
|
||||
class:uppercase
|
||||
style:width={maxWidth}
|
||||
on:mousedown|stopPropagation={() => {}}
|
||||
on:click={(event) => {
|
||||
if (!propagateClick) {
|
||||
event.stopPropagation()
|
||||
|
@ -117,6 +117,7 @@
|
||||
<span
|
||||
class="antiPresenter h-full"
|
||||
class:text-base={enlargedText}
|
||||
class:cursor-pointer={!disabled && onEdit !== undefined}
|
||||
use:tooltip={disabled ? undefined : showTooltip}
|
||||
on:click={onEditClick}
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user