From 2632297a08f720916354ca56f106d23ff01e71f2 Mon Sep 17 00:00:00 2001 From: Phillip Hohenester Date: Thu, 21 Jan 2021 16:24:16 +0100 Subject: [PATCH 1/5] added support for new xmp extension --- app_web/index.html | 2 +- app_web/src/logic/uimodel.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app_web/index.html b/app_web/index.html index 4e8c8567..d60f902c 100644 --- a/app_web/index.html +++ b/app_web/index.html @@ -222,7 +222,7 @@

Animation

XMP

XMP

- + + + + + +
@@ -93,7 +107,7 @@
-
+
diff --git a/app_web/src/ui/ui.js b/app_web/src/ui/ui.js index 18122028..1a2769da 100644 --- a/app_web/src/ui/ui.js +++ b/app_web/src/ui/ui.js @@ -42,6 +42,11 @@ Vue.component('dual-label-element', { }); Vue.component('json-to-ui-template', { props: ['data'], + data() { + return { + isInner: false + }; + }, template:'#jsonToUITemplate' }); diff --git a/app_web/ui.css b/app_web/ui.css index 13e08b69..4e58317a 100644 --- a/app_web/ui.css +++ b/app_web/ui.css @@ -150,7 +150,7 @@ canvas opacity: 0.8; } -.greyOverlay +.cardGrayMain { background-color: #424242; margin-bottom: 5px; @@ -159,6 +159,14 @@ canvas padding-left: 8px; } +.cardHeader +{ + display: flex; + justify-content: space-between +} + + + .select, .select select { width: 100%; From 63f7786ccb6205edcbc04288b0ecde168fb6a225 Mon Sep 17 00:00:00 2001 From: Phillip Hohenester Date: Fri, 22 Jan 2021 11:00:04 +0100 Subject: [PATCH 3/5] alternating card colors based on recursion depth --- app_web/index.html | 10 ++++------ app_web/src/ui/ui.js | 7 +------ app_web/ui.css | 13 +++++++++---- 3 files changed, 14 insertions(+), 16 deletions(-) diff --git a/app_web/index.html b/app_web/index.html index 3261cd51..8ab91df7 100644 --- a/app_web/index.html +++ b/app_web/index.html @@ -78,8 +78,7 @@