From 48d3952e687b036036640e9736cf0a413d54bf79 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Wed, 14 Oct 2020 18:33:41 +0200 Subject: [PATCH] Fixed changelist and toolbar theme rounded corners. --- .../admin_interface/css/admin-interface.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/admin_interface/templates/admin_interface/css/admin-interface.css b/admin_interface/templates/admin_interface/css/admin-interface.css index cb83e01..19f7bd2 100644 --- a/admin_interface/templates/admin_interface/css/admin-interface.css +++ b/admin_interface/templates/admin_interface/css/admin-interface.css @@ -282,6 +282,19 @@ color:{{ theme.css_generic_link_hover_color }}; } +.admin-interface .module.filtered #toolbar { + {% if theme.css_module_rounded_corners %} + border-radius: 4px; + {% endif %} +} + +.admin-interface .module.filtered #changelist-filter { + {% if theme.css_module_rounded_corners %} + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + {% endif %} +} + .admin-interface .module.filtered #changelist-filter #changelist-filter-clear a:focus, .admin-interface .module.filtered #changelist-filter #changelist-filter-clear a:hover { color: #666;