From 4bd2e38485553e2e993465710f1a37b8253b2235 Mon Sep 17 00:00:00 2001 From: Luciana Nunez Date: Fri, 2 Feb 2024 12:29:37 -0400 Subject: [PATCH 1/5] feature/FOUR-14002 --- .../js/processes/designer/AssetButtons.vue | 18 ++++++++++++------ resources/js/processes/designer/Assets.vue | 10 +++++----- resources/lang/en.json | 7 ++++++- 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/resources/js/processes/designer/AssetButtons.vue b/resources/js/processes/designer/AssetButtons.vue index b72573f7c2..4e8952be53 100755 --- a/resources/js/processes/designer/AssetButtons.vue +++ b/resources/js/processes/designer/AssetButtons.vue @@ -3,23 +3,23 @@
- {{ $t(asset_name_new) }} - +

{{ $t(asset_name_new) }}

+
- {{ $t(asset_name_all) }} - +

{{ $t(asset_name_all) }}

+
@@ -64,11 +64,15 @@ export default { display: flex; padding: 8px 12px; justify-content: space-between; + text-align: start; align-items: center; flex: 1 0 0; align-self: stretch; border-radius: 4px; border: 1px solid #b7d8ff; + background: #edf4ff; +} +.custom-button:hover { background: #d1e3fe; } .custom-text { @@ -79,5 +83,7 @@ export default { font-weight: 400; line-height: normal; letter-spacing: -0.28px; + text-transform: capitalize; + margin: 0px; } diff --git a/resources/js/processes/designer/Assets.vue b/resources/js/processes/designer/Assets.vue index 94ec239f4d..7f398bb317 100644 --- a/resources/js/processes/designer/Assets.vue +++ b/resources/js/processes/designer/Assets.vue @@ -89,7 +89,7 @@ export default { icon: "fas fa-play-circle", asset_name: "Processes", asset_name_all: "View All Processes", - asset_name_new: "Create New Process", + asset_name_new: "New Process", urlPath: "/processes", urlAsset: "/processes?new=true", }, @@ -98,7 +98,7 @@ export default { icon: "fas fa-file-alt", asset_name: "Screens", asset_name_all: "View All Screens", - asset_name_new: "Create New Screen", + asset_name_new: "New Screen", urlPath: "/designer/screens", urlAsset: "/designer/screens?create=true", }, @@ -107,7 +107,7 @@ export default { icon: "fas fa-code", asset_name: "Scripts", asset_name_all: "View All Scripts", - asset_name_new: "Create New Script", + asset_name_new: "New Script", urlPath: "/designer/scripts", urlAsset: "/designer/scripts?create=true", }, @@ -118,7 +118,7 @@ export default { icon: "fas fa-table", asset_name: "Decision Tables", asset_name_all: "View All Decision Tables", - asset_name_new: "Create New Decision Table", + asset_name_new: "New Decision Table", urlPath: "/designer/decision-tables", urlAsset: "/designer/decision-tables?create=true", }, @@ -127,7 +127,7 @@ export default { icon: "fas fa-share-alt", asset_name: "Data Connectors", asset_name_all: "View All Data Connectors", - asset_name_new: "Create New Data Connector", + asset_name_new: "New Data Connector", urlPath: "/designer/data-sources", urlAsset: "/designer/data-sources?create=true", }, diff --git a/resources/lang/en.json b/resources/lang/en.json index 645c975e4d..32852da12c 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -1910,8 +1910,13 @@ "Version Name": "Version Name", "Vertical alignment of the text": "Vertical alignment of the text", "View {{user}} Profile": "View {{user}} Profile", - "View All Requests": "View All Requests", "View All": "View All", + "View All Data Connectors": "View All Data Connectors", + "View All Decision Tables": "View All Decision Tables", + "View All Processes": "View All Processes", + "View All Requests": "View All Requests", + "View All Screens": "View All Processes", + "View All Scripts": "View All Scripts", "View All Notifications": "View All Notifications", "View Auth Clients": "View Auth-Clients", "View Categories": "View Categories", From fd4136e4ed54484dd18f5b34fcbd80e25255d740 Mon Sep 17 00:00:00 2001 From: Luciana Nunez Date: Fri, 2 Feb 2024 15:13:58 -0400 Subject: [PATCH 2/5] feature/FOUR-14002 --- resources/js/processes/designer/AssetButtons.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/processes/designer/AssetButtons.vue b/resources/js/processes/designer/AssetButtons.vue index 4e8952be53..7c0425509b 100755 --- a/resources/js/processes/designer/AssetButtons.vue +++ b/resources/js/processes/designer/AssetButtons.vue @@ -77,8 +77,8 @@ export default { } .custom-text { color: #5e6469; - font-family: "Open Sans", sans-serif; - font-size: 12px; + font-family: "Open Sans"; + font-size: 14px; font-style: normal; font-weight: 400; line-height: normal; From 1274d7d9f3b65db5516f18a48f8b8534b794257e Mon Sep 17 00:00:00 2001 From: Luciana Nunez Date: Fri, 2 Feb 2024 15:28:51 -0400 Subject: [PATCH 3/5] feature/FOUR-14002 --- resources/js/processes/designer/AssetButtons.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/processes/designer/AssetButtons.vue b/resources/js/processes/designer/AssetButtons.vue index 7c0425509b..4a7dec913c 100755 --- a/resources/js/processes/designer/AssetButtons.vue +++ b/resources/js/processes/designer/AssetButtons.vue @@ -77,7 +77,7 @@ export default { } .custom-text { color: #5e6469; - font-family: "Open Sans"; + font-family: "Open Sans", sans-serif; font-size: 14px; font-style: normal; font-weight: 400; From 7ea36f3126400ccf44b8e51e3677e0a2be64e2ed Mon Sep 17 00:00:00 2001 From: Luciana Nunez Date: Fri, 2 Feb 2024 15:43:21 -0400 Subject: [PATCH 4/5] feature/FOUR-14002 --- resources/js/processes/designer/AssetButtons.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/js/processes/designer/AssetButtons.vue b/resources/js/processes/designer/AssetButtons.vue index 4a7dec913c..c191989b4e 100755 --- a/resources/js/processes/designer/AssetButtons.vue +++ b/resources/js/processes/designer/AssetButtons.vue @@ -49,6 +49,9 @@ export default {