aboutsummaryrefslogtreecommitdiff
path: root/app/static/resources/datatables/css/dataTables.material.css
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-08-30 11:42:58 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-08-30 11:42:58 +0100
commit7a338dcdf3cb8d8a9e5e7855ad1402336cd4ee79 (patch)
tree6c7bd3147a6dac28442a937196aa6ad63578dad7 /app/static/resources/datatables/css/dataTables.material.css
parentAdd full name column to User table (diff)
downloadAnnotateChange-7a338dcdf3cb8d8a9e5e7855ad1402336cd4ee79.tar.gz
AnnotateChange-7a338dcdf3cb8d8a9e5e7855ad1402336cd4ee79.zip
Serve all necessary resources locally
Diffstat (limited to 'app/static/resources/datatables/css/dataTables.material.css')
-rw-r--r--app/static/resources/datatables/css/dataTables.material.css87
1 files changed, 87 insertions, 0 deletions
diff --git a/app/static/resources/datatables/css/dataTables.material.css b/app/static/resources/datatables/css/dataTables.material.css
new file mode 100644
index 0000000..c00f2e9
--- /dev/null
+++ b/app/static/resources/datatables/css/dataTables.material.css
@@ -0,0 +1,87 @@
+div.dataTables_wrapper div.dataTables_filter {
+ text-align: right;
+}
+div.dataTables_wrapper div.dataTables_filter input {
+ margin-left: 0.5em;
+}
+div.dataTables_wrapper div.dataTables_info {
+ padding-top: 10px;
+ white-space: nowrap;
+}
+div.dataTables_wrapper div.dataTables_processing {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 200px;
+ margin-left: -100px;
+ text-align: center;
+}
+div.dataTables_wrapper div.dataTables_paginate {
+ text-align: right;
+}
+div.dataTables_wrapper div.mdl-grid.dt-table {
+ padding-top: 0;
+ padding-bottom: 0;
+}
+div.dataTables_wrapper div.mdl-grid.dt-table > div.mdl-cell {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
+table.dataTable thead > tr > td.sorting_asc,
+table.dataTable thead > tr > td.sorting_desc,
+table.dataTable thead > tr > td.sorting {
+ padding-right: 30px;
+}
+table.dataTable thead > tr > th:active,
+table.dataTable thead > tr > td:active {
+ outline: none;
+}
+table.dataTable thead .sorting,
+table.dataTable thead .sorting_asc,
+table.dataTable thead .sorting_desc,
+table.dataTable thead .sorting_asc_disabled,
+table.dataTable thead .sorting_desc_disabled {
+ cursor: pointer;
+ position: relative;
+}
+table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
+table.dataTable thead .sorting_asc:before,
+table.dataTable thead .sorting_asc:after,
+table.dataTable thead .sorting_desc:before,
+table.dataTable thead .sorting_desc:after,
+table.dataTable thead .sorting_asc_disabled:before,
+table.dataTable thead .sorting_asc_disabled:after,
+table.dataTable thead .sorting_desc_disabled:before,
+table.dataTable thead .sorting_desc_disabled:after {
+ position: absolute;
+ bottom: 11px;
+ display: block;
+ opacity: 0.3;
+ font-size: 1.3em;
+}
+table.dataTable thead .sorting:before,
+table.dataTable thead .sorting_asc:before,
+table.dataTable thead .sorting_desc:before,
+table.dataTable thead .sorting_asc_disabled:before,
+table.dataTable thead .sorting_desc_disabled:before {
+ right: 1em;
+ content: "\2191";
+}
+table.dataTable thead .sorting:after,
+table.dataTable thead .sorting_asc:after,
+table.dataTable thead .sorting_desc:after,
+table.dataTable thead .sorting_asc_disabled:after,
+table.dataTable thead .sorting_desc_disabled:after {
+ right: 0.5em;
+ content: "\2193";
+}
+table.dataTable thead .sorting_asc:before,
+table.dataTable thead .sorting_desc:after {
+ opacity: 1;
+}
+table.dataTable thead .sorting_asc_disabled:before,
+table.dataTable thead .sorting_desc_disabled:after {
+ opacity: 0;
+}