favicon
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 9.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 8.3 KiB |
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
@@ -1035,11 +1035,11 @@ aside.layout-sidebar-second footer.view-footer :hover {
|
|||||||
background-color: #fdc300;
|
background-color: #fdc300;
|
||||||
}
|
}
|
||||||
|
|
||||||
aside.layout-sidebar-second.open {
|
aside.layout-sidebar-second.close {
|
||||||
transform: translateX(85%); /* Par défaut ouvert */
|
transform: translateX(85%); /* Par défaut ouvert */
|
||||||
transition: transform 0.35s;
|
transition: transform 0.35s;
|
||||||
}
|
}
|
||||||
aside.layout-sidebar-second.open:hover {
|
aside.layout-sidebar-second.close:hover {
|
||||||
background-color: #fdc300;
|
background-color: #fdc300;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 535 B |
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@@ -90,18 +90,18 @@ jQuery(document).ready(function($){
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
// Vérifier l'état initial depuis sessionStorage
|
// Vérifier l'état initial depuis sessionStorage
|
||||||
if (sessionStorage.getItem('asideOpened') === 'true') {
|
if (sessionStorage.getItem('asideOpened') === 'true') {
|
||||||
$(".layout-sidebar-second").addClass('open');
|
$(".layout-sidebar-second").addClass('close');
|
||||||
}
|
}
|
||||||
|
|
||||||
$(".profile--type--collaborateur").click(function(event) {
|
$(".profile--type--collaborateur").click(function(event) {
|
||||||
// Ouvrir .tiroir fichiers
|
// Ouvrir .tiroir fichiers
|
||||||
$(".layout-sidebar-second").addClass('open');
|
$(".layout-sidebar-second").addClass('close');
|
||||||
sessionStorage.setItem('asideOpened', 'true');
|
sessionStorage.setItem('asideOpened', 'true');
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#block-reha-views-block-current-user-doc-profile-block-1 > h2").click(function(event) {
|
$("#block-reha-views-block-current-user-doc-profile-block-1 > h2").click(function(event) {
|
||||||
// Fermer .tiroir fichiers
|
// Fermer .tiroir fichiers
|
||||||
$(".layout-sidebar-second").removeClass('open');
|
$(".layout-sidebar-second").removeClass('close');
|
||||||
sessionStorage.setItem('asideOpened', 'false');
|
sessionStorage.setItem('asideOpened', 'false');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ aside.layout-sidebar-second{
|
|||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
aside.layout-sidebar-second.open {
|
aside.layout-sidebar-second.close {
|
||||||
transform: translateX(85%); /* Par défaut ouvert */
|
transform: translateX(85%); /* Par défaut ouvert */
|
||||||
transition: transform 0.35s;
|
transition: transform 0.35s;
|
||||||
&:hover{
|
&:hover{
|
||||||
|
|||||||
Reference in New Issue
Block a user