aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-25 20:07:27 -0800
committerMark Otto <[email protected]>2012-01-25 20:07:27 -0800
commitf62c9379fb60bfb70435517b4569f586ec729d5b (patch)
tree2fa38fa59761dd4eda1e7191eb6a29d36755e870 /lib
parente877d125d7a2c673fec4e63600c2d8544c3128f6 (diff)
downloadbootstrap-f62c9379fb60bfb70435517b4569f586ec729d5b.tar.xz
bootstrap-f62c9379fb60bfb70435517b4569f586ec729d5b.zip
remove all tablesorter assets and css
Diffstat (limited to 'lib')
-rw-r--r--lib/tables.less54
1 files changed, 0 insertions, 54 deletions
diff --git a/lib/tables.less b/lib/tables.less
index 4010f63ec..809c2f60e 100644
--- a/lib/tables.less
+++ b/lib/tables.less
@@ -136,57 +136,3 @@ table {
.span11 { .tableColumns(11); }
.span12 { .tableColumns(12); }
}
-
-
-
-// TABLESORTER
-// -----------
-// Support for the tablesorter jQuery plugin
-
-table {
- // Tablesorting styles w/ jQuery plugin
- .header {
- cursor: pointer;
- &:after {
- content: "";
- float: right;
- margin-top: 7px;
- border-width: 0 4px 4px;
- border-style: solid;
- border-color: @black transparent;
- visibility: hidden;
- }
- }
- // Style the sorted column headers (THs)
- .headerSortUp,
- .headerSortDown {
- background-color: #f7f7f9;
- text-shadow: 0 1px 1px rgba(255,255,255,.75);
- }
- // Style the ascending (reverse alphabetical) column header
- .header:hover {
- &:after {
- visibility:visible;
- }
- }
- // Style the descending (alphabetical) column header
- .headerSortDown,
- .headerSortDown:hover {
- &:after {
- visibility:visible;
- .opacity(60);
- }
- }
- // Style the ascending (reverse alphabetical) column header
- .headerSortUp {
- &:after {
- border-bottom: none;
- border-left: 4px solid transparent;
- border-right: 4px solid transparent;
- border-top: 4px solid @black;
- visibility:visible;
- .box-shadow(none); //can't add boxshadow to downward facing arrow :(
- .opacity(60);
- }
- }
-}