-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7780882
commit ca67ca0
Showing
156 changed files
with
36,850 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions
42
app/libs/tablesorter/addons/pager/jquery.tablesorter.pager.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* pager wrapper, div */ | ||
.tablesorter-pager { | ||
padding: 5px; | ||
} | ||
/* pager wrapper, in thead/tfoot */ | ||
td.tablesorter-pager { | ||
background-color: #e6eeee; | ||
margin: 0; /* needed for bootstrap .pager gets a 18px bottom margin */ | ||
} | ||
/* pager navigation arrows */ | ||
.tablesorter-pager img { | ||
vertical-align: middle; | ||
margin-right: 2px; | ||
cursor: pointer; | ||
} | ||
|
||
/* pager output text */ | ||
.tablesorter-pager .pagedisplay { | ||
padding: 0 5px 0 5px; | ||
width: auto; | ||
white-space: nowrap; | ||
text-align: center; | ||
} | ||
|
||
/* pager element reset (needed for bootstrap) */ | ||
.tablesorter-pager select { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/*** css used when "updateArrows" option is true ***/ | ||
/* the pager itself gets a disabled class when the number of rows is less than the size */ | ||
.tablesorter-pager.disabled { | ||
display: none; | ||
} | ||
/* hide or fade out pager arrows when the first or last row is visible */ | ||
.tablesorter-pager .disabled { | ||
/* visibility: hidden */ | ||
opacity: 0.5; | ||
filter: alpha(opacity=50); | ||
cursor: default; | ||
} |
Oops, something went wrong.