소스 검색

[WebProfilerBundle] simplified theme

hhamon 14 년 전
부모
커밋
f4f78d47c8

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 1 - 128
src/Symfony/Bundle/WebProfilerBundle/Resources/public/css/profiler.css


+ 2 - 2
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/layout.html.twig

@@ -62,9 +62,9 @@
                         </ul>
                     {% endif %}
 
-                    {# render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } #}
+                    {% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
                     
-                    {# include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only #}
+                    {% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
 
                 </div>
 

+ 11 - 8
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/notfound.html.twig

@@ -12,14 +12,17 @@
     </div>
 
     <table>
-        <tr><td class="menu">
-            {% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
+        <tr>
+            <td class="menu">
+                {% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
 
-            {% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
-        </td><td class="main">
-            <div class="content">
-                <h2>Token "{{ token }}" does not exist.</h2>
-            </div>
-        </td></tr>
+                {% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
+            </td>
+            <td class="main">
+                <div class="content">
+                    <h2>Token "{{ token }}" does not exist.</h2>
+                </div>
+            </td>
+        </tr>
     </table>
 {% endblock %}