From 3fa4ae19d620666d878cd43c56ad15fbe7c7c363 Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Fri, 21 Jun 2019 11:54:23 -0400 Subject: Make filter field more aesthetically pleasing Change-Id: I41fbf0d7f6232d102861d9dcedd762e12e8fdd0a Signed-off-by: Sawyer Bergeron --- .../dashboard/multiple_select_filter_widget.html | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/dashboard/src/templates/dashboard/multiple_select_filter_widget.html b/dashboard/src/templates/dashboard/multiple_select_filter_widget.html index bfcbed6..91e55a5 100644 --- a/dashboard/src/templates/dashboard/multiple_select_filter_widget.html +++ b/dashboard/src/templates/dashboard/multiple_select_filter_widget.html @@ -34,6 +34,18 @@ padding: 7px; transition: border-color ease-in-out .1s,box-shadow ease-in-out .1s; box-shadow: 0 1px 1px rgba(0,0,0,.075); + + display: flex; + flex-direction: column; +} + +.grid-item > .btn:active, .grid-item > .btn:focus { + outline: none; !important; + box-shadow: none; +} + +.grid-item-description { + flex: 1; } .selected_node { @@ -42,6 +54,11 @@ transition: border-color ease-in-out .1s,box-shadow ease-in-out .1s; } +.grid-item:hover:not(.selected_node):not(.disabled_node) { + box-shadow: 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(100, 100, 100, 0.3); + transition: border-color ease-in-out .1s,box-shadow ease-in-out .1s; +} + .disabled_node { cursor: not-allowed; background-color: #EFEFEF; @@ -102,7 +119,8 @@
{% for obj in object_list %} -
+

{{obj.name}}

{{obj.description}}