From db14d6ee0d93a3b46d3a1e6e1021d170a2edf937 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sat, 31 May 2025 00:23:43 -0600 Subject: [PATCH] Updated Node Styling --- Data/Server/WebUI/src/Borealis.css | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Data/Server/WebUI/src/Borealis.css b/Data/Server/WebUI/src/Borealis.css index e441f7e..24c28f5 100644 --- a/Data/Server/WebUI/src/Borealis.css +++ b/Data/Server/WebUI/src/Borealis.css @@ -66,7 +66,11 @@ /* Borealis Node Styling */ .borealis-node { - background: #2c2c2c; + background: linear-gradient( + to bottom, + #2c2c2c 60%, + #232323 100% + ); border: 1px solid #3a3a3a; border-radius: 4px; color: #ccc; @@ -78,6 +82,22 @@ 0 0 10px rgba(88, 166, 255, 0.15); transition: box-shadow 0.3s ease-in-out; } +.borealis-node::before { + content: ""; + display: block; + position: absolute; + left: 0; + top: 0; + width: 3px; /* Accent width */ + height: 100%; + background: linear-gradient( + to bottom, + #58a6ff 0%, + #0475c2 100% + ); /* Or any accent color(s) you want */ + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} .borealis-node-header { background: #232323; padding: 6px 10px;