From f6883c33fd866af12f37edc197f7eb2387d673e6 Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 25 Oct 2022 11:38:48 -0600 Subject: [PATCH] Add gap inside link widgets between each component --- api/js/etemplate/Et2Link/Et2LinkEntry.ts | 3 +++ api/js/etemplate/Et2Link/Et2LinkTo.ts | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/api/js/etemplate/Et2Link/Et2LinkEntry.ts b/api/js/etemplate/Et2Link/Et2LinkEntry.ts index 59dc8e9135..4b94ca0fad 100644 --- a/api/js/etemplate/Et2Link/Et2LinkEntry.ts +++ b/api/js/etemplate/Et2Link/Et2LinkEntry.ts @@ -32,6 +32,9 @@ export class Et2LinkEntry extends Et2InputWidget(FormControlMixin(ValidateMixin( :host(.hideApp) ::slotted([slot="app"]) { display: none; } + .input-group__input { + gap: 0.5rem; + } ` ]; diff --git a/api/js/etemplate/Et2Link/Et2LinkTo.ts b/api/js/etemplate/Et2Link/Et2LinkTo.ts index cd6f0804de..3006d6d129 100644 --- a/api/js/etemplate/Et2Link/Et2LinkTo.ts +++ b/api/js/etemplate/Et2Link/Et2LinkTo.ts @@ -75,6 +75,11 @@ export class Et2LinkTo extends Et2InputWidget(ScopedElementsMixin(FormControlMix .input-group { display: flex; width: 100%; + gap: 0.5rem; + } + .input-group__before { + display: flex; + gap: 0.5rem; } ::slotted(.et2_file) { width: 30px;