reorganize the static folder structure
Before Width: | Height: | Size: 274 B After Width: | Height: | Size: 274 B |
Before Width: | Height: | Size: 226 B After Width: | Height: | Size: 226 B |
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 259 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 90 B After Width: | Height: | Size: 90 B |
Before Width: | Height: | Size: 118 B After Width: | Height: | Size: 118 B |
Before Width: | Height: | Size: 92 B After Width: | Height: | Size: 92 B |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
@ -1,6 +1,6 @@
|
|||
@import "bootstrap.min.css";
|
||||
@import url(http://fonts.googleapis.com/css?family=Lobster|Comfortaa);
|
||||
@import "jquery/jquery-ui.css";
|
||||
@import "jquery-ui.css";
|
||||
|
||||
html, body{
|
||||
margin-top: 25px;
|
||||
|
@ -48,7 +48,7 @@ div.topbar ul.secondary-nav { padding-right: 75px; }
|
|||
font-family: 'Comfortaa', arial, serif;
|
||||
height: 165px;
|
||||
padding-top: 15px;
|
||||
background-image: url("gradient.png");
|
||||
background-image: url("images/gradient.png");
|
||||
background-position: center top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
@ -135,9 +135,22 @@ div.topbar ul.secondary-nav { padding-right: 75px; }
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.edit img, .delete img{
|
||||
.bill-actions > .delete, .bill-actions > .edit {
|
||||
font-size: 0px;
|
||||
display: block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-right: 5px;
|
||||
margin: 2px;
|
||||
margin-left: 5px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.bill-actions > .delete{
|
||||
background: url('images/delete.png') no-repeat right;
|
||||
}
|
||||
|
||||
.bill-actions > .edit{
|
||||
background: url('images/edit.png') no-repeat right;
|
||||
}
|
||||
|
||||
.balance-value{
|
||||
|
@ -174,12 +187,12 @@ tr.payer_line .balance-name{
|
|||
}
|
||||
|
||||
.delete a, .delete a:hover {
|
||||
background: url('deleter.png') left no-repeat;
|
||||
background: url('images/deleter.png') left no-repeat;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.reactivate a, .reactivate a:hover {
|
||||
background: url('reactivate.png') left no-repeat;
|
||||
background: url('images/reactivate.png') left no-repeat;
|
||||
color: white;
|
||||
}
|
||||
|
|
@ -1,11 +1,10 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% block head %}
|
||||
<script src="{{ url_for("static", filename="jquery/js/jquery-ui.js") }}"></script>
|
||||
<script src="{{ url_for("static", filename="js/jquery-ui.js") }}"></script>
|
||||
{% if g.lang != "en" %}
|
||||
<script src="{{ url_for("static", filename="jquery/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script>
|
||||
<script src="{{ url_for("static", filename="js/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script>
|
||||
{% endif %}
|
||||
<script src="{{ url_for("static", filename="ihatemoney/custom.js") }}"></script>
|
||||
{% endblock %}
|
||||
{% block js %}
|
||||
$('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block head %}
|
||||
<script src="{{ url_for("static", filename="ihatemoney/custom.js") }}"></script>
|
||||
{% endblock %}
|
||||
{% block js %}
|
||||
auto_hide_default_text('#name');
|
||||
{% endblock %}
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
<head>
|
||||
<title>{{ _("Account manager") }}{% block title %}{% endblock %}</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<link rel=stylesheet type=text/css href="{{ url_for("static", filename='main.css') }}">
|
||||
<script src="{{ url_for("static", filename="jquery/js/jquery-1.6.2.min.js") }}"></script>
|
||||
<link rel=stylesheet type=text/css href="{{ url_for("static", filename='css/main.css') }}">
|
||||
<script src="{{ url_for("static", filename="js/jquery-1.6.2.min.js") }}"></script>
|
||||
<script src="{{ url_for("static", filename="js/ihatemoney.js") }}"></script>
|
||||
{% block head %}{% endblock %}
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
$(document).ready(function(){
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
{% block content %}
|
||||
{% endblock %}
|
|
@ -2,11 +2,10 @@
|
|||
|
||||
{% block title %}- {{ g.project.name }}{% endblock %}
|
||||
{% block head %}
|
||||
<script src="{{ url_for("static", filename="jquery/js/jquery-ui.js") }}"></script>
|
||||
<script src="{{ url_for("static", filename="js/jquery-ui.js") }}"></script>
|
||||
{% if g.lang != "en" %}
|
||||
<script src="{{ url_for("static", filename="jquery/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script>
|
||||
<script src="{{ url_for("static", filename="js/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script>
|
||||
{% endif %}
|
||||
<script src="{{ url_for("static", filename="ihatemoney/custom.js") }}"></script>
|
||||
{% endblock %}
|
||||
{% block js %}
|
||||
|
||||
|
|