diff options
| author | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-11-17 09:07:21 +0100 |
|---|---|---|
| committer | Arnaud Bos <arnaud.tlse@gmail.com> | 2011-11-17 09:07:21 +0100 |
| commit | 3bf8cececf19fbd47e19a9f60eb6d922106d61d0 (patch) | |
| tree | 27e18e201e5ac6f8a730cb4bf9a5d8f54e64033a | |
| parent | 0fe49c13d5512a2a172c47f3497c0442d909a040 (diff) | |
| download | ihatemoney-mirror-3bf8cececf19fbd47e19a9f60eb6d922106d61d0.zip ihatemoney-mirror-3bf8cececf19fbd47e19a9f60eb6d922106d61d0.tar.gz ihatemoney-mirror-3bf8cececf19fbd47e19a9f60eb6d922106d61d0.tar.bz2 | |
Minor CSS changes
| -rw-r--r-- | budget/static/main.css | 5 | ||||
| -rw-r--r-- | budget/templates/list_bills.html | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/budget/static/main.css b/budget/static/main.css index 3d3236f..94ac842 100644 --- a/budget/static/main.css +++ b/budget/static/main.css @@ -1,4 +1,4 @@ -@import "bootstrap-1.0.0.min.css"; + @import "bootstrap-1.0.0.min.css"; @import url(http://fonts.googleapis.com/css?family=Lobster|Comfortaa); @import "jquery/jquery-ui.css"; @@ -149,6 +149,9 @@ div.topbar ul.secondary-nav { padding-right: 75px; } } #overlay-delete, #overlay-reactivate { + width: 28px; + height: 28px; + margin-top: 2px; position:absolute; cursor:pointer; display:none; diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html index d9bbd66..5563a1e 100644 --- a/budget/templates/list_bills.html +++ b/budget/templates/list_bills.html @@ -16,7 +16,7 @@ // display the form when clicking on the "add bill" button var show_form = function(){ - $('#bill-form').slideDown(1000); + $('#bill-form').slideDown(100); $("#hide-bill-form").show(); $("#new-bill").hide(); return false; @@ -24,7 +24,7 @@ // and provide a mechanism to hide it back var hide_form = function(){ - $("#bill-form").slideUp(1000); + $("#bill-form").slideUp(100); $("#new-bill").show(); $("#hide-bill-form").hide(); return false; |
