mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
Minor CSS changes
This commit is contained in:
parent
0fe49c13d5
commit
3bf8cececf
2 changed files with 6 additions and 3 deletions
|
@ -149,6 +149,9 @@ div.topbar ul.secondary-nav { padding-right: 75px; }
|
||||||
}
|
}
|
||||||
|
|
||||||
#overlay-delete, #overlay-reactivate {
|
#overlay-delete, #overlay-reactivate {
|
||||||
|
width: 28px;
|
||||||
|
height: 28px;
|
||||||
|
margin-top: 2px;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
display:none;
|
display:none;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
// display the form when clicking on the "add bill" button
|
// display the form when clicking on the "add bill" button
|
||||||
var show_form = function(){
|
var show_form = function(){
|
||||||
$('#bill-form').slideDown(1000);
|
$('#bill-form').slideDown(100);
|
||||||
$("#hide-bill-form").show();
|
$("#hide-bill-form").show();
|
||||||
$("#new-bill").hide();
|
$("#new-bill").hide();
|
||||||
return false;
|
return false;
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
// and provide a mechanism to hide it back
|
// and provide a mechanism to hide it back
|
||||||
var hide_form = function(){
|
var hide_form = function(){
|
||||||
$("#bill-form").slideUp(1000);
|
$("#bill-form").slideUp(100);
|
||||||
$("#new-bill").show();
|
$("#new-bill").show();
|
||||||
$("#hide-bill-form").hide();
|
$("#hide-bill-form").hide();
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue