Author: gdaffa (gdaffa) Committer: GitHub (web-flow) Pusher: shivammathur Date: 2026-02-28T19:02:40+05:30
Commit: https://github.com/php/web-php/commit/0c7db7852a49f242099860c77ce47c481052e1e1 Raw diff: https://github.com/php/web-php/commit/0c7db7852a49f242099860c77ce47c481052e1e1.diff fix(css): Override `.token.operator` bg to `trasnparent` (#1839) Changed paths: M styles/code-syntax.css Diff: diff --git a/styles/code-syntax.css b/styles/code-syntax.css index 3c34b61d0a..4f9e73177a 100644 --- a/styles/code-syntax.css +++ b/styles/code-syntax.css @@ -43,6 +43,10 @@ pre.line-numbers .line-numbers-rows > span:before { padding-right: 1em !important; } +.token.operator { + background: transparent !important; +} + div.code-toolbar > .toolbar > .toolbar-item > a, div.code-toolbar > .toolbar > .toolbar-item > button, div.code-toolbar > .toolbar > .toolbar-item > span { color: #000; background: transparent;
