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 bb4cb3a..6f0bdbb 100644 --- a/force-app/main/default/lwc/UtilityComponents/lwc/splitscreen/splitscreen.js +++ b/force-app/main/default/lwc/UtilityComponents/lwc/splitscreen/splitscreen.js @@ -17,13 +17,9 @@ 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}%;`; - } - return "width: 100%;"; + if (this.closeLog) { return 'width: 0%;' } + else if (!this.fullScreen) { return `width: ${100 - this.leftWidth}%;` } + else { return 'width: 100%;' } } startResize(event) { 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 @@