mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
fixed linear gradients
This commit is contained in:
parent
4410926485
commit
b74808e43a
BIN
README.markdown
BIN
README.markdown
Binary file not shown.
@ -19,9 +19,9 @@
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#efefef));
|
||||
background-image: -webkit-linear-gradient(top, white, #efefef);
|
||||
background-image: -o-linear-gradient(top, white, #efefef);
|
||||
background-image: linear-gradient(top, white, #efefef);
|
||||
background-repeat: repeat-x;
|
||||
background-image: linear-gradient(to bottom, white, #efefef);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
-webkit-box-shadow: inset 0 1px 0 white;
|
||||
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
||||
box-shadow: inset 0 1px 0 white;
|
||||
|
@ -21,8 +21,8 @@
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555), to(#3c3c3c));
|
||||
background-image: -webkit-linear-gradient(top, #555, #3c3c3c);
|
||||
background-image: -o-linear-gradient(top, #555, #3c3c3c);
|
||||
background-image: linear-gradient(top, #555, #3c3c3c);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555', endColorstr='#3c3c3c', GradientType=0);
|
||||
background-image: linear-gradient(to bottom, #555,#3c3c3c);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#3c3c3c',GradientType=0 );
|
||||
background-repeat: repeat-x;
|
||||
border-right: #555 1px solid;
|
||||
text-shadow: 0 1px 0 rgba(128, 128, 128, 0.7);
|
||||
@ -63,8 +63,8 @@
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#195c93), to(#0e4776));
|
||||
background-image: -webkit-linear-gradient(top, #195c93, #0e4776);
|
||||
background-image: -o-linear-gradient(top, #195c93, #0e4776);
|
||||
background-image: linear-gradient(top, #195c93, #0e4776);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#195c93', endColorstr='#0e4776', GradientType=0);
|
||||
background-image: linear-gradient(to bottom, #195c93, #0e4776);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#195c93', endColorstr='#0e4776',GradientType=0 );
|
||||
}
|
||||
.tablesorter-grey .headerSortUp i,
|
||||
.tablesorter-grey .tablesorter-headerSortUp i,
|
||||
|
@ -82,7 +82,7 @@
|
||||
<td>Jul 6, 2006 8:14 AM</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>John</td>
|
||||
<td>Robin</td>
|
||||
<td>Hood</td>
|
||||
<td>33</td>
|
||||
<td>$19.99</td>
|
||||
|
@ -71,7 +71,7 @@
|
||||
</ul>
|
||||
</li>
|
||||
<li>Sort columns three through eight to see how the sort has changed. Note that the text is sorted separately from the numeric values.</li>
|
||||
<li>The <code>emptyTo</code> option defaults to bottom, so all empty cells will sort at the bottom of the table, except fo the second column.</li>
|
||||
<li>The <code>emptyTo</code> option defaults to bottom, so all empty cells will sort at the bottom of the table, except for the second column.</li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
<!-- demo css -->
|
||||
<style>
|
||||
.minitable {float:left;width:190px;height:260px;margin:5px;}
|
||||
.minitable {float:left;width:190px;margin:5px;}
|
||||
.minitable table {width:175px;margin:10px auto;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
|
||||
.minitable table th {font-size:11px;}
|
||||
.minitable table td {font-size:11px;padding:4px !important;text-align:center;}
|
||||
@ -14,7 +14,7 @@
|
||||
</style>
|
||||
|
||||
<!-- jQuery -->
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2/jquery.js"></script>
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
|
||||
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/cupertino/jquery-ui.css">
|
||||
|
||||
<!-- Tablesorter themes -->
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"version": "2.5",
|
||||
"version": "2.5.1",
|
||||
"title": "tablesorter",
|
||||
"author": {
|
||||
"name": "Christian Bach",
|
||||
|
Loading…
Reference in New Issue
Block a user