Affix the sidebar
This commit is contained in:
parent
2872b3ce4a
commit
4949608980
2 changed files with 39 additions and 32 deletions
|
@ -1229,6 +1229,11 @@ nav {
|
||||||
//border-left:1px solid #cdcece;
|
//border-left:1px solid #cdcece;
|
||||||
//box-shadow:-3px 0 0 rgba(0,0,0,.05);
|
//box-shadow:-3px 0 0 rgba(0,0,0,.05);
|
||||||
|
|
||||||
|
#sidebar-inner {
|
||||||
|
position: fixed;
|
||||||
|
width: 180px;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {font-size:28px; font-weight:300;}
|
h1 {font-size:28px; font-weight:300;}
|
||||||
h2 {font-size:22px; font-weight:300; margin-bottom:20px;}
|
h2 {font-size:22px; font-weight:300; margin-bottom:20px;}
|
||||||
dl {padding-top:23px; border-top:1px solid #ddd; margin-top:5px;
|
dl {padding-top:23px; border-top:1px solid #ddd; margin-top:5px;
|
||||||
|
|
|
@ -1,37 +1,39 @@
|
||||||
<aside id="sidebar">
|
<aside id="sidebar">
|
||||||
<div class="result" data-result="{{ commit.status }}">
|
<div id="sidebar-inner">
|
||||||
<dl>
|
<div class="result" data-result="{{ commit.status }}">
|
||||||
<dd><span class="status">{{ commit.status }}</span></dd>
|
<dl>
|
||||||
<dd><strong>{{ commit.message }}</strong></dd>
|
<dd><span class="status">{{ commit.status }}</span></dd>
|
||||||
</dl>
|
<dd><strong>{{ commit.message }}</strong></dd>
|
||||||
</div>
|
</dl>
|
||||||
|
</div>
|
||||||
<dl ng-if="commit.duration != 0">
|
|
||||||
<dd><h1>{{ commit.duration | toDuration}}</h1></dd>
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
<dl>
|
<dl ng-if="commit.duration != 0">
|
||||||
<dd class="large" ng-if="repo.remote == 'gitlab.com' || repo.remote == 'github.com' || repo.remote == 'enterprise.github.com' ">
|
<dd><h1>{{ commit.duration | toDuration}}</h1></dd>
|
||||||
<strong>
|
</dl>
|
||||||
commit
|
|
||||||
<a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/commit/{{ commit.sha }}" >{{ commit.sha | shortHash}}</a>
|
<dl>
|
||||||
to <a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/tree/{{ commit.branch }}">{{ commit.branch }}</a> branch
|
<dd class="large" ng-if="repo.remote == 'gitlab.com' || repo.remote == 'github.com' || repo.remote == 'enterprise.github.com' ">
|
||||||
</strong>
|
<strong>
|
||||||
</dd>
|
commit
|
||||||
<dd class="large" ng-if="repo.remote == 'bitbucket.org' ">
|
<a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/commit/{{ commit.sha }}" >{{ commit.sha | shortHash}}</a>
|
||||||
<strong>
|
to <a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/tree/{{ commit.branch }}">{{ commit.branch }}</a> branch
|
||||||
commit
|
</strong>
|
||||||
<a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/commits/{{ commit.sha }}" >{{ commit.sha | shortHash}}</a>
|
</dd>
|
||||||
to <a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/src/?at={{ commit.branch }}">{{ commit.branch }}</a> branch
|
<dd class="large" ng-if="repo.remote == 'bitbucket.org' ">
|
||||||
</strong>
|
<strong>
|
||||||
</dd>
|
commit
|
||||||
<dd class="large" ng-if="repo.remote != 'gitlab.com' && repo.remote != 'github.com' && repo.remote != 'enterprise.github.com' && repo.remote != 'bitbucket.org' ">
|
<a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/commits/{{ commit.sha }}" >{{ commit.sha | shortHash}}</a>
|
||||||
<strong>commit <u>{{ commit.sha | shortHash}}</u> to <u>{{ commit.branch }}</u> branch</strong>
|
to <a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/src/?at={{ commit.branch }}">{{ commit.branch }}</a> branch
|
||||||
</dd>
|
</strong>
|
||||||
<dd ng-if="commit.finished_at != 0">{{ commit.finished_at | fromNow }}</dd>
|
</dd>
|
||||||
<dd ng-if="commit.finished_at == 0 && commit.started_at != 0">Started {{ commit.started_at | fromNow }}</dd>
|
<dd class="large" ng-if="repo.remote != 'gitlab.com' && repo.remote != 'github.com' && repo.remote != 'enterprise.github.com' && repo.remote != 'bitbucket.org' ">
|
||||||
<dd ng-if="commit.finished_at == 0 && commit.started_at == 0">Created {{ commit.created_at}}</dd>
|
<strong>commit <u>{{ commit.sha | shortHash}}</u> to <u>{{ commit.branch }}</u> branch</strong>
|
||||||
</dl>
|
</dd>
|
||||||
|
<dd ng-if="commit.finished_at != 0">{{ commit.finished_at | fromNow }}</dd>
|
||||||
|
<dd ng-if="commit.finished_at == 0 && commit.started_at != 0">Started {{ commit.started_at | fromNow }}</dd>
|
||||||
|
<dd ng-if="commit.finished_at == 0 && commit.started_at == 0">Created {{ commit.created_at}}</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<div id="main" class="output">
|
<div id="main" class="output">
|
||||||
|
|
Loading…
Reference in a new issue