Skip to content

Fix dark mode MR page sourcegraph conflicts

Simon Knox requested to merge psi-css-fix into master

What does this MR do and why?

Fix bug introduced by !105041 (merged)

Screenshots

Before After
Screen_Shot_2022-12-01_at_8.34.37_PM Screen_Shot_2022-12-01_at_8.30.45_PM

How to set up and validate locally

snippet to apply changes to MR page:

var style = document.createElement('style');
style.innerText = `body.gl-dark {
  color-scheme: dark;
  --gray-10: #1f1e24;
  --border-color: #434248;
  --white: #333238;
  --black: #fff;
}`
document.head.appendChild(style);

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Paul Slaughter

Merge request reports

Loading