Skip to content

Commit

Permalink
Merge branch '5.4' into 6.0
Browse files Browse the repository at this point in the history
* 5.4:
  [Console] Prevent PHP 8.1 str_replace deprec on null
  Improve DE translations for Form/Validator
  [Serializer] Fix ignore attribute in Xml files
  [Console] Escape % in command name & description from getDefault*()
  [WebProfilerBundle] Fix dark theme selected line highlight color & reuse css vars
  [Mime] Check that the path is a file in the DataPart::fromPath
  [Cache] do not pass null to strlen()
  [Mailer] Sort transports alphabetically
  [Security] Fix some phpdoc
  [Serializer] Get attributeContext after converting name
  • Loading branch information
derrabus committed Jun 6, 2022
2 parents 3511c83 + f61c99d commit 1a574f8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Resources/views/Profiler/profiler.css.twig
Expand Up @@ -51,6 +51,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 @@ -104,6 +105,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 @@ -1296,15 +1298,15 @@ tr.log-status-silenced {
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 @@ -1317,7 +1319,7 @@ tr.log-status-silenced {
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 comments on commit 1a574f8

Please sign in to comment.