From 6b7de7f340922a23072684d02204876b65b930fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Chili=C5=84ski?= Date: Thu, 6 Sep 2018 20:37:29 +0200 Subject: [PATCH] enhancement: introduced persistent filter support (LMS+ #620) - nicer persistent filter panel style --- img/style.css | 7 ++++++- img/style.less | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/img/style.css b/img/style.css index a0461ac5ac..c8c7fcb91b 100644 --- a/img/style.css +++ b/img/style.css @@ -1948,9 +1948,14 @@ table.dataTable thead tr:last-child th { border-radius: unset; } div.lms-ui-persistent-filter { - display: flex; + display: inline-flex; + justify-content: flex-start; align-items: center; vertical-align: middle; + padding: 5px; + background-color: #CEBD9B; + border: 1px solid #AE9D7B; + border-radius: 3px; margin-bottom: 10px; } div.lms-ui-persistent-filter > * { diff --git a/img/style.less b/img/style.less index e3ccbd4b8d..28dd5f06f2 100644 --- a/img/style.less +++ b/img/style.less @@ -1705,9 +1705,14 @@ table.dataTable { } div.lms-ui-persistent-filter { - display: flex; + display: inline-flex; + justify-content: flex-start; align-items: center; vertical-align: middle; + padding: 5px; + background-color: @dark; + border: 1px solid @superdark; + border-radius: 3px; margin-bottom: 10px; & > * { margin-left: 5px;