Skip to content

Commit 136189d

Browse files
Version 1.0.0
1 parent 8f2fb62 commit 136189d

File tree

423 files changed

+148830
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

423 files changed

+148830
-85
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
**/_notes
1+
**/_notes
2+
.bowerrc
3+
.yarnrc
4+
yarn.lock
5+
/example/favicon.ico
6+
/example/img

bower.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "Reload-Lab/jquery-tablePagination",
3+
"description": "Simple tables pagination solution for use with jQuery and Bootstrap 4",
4+
"main": "dist/jquery.tablePagination.js",
5+
"authors": [
6+
"Reload - Laboratorio Multimediale <info@reloadlab.it> (https://www.reloadlab.it)"
7+
],
8+
"license": "MIT",
9+
"keywords": [
10+
"jquery",
11+
"bootstrap4",
12+
"table pagination"
13+
],
14+
"homepage": "https://github.com/Reload-Lab/jquery-tablePagination",
15+
"ignore": [
16+
"**/.*",
17+
"node_modules",
18+
"bower_components",
19+
"test",
20+
"tests"
21+
],
22+
"repository": {
23+
"type": "git",
24+
"url": "git+https://github.com/Reload-Lab/jquery-tablePagination.git"
25+
},
26+
"dependencies": {
27+
"jquery": "^3.7.0",
28+
"jquery-migrate-official": "1.4.1",
29+
"bootstrap": "4.6.2",
30+
"font-awesome": "4.7.0",
31+
"jquery-babbq": "1.3.1"
32+
}
33+
}

dist/jquery.tablePagination.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
@charset "utf-8";
2+
/* CSS Document */
3+
4+
.tpHidden {
5+
display: none!important;
6+
}
7+
.tpContainer {
8+
display: flex;
9+
justify-content: flex-end;
10+
align-items: center;
11+
margin-bottom: 1rem;
12+
}
13+
.tpContainer .pages-count {
14+
flex: 1 1 auto;
15+
}
16+
.tpContainer .ctrl-bar {
17+
display: flex;
18+
}
19+
.tpContainer .rows-select {
20+
margin-left: 1rem;
21+
}
22+
.tpContainer .pagination {
23+
margin-bottom: 0;
24+
}
25+
.tpContainer .pagination .fa {
26+
line-height: 1.25;
27+
}
28+
@media only screen and (max-width: 991.99px) {
29+
30+
.tpContainer {
31+
flex-direction: column;
32+
align-items: flex-end;
33+
}
34+
.tpContainer .pages-count {
35+
margin-bottom: 8px;
36+
}
37+
}

0 commit comments

Comments
 (0)