Skip to content
Snippets Groups Projects
Unverified Commit 6b17ffb7 authored by Dorine Lambinet's avatar Dorine Lambinet
Browse files

Fix bug d'affichage bordure dispositif de la feuille de paie (qui se décalait...

Fix bug d'affichage bordure dispositif de la feuille de paie (qui se décalait quand le dispositif était selectionné)
parent 1e83cc64
No related branches found
No related tags found
No related merge requests found
Pipeline #19574 passed
...@@ -361,7 +361,7 @@ ...@@ -361,7 +361,7 @@
<!--Indentation pour chaque niveau de l'arbre, illustré par une bordure--> <!--Indentation pour chaque niveau de l'arbre, illustré par une bordure-->
{#each iterToDepth(depth)} {#each iterToDepth(depth)}
<div <div
class={`min-h-full border-l-2 bg-white pl-1 pr-2 ${ class={`min-h-full border-l-2 bg-white pr-3 ${
decomposition.name !== decomposition.name !==
displayMode.parametersVariableName && displayMode.parametersVariableName &&
!( !(
...@@ -375,9 +375,7 @@ ...@@ -375,9 +375,7 @@
? "border-gray-400" ? "border-gray-400"
: "border-black" : "border-black"
}`} }`}
> ></div>
&nbsp;
</div>
{/each} {/each}
<!--Si la variable est obsolète, ou que sa date de relecture est inconnue ou trop ancienne, un picto attention est affiché --> <!--Si la variable est obsolète, ou que sa date de relecture est inconnue ou trop ancienne, un picto attention est affiché -->
{#if decomposition.obsolete || decomposition.last_value_still_valid_on === undefined || decomposition.last_value_still_valid_on < (new Date().getFullYear() - 2).toString()} {#if decomposition.obsolete || decomposition.last_value_still_valid_on === undefined || decomposition.last_value_still_valid_on < (new Date().getFullYear() - 2).toString()}
...@@ -448,7 +446,7 @@ ...@@ -448,7 +446,7 @@
<!--Indentation pour chaque niveau de l'arbre, illustré par une bordure--> <!--Indentation pour chaque niveau de l'arbre, illustré par une bordure-->
{#each iterToDepth(depth)} {#each iterToDepth(depth)}
<div <div
class={`min-h-full border-l-2 bg-white pl-1 pr-2 ${ class={`min-h-full border-l-2 bg-white pr-3 ${
decomposition.name !== decomposition.name !==
displayMode.parametersVariableName && displayMode.parametersVariableName &&
!( !(
...@@ -462,9 +460,7 @@ ...@@ -462,9 +460,7 @@
? "border-gray-400" ? "border-gray-400"
: "border-black" : "border-black"
}`} }`}
> ></div>
&nbsp;
</div>
{/each} {/each}
<button <button
class="cursor-pointer overflow-x-hidden text-ellipsis text-left font-serif hover:z-20 hover:overflow-x-visible hover:bg-white hover:bg-opacity-90 hover:text-le-gris-dispositif-dark hover:underline" class="cursor-pointer overflow-x-hidden text-ellipsis text-left font-serif hover:z-20 hover:overflow-x-visible hover:bg-white hover:bg-opacity-90 hover:text-le-gris-dispositif-dark hover:underline"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment