Skip to content

Commit

Permalink
*5863* Fixed font-sizer plugin hover display issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrider committed Sep 1, 2010
1 parent dff1d8b commit 15bc585
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions styles/common.css
Expand Up @@ -365,6 +365,11 @@ td.notificationFunction {
margin-left: 8px;
}

a.smallFont:hover {
background: url(../lib/pkp/templates/images/icons/font-down.png);
color: none;
}

.defaultFont {
/*if you want to hide the default font button, use display:none */
background: url(../lib/pkp/templates/images/icons/font-default.png);
Expand All @@ -378,6 +383,11 @@ td.notificationFunction {

}

a.defaultFont:hover {
background: url(../lib/pkp/templates/images/icons/font-default.png);
color: none;
}

.largeFont {
background: url(../lib/pkp/templates/images/icons/font-up.png);
outline: none;
Expand All @@ -388,6 +398,11 @@ td.notificationFunction {
height: 23px;
}

a.largeFont:hover {
background: url(../lib/pkp/templates/images/icons/font-up.png);
color: none;
}



/* @group Tag-it */
Expand Down Expand Up @@ -448,9 +463,9 @@ ul.tagit input[type="text"] {
}

ul.tagit li:after, ul.tagit li div:after {
content:" ";
content:" ";
display:block;
clear:none;
clear:none;
}

/* @end */
Expand Down

0 comments on commit 15bc585

Please sign in to comment.