From dd485e9cd030be98d6f063492cbd683c977ce6e9 Mon Sep 17 00:00:00 2001 From: Sreshta Gollapally Date: Mon, 4 Nov 2024 02:24:05 +0530 Subject: [PATCH] changed for log view and nav text color --- .../lwc/splitscreen/splitscreen.js | 1 - .../lwc/detailedLogViewer/detailedLogViewer.css | 15 ++++++++++++++- .../lwc/detailedLogViewer/detailedLogViewer.html | 11 ++++++----- .../lwc/detailedLogViewer/detailedLogViewer.js | 1 - .../lwc/logAnalysisView/logAnalysisView.js | 5 +++++ 5 files changed, 25 insertions(+), 8 deletions(-) diff --git a/force-app/main/default/lwc/UtilityComponents/lwc/splitscreen/splitscreen.js b/force-app/main/default/lwc/UtilityComponents/lwc/splitscreen/splitscreen.js index 718be4c..bb30691 100644 --- a/force-app/main/default/lwc/UtilityComponents/lwc/splitscreen/splitscreen.js +++ b/force-app/main/default/lwc/UtilityComponents/lwc/splitscreen/splitscreen.js @@ -14,7 +14,6 @@ export default class Splitscreen extends LightningElement { } //changes for close and fullscreen buttons get rightSectionStyle() { - console.log("fullscreen: right", this.fullScreen) if (this.closeLog) { return 'width: 0%;' } else if (!this.fullScreen) { return `width: ${100 - this.leftWidth}%;` } else { return 'width: 100%;' } diff --git a/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.css b/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.css index e0f4cd9..ff548db 100644 --- a/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.css +++ b/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.css @@ -5,7 +5,20 @@ height: 65vh; } -.nav-bar { +.nav-bar{ background-color: rgb(22 50 92); +} + +.logHead { color: white; + font-family: monospace; + font-size: 15px; } + +.nav-btn{ + --slds-c-icon-color-foreground:white; + --slds-c-button-color-border:white; + --slds-c-button-sizing-border:0px; +} + + diff --git a/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.html b/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.html index c159fac..e39a12a 100644 --- a/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.html +++ b/force-app/main/default/lwc/detailedLogViewer/detailedLogViewer.html @@ -1,6 +1,6 @@