8000 [WebProfilerBundle] Fix vertical alignment for profiler open action by ogizanagi · Pull Request #20702 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WebProfilerBundle] Fix vertical alignment for profiler open action #20702

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
Dec 2, 2016
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,23 @@ body {
background-color: #222;
position: fixed;
top: 0;
display: flex;
width: 100%;
}
.header h1 {
float: left;
color: #FFF;
font-weight: normal;
font-size: 21px;
margin: 0;
padding: 10px 10px 8px;
word-break: break-all;
}

a.doc {
float: right;
color: #FFF;
text-decoration: none;
margin: auto;
margin-right: 10px;
}

a.doc:hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

{% block body %}
<div class="header">
<a class="doc" href="https://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION') }}/reference/configuration/framework.html#ide" rel="help">Open in your IDE?</a>
<h1>{{ file }} <small>line {{ line }}</small></h1>
<a class="doc" href="https://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION') }}/reference/configuration/framework.html#ide" rel="help">Open in your IDE?</a>
</div>
<div class="source">
{{ filename|file_excerpt(line, -1) }}
Expand Down
0