diff --git a/packages/theme/styles/_colors.scss b/packages/theme/styles/_colors.scss index 57379b3344..d300e354f9 100644 --- a/packages/theme/styles/_colors.scss +++ b/packages/theme/styles/_colors.scss @@ -290,7 +290,7 @@ --theme-popup-hover: #F5F5F5; --theme-popup-divider: rgba(0, 0, 0, .1); --theme-popup-header: #EBEBEB; - --theme-popup-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1); + --theme-popup-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.15); --theme-panel-color: #FFFFFF; --theme-calendar-today-color: #000; --theme-calendar-holiday-color: #eb5757; diff --git a/plugins/view-resources/src/components/NumberEditor.svelte b/plugins/view-resources/src/components/NumberEditor.svelte index 6276fecd4c..8514ac32be 100644 --- a/plugins/view-resources/src/components/NumberEditor.svelte +++ b/plugins/view-resources/src/components/NumberEditor.svelte @@ -61,15 +61,15 @@ > {#if value !== undefined} - {value} + {value} {:else} - + {/if} {:else if readonly} {#if value !== undefined} - {value} + {value} {:else} {/if} diff --git a/plugins/view-resources/src/components/StringEditor.svelte b/plugins/view-resources/src/components/StringEditor.svelte index 4e0bdb7038..2beb37a54f 100644 --- a/plugins/view-resources/src/components/StringEditor.svelte +++ b/plugins/view-resources/src/components/StringEditor.svelte @@ -43,7 +43,6 @@ {size} {justify} {width} - notSelected={!value} on:click={(ev) => { if (!shown && !readonly) { showPopup(EditBoxPopup, { value }, eventToHTMLElement(ev), (res) => { @@ -58,9 +57,9 @@ > {#if value} - {value} + {value} {:else} - + {/if}