Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4609438

Browse files
committed
Fixes and tweaks
1 parent dc67589 commit 4609438

17 files changed

+302
-230
lines changed

src/Symfony/Bundle/WebProfilerBundle/Controller/ProfilerController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function panelAction(Request $request, string $token): Response
113113
'request' => $request,
114114
'templates' => $this->getTemplateManager()->getNames($profile),
115115
'is_ajax' => $request->isXmlHttpRequest(),
116-
'profiler_markup_version' => 2, // 1 = original profiler, 2 = Symfony 2.8+ profiler
116+
'profiler_markup_version' => 3, // 1 = original profiler, 2 = Symfony 2.8+ profiler, 3 = Symfony 6.2+ profiler
117117
]);
118118
}
119119

@@ -157,7 +157,7 @@ public function toolbarAction(Request $request, string $token = null): Response
157157
'templates' => $this->getTemplateManager()->getNames($profile),
158158
'profiler_url' => $url,
159159
'token' => $token,
160-
'profiler_markup_version' => 2, // 1 = original toolbar, 2 = Symfony 2.8+ toolbar
160+
'profiler_markup_version' => 3, // 1 = original toolbar, 2 = Symfony 2.8+ profiler, 3 = Symfony 6.2+ profiler
161161
]);
162162
}
163163

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/arrow-corner-left-down.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Icon/forward.svg

Lines changed: 1 addition & 1 deletion
Loading
File renamed without changes.
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading
Lines changed: 8 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,3 @@
1-
{# Normalization
2-
(normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css)
3-
========================================================================= #}
4-
*{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}
5-
61
:root {
7-
--font-family-system: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8-
--font-family-monospace: "Ubuntu Mono", "JetBrains Mono", ui-monospace, "Roboto Mono", SFMono-Regular, Menlo, Monaco, Consolas,"Liberation Mono", "Courier New", monospace;
92

10-
--white: #fff;
11-
--black: #000;
12-
--gray-50: #fafafa;
13-
--gray-100: #f5f5f5;
14-
--gray-200: #e5e5e5;
15-
--gray-300: #d4d4d4;
16-
--gray-400: #a3a3a3;
17-
--gray-500: #737373;
18-
--gray-600: #525252;
19-
--gray-700: #404040;
20-
--gray-800: #262626;
21-
--gray-900: #171717;
22-
--teal-50: #eff5f5;
23-
--teal-100: #deeaea;
24-
--teal-200: #bbd5d5;
25-
--teal-300: #99bfbf;
26-
--teal-400: #76a9a9;
27-
--teal-500: #598e8e;
28-
--teal-600: #436c6c;
29-
--teal-700: #2e4949;
30-
--teal-800: #182727;
31-
--teal-900: #030404;
32-
--yellow-50: #fef7e1;
33-
--yellow-100: #fef2cd;
34-
--yellow-200: #fde496;
35-
--yellow-300: #fcd55f;
36-
--yellow-400: #fbc728;
37-
--yellow-500: #e6af05;
38-
--yellow-600: #af8503;
39-
--yellow-700: #785b02;
40-
--yellow-800: #413101;
41-
--yellow-900: #0a0800;
42-
--red-50: #FEFBFC;
43-
--red-100: #FCE9ED;
44-
--red-200: #F5B8C5;
45-
--red-300: #EF869C;
46-
--red-400: #E85574;
47-
--red-500: #E1244B;
48-
--red-600: #B41939;
49-
--red-700: #83122A;
50-
--red-800: #510B1A;
51-
--red-900: #20040A;
523
}

0 commit comments

Comments
 (0)