]> _ Git - eif-extranet.git/commitdiff
wait #5502 @0.25
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 4 Oct 2022 06:32:55 +0000 (08:32 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 4 Oct 2022 06:32:55 +0000 (08:32 +0200)
EIF-URW.zip
_doc/SVG/Fichier 3.svg
js/script.js
style/inc/common.sass

index db8c43e2cda953d1ecbd894b97f4a26aae8e3fb3..ae2c207df4a5161c02de4e3070af18714b4186a5 100644 (file)
Binary files a/EIF-URW.zip and b/EIF-URW.zip differ
index df4c5d3028a32dbb0ad1ff3d4a09a6277084f3b4..5713b341e1b5bd4abc7aa908f0a2b69a504b703b 100644 (file)
@@ -1 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?><svg id="Calque_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.74 16.74"><defs><style>.cls-1{fill:#c1ce3a;}</style></defs><g id="tableau"><polygon class="cls-1" points="16.74 16.74 9.77 0 7.49 7.49 0 9.77 16.74 16.74"/></g></svg>
\ No newline at end of file
+docker volume create -d vieux/sshfs \
+-o sshcmd=root@godzilla.cubedesigners.com:/data/fluidbook/docs/ \
+-o IdentityFile=/docker/fluidbook-processfarm/ssh/id_rsa \
+test
\ No newline at end of file
index c4e7475a96e39899763c301a3f44d4a5b635d0e3..21cbe4a7c27ce07e0f11698e0600b87f975b57a9 100644 (file)
@@ -154,8 +154,13 @@ $(function () {
     // Menu : passer le menu en mode compact
     $(document).on('click', '.toggle-menu', function () {
         $('body').toggleClass('menu-compact');
+        localStorage.setItem('eif-menu-compact', $('body').hasClass('menu-compact') ? '1' : '0');
         return false;
     });
+    if (localStorage.getItem('eif-menu-compact') == '1') {
+        $('body').addClass('menu-compact');
+    }
 
     _updateAfterDomChange();
+    $('body').addClass('ready');
 });
index 5d1d76bd85d20a8efceb7268750890d80f3b0869..14718f43490128b61a64916df7043c9325fd2525 100644 (file)
@@ -4,6 +4,11 @@ html, body, main
 body
   background-color: $background-color
   font-family: $font
+  opacity: 0
+  transition: opacity 100ms
+
+  &.ready
+    opacity: 1
 
 .button
   border-radius: 6px