Skip to content

Commit

Permalink
misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TamaraShopsin committed May 23, 2012
1 parent 1b3f9f9 commit ab315f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 0 additions & 3 deletions mycustomstyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,5 @@ mycustomstyles
}


body .mceMenuItemSelected {
text-decoration: line-through;
}


6 changes: 5 additions & 1 deletion scripts/magic-arrows.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,16 @@ jQuery(document).ready(function(){
*/

/* if it is > 500px in height when displayed, add a closing button at the bottom */

/* if it is < 150px in height, move the closing button up */

jQuery(".aj-hidden").each(function(){
this.style.display = "block";
if(this.offsetHeight > 500){
jQuery(this).append( "<p class='closebtn2'><a class='aj-collapse' rel='" + this.id + "'>x</a></p>" );
}
else if(this.offsetHeight < 150){
this.firstChild.style.marginTop = "-10px";
}
this.style.display = "none";
jQuery(this).hide();
});
Expand Down
3 changes: 2 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ border: none;
border: none;
}


small {
font-family: Arial, Helvetica, Sans-Serif;
font-size: 0.9em;
Expand Down Expand Up @@ -763,7 +764,7 @@ margin-left: 0;}
height: 51px;
text-indent: -999em;
position: absolute;
left: 30px;
left: 27px;
}

.navigation .alignleft a:hover {
Expand Down

0 comments on commit ab315f3

Please sign in to comment.