Browse Source
Merge pull request #589 from Budibase/components-hierarchy-actions-ui-fix
Components hierarchy actions UI fix
pull/591/head
Michael Drury
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
19 additions and
7 deletions
-
AUTHORS.md
-
packages/builder/src/components/userInterface/ComponentDropdownMenu.svelte
-
packages/builder/src/components/userInterface/ComponentsHierarchy.svelte
-
packages/builder/src/components/userInterface/ComponentsHierarchyChildren.svelte
-
packages/builder/src/components/userInterface/ScreenDropdownMenu.svelte
|
|
|
@ -5,3 +5,5 @@ Contributors |
|
|
|
* Daniel Loudon - [@danbudi](https://github.com/marblekirby) |
|
|
|
* Joe - [@joebudi](https://github.com/joebudi) |
|
|
|
* Martin McKeaveney - [@shogunpurple](https://github.com/shogunpurple) |
|
|
|
* Andrew Kingston - [@aptkingston](https://github.com/aptkingston) |
|
|
|
* Michael Drury - [@mike12345567](https://github.com/mike12345567) |
|
|
|
@ -195,6 +195,16 @@ |
|
|
|
cursor: pointer; |
|
|
|
} |
|
|
|
|
|
|
|
button { |
|
|
|
border-style: none; |
|
|
|
border-radius: 2px; |
|
|
|
padding: 0; |
|
|
|
background: transparent; |
|
|
|
cursor: pointer; |
|
|
|
color: var(--ink); |
|
|
|
outline: none; |
|
|
|
} |
|
|
|
|
|
|
|
li:hover { |
|
|
|
background-color: var(--grey-2); |
|
|
|
} |
|
|
|
|
|
|
|
@ -109,10 +109,10 @@ |
|
|
|
|
|
|
|
.dropdown-menu { |
|
|
|
display: none; |
|
|
|
height: 24px; |
|
|
|
width: 24px; |
|
|
|
color: var(--ink); |
|
|
|
padding: 0px 5px; |
|
|
|
padding: 0 5px; |
|
|
|
width: 24px; |
|
|
|
height: 24px; |
|
|
|
border-style: none; |
|
|
|
background: rgba(0, 0, 0, 0); |
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
@ -204,10 +204,10 @@ |
|
|
|
|
|
|
|
.actions { |
|
|
|
display: none; |
|
|
|
height: 24px; |
|
|
|
width: 24px; |
|
|
|
color: var(--ink); |
|
|
|
padding: 0px 5px; |
|
|
|
padding: 0 5px; |
|
|
|
width: 24px; |
|
|
|
height: 24px; |
|
|
|
border-style: none; |
|
|
|
background: rgba(0, 0, 0, 0); |
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
@ -64,7 +64,7 @@ |
|
|
|
.root button { |
|
|
|
border-style: none; |
|
|
|
border-radius: 2px; |
|
|
|
padding: 5px; |
|
|
|
padding: 0; |
|
|
|
background: transparent; |
|
|
|
cursor: pointer; |
|
|
|
color: var(--ink); |
|
|
|
|