This is an automated email from the ASF dual-hosted git repository.

andytaylor pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis-console.git


The following commit(s) were added to refs/heads/main by this push:
     new 01ff0a6  ARTEMIS-5216 fix colors for internal objects and bigger border
01ff0a6 is described below

commit 01ff0a61e954eee467881a75576d1c2645d3385c
Author: Erwin Dondorp <[email protected]>
AuthorDate: Sat Dec 14 02:47:22 2024 +0100

    ARTEMIS-5216 fix colors for internal objects and bigger border
---
 .../artemis-extension/public/css/activemq.css                    | 9 +++++++--
 .../src/artemis-extension/artemis/brokers/BrokerDiagram.tsx      | 2 +-
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git 
a/artemis-console-extension/artemis-extension/public/css/activemq.css 
b/artemis-console-extension/artemis-extension/public/css/activemq.css
index 979fdea..d72c5de 100644
--- a/artemis-console-extension/artemis-extension/public/css/activemq.css
+++ b/artemis-console-extension/artemis-extension/public/css/activemq.css
@@ -54,32 +54,37 @@ svg.pf-v5-svg {
 
 .pf-topology__node.artemisBroker.pf-m-info .pf-topology__node__background {
   stroke: #801944;
+  stroke-width: 3;
   fill: #c12766;
 }
 
 .pf-topology__node.artemisBackupBroker.pf-m-info 
.pf-topology__node__background {
   stroke: #82171b;
+  stroke-width: 3;
   fill: #cf242a;
 }
 
 .pf-topology__node.artemisAddress.pf-m-info .pf-topology__node__background {
   stroke:  #2b326e;
+  stroke-width: 3;
   fill: #3e489f;
 }
 
 .pf-topology__node.artemisQueue.pf-m-info .pf-topology__node__background {
   stroke:  #50621d;
+  stroke-width: 3;
   fill: #78932c;
 }
 
 .pf-topology__node.artemisInternalAddress.pf-m-info 
.pf-topology__node__background {
   stroke:  #2b326e;
+  stroke-width: 3;
   fill: #fff;
 }
 
-
-.pf-topology__node.artemisInternalAddress.pf-m-info 
.pf-topology__node__background {
+.pf-topology__node.artemisInternalQueue.pf-m-info 
.pf-topology__node__background {
   stroke:  #50621d;
+  stroke-width: 3;
   fill: #fff;
 }
 
diff --git 
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/brokers/BrokerDiagram.tsx
 
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/brokers/BrokerDiagram.tsx
index 6252ca3..1d944c6 100644
--- 
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/brokers/BrokerDiagram.tsx
+++ 
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/brokers/BrokerDiagram.tsx
@@ -694,7 +694,7 @@ function addInternalQueue(address: string, queue: string, 
routingType: string, n
     status: NodeStatus.info,
     data: {
       badge: 'Internal Queue',
-      className: 'artemisInternalAddress',
+      className: 'artemisInternalQueue',
       address: address,
       queue: queue,
       routingType: routingType,


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to