Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Fixed the down state for theme d that was causing extra styles to be …
Browse files Browse the repository at this point in the history
…erroneously applied which make the list jump and look chunky when clicked.
  • Loading branch information
toddparker committed May 13, 2011
1 parent 9be1078 commit 3d0064b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions themes/default/jquery.mobile.theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -454,18 +454,7 @@
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#ffffff')";
}
.ui-btn-down-d a.ui-link-inherit {
border: 1px solid #808080;
background: #ced0d2;
font-weight: bold;
color: #111;
text-shadow: none;
background-image: -moz-linear-gradient(top,
#cccccc,
#eeeeee);
background-image: -webkit-gradient(linear,left top,left bottom,
color-stop(0, #cccccc),
color-stop(1, #eeeeee));
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#cccccc', EndColorStr='#eeeeee')";
}
.ui-btn-up-d,
.ui-btn-hover-d,
Expand Down

1 comment on commit 3d0064b

@toddparker
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @epsd for the help on tracking this down. Closes #1624.

Please sign in to comment.