8000 [WebProfilerBundle] Fix dark theme selected line highlight color & reuse css vars by ogizanagi · Pull Request #46565 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WebProfilerBundle] Fix dark theme selected line highlight color & reuse css vars #46565

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[WebProfilerBundle] Fix dark theme selected line highlight color & re…
…use css vars
  • Loading branch information
ogizanagi committed Jun 3, 2022
commit 5514bdf4877f72b9b9d73ed6f30ff7d38bb69e46
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
--highlight-default: #222222;
--highlight-keyword: #a71d5d;
--highlight-string: #183691;
--highlight-selected-line: rgba(255, 255, 153, 0.5);
--base-0: #fff;
--base-1: #f5f5f5;
--base-2: #e0e0e0;
Expand Down Expand Up @@ -80,6 +81,7 @@
--highlight-default: var(--base-6);
--highlight-keyword: #ff413c;
--highlight-string: #70a6fd;
--highlight-selected-line: rgba(14, 14, 14, 0.5);
--base-0: #2e3136;
--base-1: #444;
--base-2: #666;
Expand Down Expand Up @@ -1091,15 +1093,15 @@ table.logs .metadata {
padding: 0;
}
#collector-content .sf-validator .trace li.selected {
background: rgba(255, 255, 153, 0.5);
background: var(--highlight-selected-line);
}

{# Messenger panel
========================================================================= #}

#collector-content .message-bus .trace {
border: 1px solid #DDD;
background: #FFF;
border: var(--border);
background: var(--base-0);
padding: 10px;
margin: 0.5em 0;
overflow: auto;
Expand All @@ -1112,7 +1114,7 @@ table.logs .metadata {
padding: 0;
}
#collector-content .message-bus .trace li.selected {
background: rgba(255, 255, 153, 0.5);
background: var(--highlight-selected-line);
}

{# Dump panel
Expand Down
0