Changeset 4979
- Timestamp:
- 08/14/2011 10:08:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/_inc/css/default.css
r4961 r4979 1682 1682 div.generic-button a, 1683 1683 .comment-reply-link { 1684 background: #fff; 1685 background: -webkit-gradient(linear, left top, left bottom, from(white), to(#ededed)); 1686 background: -moz-linear-gradient(top, white, #ededed); 1687 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); 1684 background: #fff; /* Old browsers */ 1685 background: -moz-linear-gradient(top, #ffffff 0%, #ededed 100%); /* FF3.6+ */ 1686 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed)); /* Chrome,Safari4+ */ 1687 background: -webkit-linear-gradient(top, #ffffff 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */ 1688 background: -o-linear-gradient(top, #ffffff 0%,#ededed 100%); /* Opera11.10+ */ 1689 background: -ms-linear-gradient(top, #ffffff 0%,#ededed 100%); /* IE10+ */ 1690 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */ 1691 background: linear-gradient(top, #ffffff 0%,#ededed 100%); /* W3C */ 1688 1692 border: 1px solid #ccc; 1689 1693 -moz-border-radius: 3px; … … 1710 1714 .comment-reply-link:hover { 1711 1715 background: #ededed; 1712 background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); 1713 background: -moz-linear-gradient(top, #fff, #e0e0e0); 1714 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc'); 1716 background: -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%); /* FF3.6+ */ 1717 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */ 1718 background: -webkit-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */ 1719 background: -o-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Opera11.10+ */ 1720 background: -ms-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* IE10+ */ 1721 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */ 1722 background: linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* W3C */ 1715 1723 border: 1px solid #bbb; 1716 1724 color: #555; … … 1741 1749 input[type="button"].loading, 1742 1750 input[type="reset"].loading { 1743 background-image: url( ../images/ajax-loader.gif ), -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); 1744 background-image: url( ../images/ajax-loader.gif ), -moz-linear-gradient(top, #fff, #e0e0e0); 1751 background-image: url( ../images/ajax-loader.gif ), -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%); /* FF3.6+ */ 1752 background-image: url( ../images/ajax-loader.gif ), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */ 1753 background-image: url( ../images/ajax-loader.gif ), -webkit-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */ 1754 background-image: url( ../images/ajax-loader.gif ), -o-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Opera11.10+ */ 1755 background-image: url( ../images/ajax-loader.gif ), -ms-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* IE10+ */ 1756 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */ 1757 background-image: url( ../images/ajax-loader.gif ), linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* W3C */ 1745 1758 } 1746 1759 a.button.loading:hover, … … 1748 1761 input[type="button"].loading:hover, 1749 1762 input[type="reset"].loading:hover { 1750 background-image: url( ../images/ajax-loader.gif ), -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); 1751 background-image: url( ../images/ajax-loader.gif ), -moz-linear-gradient(top, #fff, #e0e0e0); 1752 border: 1px solid #ccc; 1763 background-image: url( ../images/ajax-loader.gif ), -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%); /* FF3.6+ */ 1764 background-image: url( ../images/ajax-loader.gif ), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */ 1765 background-image: url( ../images/ajax-loader.gif ), -webkit-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */ 1766 background-image: url( ../images/ajax-loader.gif ), -o-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* Opera11.10+ */ 1767 background-image: url( ../images/ajax-loader.gif ), -ms-linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* IE10+ */ 1768 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */ 1769 background-image: url( ../images/ajax-loader.gif ), linear-gradient(top, #ffffff 0%,#e0e0e0 100%); /* W3C */ 1770 border: 1px solid #ccc; 1753 1771 } 1754 1772 input[type="submit"].pending, … … 1776 1794 div.pending a:hover, 1777 1795 a.disabled:hover { 1778 background: -webkit-gradient(linear, left top, left bottom, from(white), to(#ededed)); 1796 background: -moz-linear-gradient(top, #ffffff 0%, #ededed 100%); /* FF3.6+ */ 1797 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed)); /* Chrome,Safari4+ */ 1798 background: -webkit-linear-gradient(top, #ffffff 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */ 1799 background: -o-linear-gradient(top, #ffffff 0%,#ededed 100%); /* Opera11.10+ */ 1800 background: -ms-linear-gradient(top, #ffffff 0%,#ededed 100%); /* IE10+ */ 1801 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */ 1802 background: linear-gradient(top, #ffffff 0%,#ededed 100%); /* W3C */ 1779 1803 border-color: #eee; 1780 1804 color: #bbb; … … 2000 2024 background: #ffeaa6; 2001 2025 background-image: -webkit-linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, 0)); 2026 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255, .5)), color-stop(100%,rgba(255, 255, 255, 0))); /* Chrome,Safari4+ */ 2002 2027 background-image: -moz-linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, 0)); 2003 2028 background-image: -ms-linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
Note: See TracChangeset
for help on using the changeset viewer.