UI update for dropdown

This commit is contained in:
Joe 2020-06-01 15:31:55 +01:00
parent bf10810525
commit 4eb637d3bd
4 changed files with 45 additions and 33 deletions

View File

@ -1,4 +1,4 @@
<script> <script>
import { MoreIcon } from "components/common/Icons" import { MoreIcon } from "components/common/Icons"
import { store } from "builderStore" import { store } from "builderStore"
import { getComponentDefinition } from "builderStore/store" import { getComponentDefinition } from "builderStore/store"
@ -155,24 +155,16 @@
<MoreIcon /> <MoreIcon />
</button> </button>
<ul class="menu" bind:this={dropdownEl} on:click={hideDropdown}> <ul class="menu" bind:this={dropdownEl} on:click={hideDropdown}>
<li on:click={() => confirmDeleteDialog.show()}>Delete</li> <li class="item" on:click={() => confirmDeleteDialog.show()}><i class="icon ri-delete-bin-2-line"></i>Delete</li>
<li on:click={moveUpComponent}>Move up</li> <li class="item" on:click={moveUpComponent}><i class="icon ri-arrow-up-line"></i>Move up</li>
<li on:click={moveDownComponent}>Move down</li> <li class="item" on:click={moveDownComponent}><i class="icon ri-arrow-down-line"></i>Move down</li>
<li on:click={copyComponent}>Duplicate</li> <li class="item" on:click={copyComponent}><i class="icon ri-repeat-one-line"></i>Duplicate</li>
<li on:click={() => storeComponentForCopy(true)}>Cut</li> <li class="item" on:click={() => storeComponentForCopy(true)}><i class="icon ri-scissors-cut-line"></i>Cut</li>
<li on:click={() => storeComponentForCopy(false)}>Copy</li> <li class="item" on:click={() => storeComponentForCopy(false)}><i class="icon ri-file-copy-line"></i>Copy</li>
<hr /> <hr class="hr-style">
<li class:disabled={noPaste} on:click={() => pasteComponent('above')}> <li class="item" class:disabled={noPaste} on:click={() => pasteComponent('above')}><i class="icon ri-insert-row-top"></i>Paste above</li>
Paste above <li class="item" class:disabled={noPaste} on:click={() => pasteComponent('below')}><MoreIcon /></i>Paste below</li>
</li> <li class="item" class:disabled={noPaste || noChildrenAllowed} on:click={() => pasteComponent('inside')}>Paste inside</li>
<li class:disabled={noPaste} on:click={() => pasteComponent('below')}>
Paste below
</li>
<li
class:disabled={noPaste || noChildrenAllowed}
on:click={() => pasteComponent('inside')}>
Paste inside
</li>
</ul> </ul>
</div> </div>
@ -195,33 +187,44 @@
padding: 5px; padding: 5px;
background: transparent; background: transparent;
cursor: pointer; cursor: pointer;
color: var(--button-text); color: var(--ink);
outline: none; outline: none;
} }
.menu { .menu {
z-index: 100000; z-index: 100000;
overflow: visible; overflow: visible;
padding: 10px 0; padding: 12px 0px;
border-radius: 5px;
} }
.menu li { .menu li {
border-style: none; border-style: none;
background-color: transparent; background-color: transparent;
list-style-type: none; list-style-type: none;
padding: 4px 5px 4px 15px; padding: 4px 16px;
margin: 0; margin: 0;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
} }
.item {
display: flex;
align-items: center;
font-size: 14px;
}
.icon {
margin-right: 8px;
}
.menu li:not(.disabled) { .menu li:not(.disabled) {
cursor: pointer; cursor: pointer;
color: var(--ink); color: var(--ink-light);
} }
.menu li:not(.disabled):hover { .menu li:not(.disabled):hover {
color: var(--button-text); color: var(--ink);
background-color: var(--grey-light); background-color: var(--grey-light);
} }
@ -229,4 +232,9 @@
color: var(--grey-dark); color: var(--grey-dark);
cursor: default; cursor: default;
} }
.hr-style {
margin: 8px 0;
color: var(--grey-dark)
}
</style> </style>

View File

@ -78,9 +78,9 @@
.actions { .actions {
display: none; display: none;
height: 20px; height: 24px;
width: 28px; width: 24px;
color: var(--slate); color: var(--ink);
padding: 0px 5px; padding: 0px 5px;
border-style: none; border-style: none;
background: rgba(0, 0, 0, 0); background: rgba(0, 0, 0, 0);
@ -89,7 +89,7 @@
} }
.item:hover { .item:hover {
background: #fafafa; background: var(--grey-light);
cursor: pointer; cursor: pointer;
} }
.item:hover .actions { .item:hover .actions {

View File

@ -22,8 +22,9 @@ export const layout = [
label: "Direction", label: "Direction",
key: "flex-direction", key: "flex-direction",
control: OptionSelect, control: OptionSelect,
initialValue: "Row", initialValue: "Select Option",
options: [ options: [
{ label: "Select Option", value: "" },
{ label: "Row", value: "row" }, { label: "Row", value: "row" },
{ label: "Row Reverse", value: "rowReverse" }, { label: "Row Reverse", value: "rowReverse" },
{ label: "column", value: "column" }, { label: "column", value: "column" },
@ -34,8 +35,9 @@ export const layout = [
label: "Justify", label: "Justify",
key: "justify-content", key: "justify-content",
control: OptionSelect, control: OptionSelect,
initialValue: "Flex Start", initialValue: "Select Option",
options: [ options: [
{ label: "Select Option", value: "" },
{ label: "Flex Start", value: "flex-start" }, { label: "Flex Start", value: "flex-start" },
{ label: "Flex End", value: "flex-end" }, { label: "Flex End", value: "flex-end" },
{ label: "Center", value: "center" }, { label: "Center", value: "center" },
@ -48,8 +50,9 @@ export const layout = [
label: "Align", label: "Align",
key: "align-items", key: "align-items",
control: OptionSelect, control: OptionSelect,
initialValue: "Flex Start", initialValue: "Select Option",
options: [ options: [
{ label: "Select Option", value: "" },
{ label: "Flex Start", value: "flex-start" }, { label: "Flex Start", value: "flex-start" },
{ label: "Flex End", value: "flex-end" }, { label: "Flex End", value: "flex-end" },
{ label: "Center", value: "center" }, { label: "Center", value: "center" },
@ -61,8 +64,9 @@ export const layout = [
label: "Wrap", label: "Wrap",
key: "flex-wrap", key: "flex-wrap",
control: OptionSelect, control: OptionSelect,
initialValue: "NoWrap", initialValue: "Select Option",
options: [ options: [
{ label: "Select Option", value: "" },
{ label: "No Wrap", value: "nowrap" }, { label: "No Wrap", value: "nowrap" },
{ label: "Wrap", value: "wrap" }, { label: "Wrap", value: "wrap" },
{ label: "Wrap Reverse", value: "wrap-reverse" }, { label: "Wrap Reverse", value: "wrap-reverse" },

View File

@ -197,7 +197,7 @@
.nav-item-title { .nav-item-title {
font-size: 14px; font-size: 14px;
color: var(--ink); color: var(--ink);
font-weight: 500; font-weight: 400;
margin-left: 12px; margin-left: 12px;
} }