diff --git a/README.md b/README.md index 4671ef6..a814e0f 100644 --- a/README.md +++ b/README.md @@ -83,9 +83,11 @@ If you want to create your own custom theme, you can modify the `themeMap` objec ### v1.3.6 +- [Feature] Unix & ISO time stamp converter addedin popup - [Improvement] load time was decreased by optimizing the extension runtime. - [BugFix] Events includes further minor UI tweaks and consistent bit order - [Release] Adding Release on github to quickly get binary via github. +- [BugFix] Toolbar will not be compromised with Super Easy extension. ### v1.3.5 diff --git a/Whatsnew/data.js b/Whatsnew/data.js index 1b95d01..870f2f8 100644 --- a/Whatsnew/data.js +++ b/Whatsnew/data.js @@ -6,6 +6,9 @@ const data_updates = { bugFixes: [ + { + description: "Toolbar will not be compromised with Super Easy extension", + }, { description: "Events includes further minor UI tweaks and consistent bit order", }, @@ -17,6 +20,9 @@ const data_updates = { }, ], features: [ + { + description: "Unix & ISO time stamp converter addedin popup", + }, { description: "Adding Release on github to quickly get binary via github.", }, diff --git a/bin/Dark CPI Extension.zip b/bin/Dark CPI Extension.zip index 224cf6c..a5a2d95 100644 Binary files a/bin/Dark CPI Extension.zip and b/bin/Dark CPI Extension.zip differ diff --git a/docs/readme/README.md b/docs/readme/README.md index 4671ef6..a814e0f 100644 --- a/docs/readme/README.md +++ b/docs/readme/README.md @@ -83,9 +83,11 @@ If you want to create your own custom theme, you can modify the `themeMap` objec ### v1.3.6 +- [Feature] Unix & ISO time stamp converter addedin popup - [Improvement] load time was decreased by optimizing the extension runtime. - [BugFix] Events includes further minor UI tweaks and consistent bit order - [Release] Adding Release on github to quickly get binary via github. +- [BugFix] Toolbar will not be compromised with Super Easy extension. ### v1.3.5 diff --git a/host/CPI/content/content.css b/host/CPI/content/content.css index 1a4e4a7..4240e03 100644 --- a/host/CPI/content/content.css +++ b/host/CPI/content/content.css @@ -49,6 +49,12 @@ html:is([data-cpi-dark='sap_horizon_dark'], [data-cpi-dark='sap_horizon']) .sapU margin-right: 0.5rem; } +.modToolbar > ul > li { + margin-right: 0.75rem; + margin-left: 0.75rem; + padding-top: 0.5rem; +} + .cpiBadgeIndicator { position: absolute; top: 0; diff --git a/popup/popup.css b/popup/popup.css index 112cccd..165aa8c 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -46,13 +46,18 @@ main h1 { body { font-family: Arial, sans-serif; text-align: center; - width: max-content; max-height: 800px; margin: 0; background-color: var(--bg-color); color: var(--text-color); } +span#output-text { + white-space: pre-wrap; + white-space-collapse: break-spaces; + text-wrap: pretty; +} + .darkcpiglobal .navbar { justify-content: space-between; } @@ -70,6 +75,10 @@ main:not(:has(div[role='alert'])) { } } +.stat-value { + font-size: large !important; +} + .alert.alert-error { border-radius: 0px; font-size: medium; @@ -96,8 +105,11 @@ main:not(:has(div[role='alert'])) { .alert { grid-auto-flow: column; - grid-template-columns: auto minmax(auto, 1fr); + /* grid-template-columns: auto minmax(auto, 1fr); */ justify-items: start; text-align: start; + span { + color: var(--text-color); + } } } diff --git a/popup/popup.html b/popup/popup.html index a6229f9..2b99344 100644 --- a/popup/popup.html +++ b/popup/popup.html @@ -34,9 +34,41 @@