Navigation Menu

Skip to content
This repository has been archived by the owner on Mar 2, 2021. It is now read-only.

Commit

Permalink
Main style
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia authored and Crosspop committed Feb 15, 2013
1 parent 8ee3bd2 commit febba79
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions asuka/templates/base.html.jinja
Expand Up @@ -81,10 +81,10 @@
}
main {
display: block;
padding: 20px 0 10px 20px;
padding: 20px;
color: #333;
}
main a {
main a, main td a, main th a {
color: black;
text-decoration: none;
border-bottom: 1px solid {{ key_color }};
Expand Down
15 changes: 10 additions & 5 deletions asuka/templates/home.html.jinja
Expand Up @@ -6,6 +6,7 @@

{% block body %}
{{ super() }}
<h2>Deployed branches</h2>
<table>
<thead>
<tr>
Expand Down Expand Up @@ -49,11 +50,15 @@
<form action="{{ request.build_url('deploy_manually') }}"
method="post" class="deploy">
<fieldset>
<label>Manual deployment</label>
<label>Branch <input type="text" name="branch"
placeholder="e.g. pull-5, branch-master"></label>
<label>Commit <input type="text" name="commit" maxlength="40"
placeholder="e.g. 5fa1779c62b5"></label>
<legend>Manual deployment</legend>
<div>
<label>Branch <input type="text" name="branch"
placeholder="e.g. pull-5, branch-master"></label>
</div>
<div>
<label>Commit <input type="text" name="commit" maxlength="40"
placeholder="e.g. 5fa1779c62b5"></label>
</div>
<input type="submit" value="Deploy">
</fieldset>
</form>
Expand Down
4 changes: 2 additions & 2 deletions asuka/templates/log_list.html.jinja
@@ -1,12 +1,12 @@
{% extends 'base.html.jinja' %}

{% block title -%}
Build logs &mdash; {{ super() }}
Builds &mdash; {{ super() }}
{%- endblock %}

{% block body %}
{{ super() }}
<h2>Build logs</h2>
<h2>Builds</h2>
{% if builds %}
<ul>
{% for build in builds %}
Expand Down

0 comments on commit febba79

Please sign in to comment.