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