From 62377256bf242f91f477a1896c6c0f670a0db5a1 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 20 Mar 2013 11:14:55 +0100 Subject: [PATCH] argh, # is NOT a comment for css.. --- trash/css/dashboard.css | 7 +++++-- trash/dashboard.py | 3 ++- unfold/css/plugin.css | 2 ++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/trash/css/dashboard.css b/trash/css/dashboard.css index 3bd686be..ae4ecf2b 100644 --- a/trash/css/dashboard.css +++ b/trash/css/dashboard.css @@ -1,7 +1,10 @@ div#sidelist table.with-datatables { font-size: 130%; } -# demo to show how to tweak a given section by setting its domid -#complete-quickfilter { +/*demo to show how to tweak a given section by setting its domid*/ +#complete-myquickfilter { + background-color: #f0d0f0; +} +#myquickfilter { background-color: #f080f0; } diff --git a/trash/dashboard.py b/trash/dashboard.py index 719210ce..2dd417e7 100644 --- a/trash/dashboard.py +++ b/trash/dashboard.py @@ -47,7 +47,8 @@ def dashboard_view (request): toggled=False, ), QuickFilter ( - domid='quickfilter', + # we play with this one for demo purposes in dashboard.css + domid='myquickfilter', page=page, title='play with filters', criterias=quickfilter_criterias, diff --git a/unfold/css/plugin.css b/unfold/css/plugin.css index 910ff4fd..02d8acf1 100644 --- a/unfold/css/plugin.css +++ b/unfold/css/plugin.css @@ -3,6 +3,8 @@ div.plugin-toggle { padding: 5px; border-style: dotted; border-width: 1px; +} +div.plugin, div.plugin-toggle { border-radius: 8px; } h4.plugin-show { -- 2.43.0