Skip to content

Commit

Permalink
some random fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tfleish committed Apr 10, 2011
1 parent 26a0cc5 commit 1e5d71e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions css/bucketList.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}

#list {
height: 50%;
height: 30%;
width: 19%;
-moz-border-radius: 15px;
border-radius: 15px;
Expand Down Expand Up @@ -49,7 +49,7 @@
-moz-border-radius: 15px;
border-radius: 15px;
border: 1px solid black;
height: 50%;
height: 70%;
}

#taskInfo {
Expand All @@ -61,7 +61,7 @@
border: 1px solid black;
overflow-y: auto;
float: right;
height: 50%;
height: 30%;
width: 80%;
}

Expand Down
7 changes: 5 additions & 2 deletions css/newbucketList.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@
float: right;
}

#addCollabButton {
display: inline-block;
button#addCollabButton {
display: block;
width: 30px;
height: 30px;
margin: 0px auto;
}

#paperHolder {
Expand Down
2 changes: 1 addition & 1 deletion js/bucketList.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $(document).ready(function() {
$(".draggable").draggable( {containment: "#bulletin"} );
$(".resizable").resizable();
setAccordion();
});
});


// This function sets the taskInfo pannel to contain the appropriate information
Expand Down
4 changes: 3 additions & 1 deletion js/newbucketList.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ $(document).ready(function() {
$('ul.menu4').slideToggle('fast');
});

});
$( "#accordion" ).accordion();

});


// This function is called whenever we open a Bucket View on a paper
Expand Down

0 comments on commit 1e5d71e

Please sign in to comment.