Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKate Butler <kate@innocraft.com>2019-11-07 03:27:16 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-11-07 03:27:16 +0300
commit7529d6450eee3a2e01f25e3bfaa9793cf43c34e7 (patch)
tree1750eb9ce5cf5943531164b89452d3b1bf0e5056 /plugins/CoreHome
parenta67bf2f0eb90028adb27c37792838479a3fb951d (diff)
Don't freeze lefthand column of datatable on small screens (#15129)
* Remove sticky positioning from datatable for mobile devices * Fix overflowing table header issue
Diffstat (limited to 'plugins/CoreHome')
-rw-r--r--plugins/CoreHome/stylesheets/dataTable/_dataTable.less9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/CoreHome/stylesheets/dataTable/_dataTable.less b/plugins/CoreHome/stylesheets/dataTable/_dataTable.less
index c0e280876d..5db4177fa1 100644
--- a/plugins/CoreHome/stylesheets/dataTable/_dataTable.less
+++ b/plugins/CoreHome/stylesheets/dataTable/_dataTable.less
@@ -657,3 +657,12 @@ div.dataTableScroller {
}
}
}
+
+@media only screen and (max-width: 700px) {
+ table.dataTable th.label,
+ table.dataTable td.label,
+ table.subActionsDataTable td.label,
+ table.actionsDataTable td.label {
+ position: static;
+ }
+}