From 0a178899d727178bf837c25196c950f357e52cdc Mon Sep 17 00:00:00 2001 From: afornerot Date: Wed, 9 Jul 2025 08:52:18 +0200 Subject: [PATCH] svg --- templates/issue/view.html.twig | 4 +- templates/project/view.html.twig | 426 +++++++++++++++++++------------ 2 files changed, 269 insertions(+), 161 deletions(-) diff --git a/templates/issue/view.html.twig b/templates/issue/view.html.twig index ff0972d..9a2aad5 100644 --- a/templates/issue/view.html.twig +++ b/templates/issue/view.html.twig @@ -3,7 +3,7 @@
#{{ issue.redmine.id }} – {{ issue.redmine.subject }}
-
+
Projet : {{ issue.redmine.project.name }} • Tracker : {{ issue.redmine.tracker.name }} @@ -70,6 +70,8 @@ {% endif %} + + {{dump(issue.redmine)}}

diff --git a/templates/project/view.html.twig b/templates/project/view.html.twig index 0120628..893d66d 100644 --- a/templates/project/view.html.twig +++ b/templates/project/view.html.twig @@ -24,21 +24,24 @@ padding:0px; } - .scrumContainer { - display:none; - } - .issueContainer { position:fixed; width:750px; } .filtreContainer{ + position:fixed; display:flex; width:300px; flex-direction:column; background-color: var(--bs-dark); padding:5px; + z-index: 900; + } + + .scrumContainer { + display:none; + padding-left:300px; } .containerStatus{ @@ -128,6 +131,19 @@ text-align: left; } + @keyframes pulse { + 0% { transform: scale(1); } + 25% { transform: scale(1.1); } + 50% { transform: scale(1); } + 75% { transform: scale(1.1); } + 100% { transform: scale(1); } + } + + .pulse-highlight { + animation: pulse 1.5s ease-in-out 1; + z-index: 1000; + position: relative; + } {% endblock %} @@ -137,55 +153,61 @@
+
+ + + + + + + + + + + + + + + + + + + + +
+
-
- - - - - - - - - - - - - - - - - -
-
{% for status in project.redmine.issue_statuses %} {% if status.id not in project.hiddenstatuses %} @@ -250,7 +272,7 @@
#{{issue.id}}
{{issue.redmine.subject}}
- + {{issue.redmine.sprint.story_points}}
@@ -267,99 +289,49 @@ {% block javascripts %}