From c324cb89cef5e39d9b94d7ee4ab38ea0eb2f49d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 15 Dec 2022 16:11:23 +0100 Subject: [PATCH] misc: do not generate unused png icon variants (#72513) --- gadjo/static/css/gadjo.scss | 4 +--- setup.py | 10 ++-------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/gadjo/static/css/gadjo.scss b/gadjo/static/css/gadjo.scss index efe5b31..65e6016 100644 --- a/gadjo/static/css/gadjo.scss +++ b/gadjo/static/css/gadjo.scss @@ -1076,12 +1076,10 @@ ul#sidepage-menu li a { border-radius: 2px; } -$string-color: str-slice($primary-color + '', 2); - $appicons: add, agendas, announces, bankcard, book, calendar, cards, categories, clock, counter, data, facturier, forms, gis, grid, home, identity-management, lingo, mail, management, organizational-units, passerelle, password, phone, portal, portal-agent, porte-doc, roles, security, services, settings, statistics, studio, submission, system, texts, theme, users, workflows; @each $appicon in $appicons { - ul#sidepage-menu li a.icon-#{$appicon} { background-image: url(icons/#{$appicon}.small.#{$string-color}.png); } + ul#sidepage-menu li a.icon-#{$appicon} { background-image: url(icons/#{$appicon}.small.png); } ul.apps li.icon-#{$appicon} a { background-image: url(icons/#{$appicon}.large.png); } ul.apps li.icon-#{$appicon} a:hover { background-image: url(icons/#{$appicon}.large-hover.png); } } diff --git a/setup.py b/setup.py index b5da39d..ac5dc3f 100644 --- a/setup.py +++ b/setup.py @@ -142,19 +142,13 @@ class build_icons(Command): if not os.path.exists(destpath): os.mkdir(destpath) variants_applications = { - 'small': {'colour': 'e7e7e7', 'width': '40'}, - 'small.white': {'colour': 'ffffff', 'width': '40'}, - 'small.386ede': {'colour': '386ede', 'width': '40'}, - 'small.ff375e': {'colour': 'ff375e', 'width': '40'}, - 'small.6f2b92': {'colour': '6f2b92', 'width': '40'}, + 'small': {'colour': '386ede', 'width': '40'}, 'large': {'colour': 'e7e7e7', 'width': '80'}, 'large-hover': {'colour': 'bebebe', 'width': '80'}, } variants_actions = { + 'small': {'colour': '386ede', 'width': '40'}, 'small.white': {'colour': 'ffffff', 'width': '40'}, - 'small.386ede': {'colour': '386ede', 'width': '40'}, - 'small.ff375e': {'colour': 'ff375e', 'width': '40'}, - 'small.6f2b92': {'colour': '6f2b92', 'width': '40'}, 'hover': {'colour': '2b2b2b', 'width': '40'}, } for basepath, dirnames, filenames in os.walk('icons'): -- 2.39.2