2016-02-02 13:32:02 +00:00
|
|
|
@import 'constants';
|
|
|
|
|
|
|
|
|
|
|
|
#WRAPPER > #HEADER{
|
|
|
|
// Icone du site
|
|
|
|
& > .icon{
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2016-02-18 21:33:20 +00:00
|
|
|
width: $menu-side-width;
|
2017-11-13 15:42:28 +00:00
|
|
|
height: calc( #{$menu-side-width} - 1px );
|
2016-02-02 13:32:02 +00:00
|
|
|
|
|
|
|
background-color: darken($theme-color, 10);
|
2017-01-11 16:31:59 +00:00
|
|
|
background-image: url('/src/static/iconv3.svg');
|
2016-02-02 13:32:02 +00:00
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 50% 50%;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
transition: all .3s;
|
|
|
|
|
|
|
|
}
|
2016-07-08 15:04:41 +00:00
|
|
|
|
2016-02-02 13:32:02 +00:00
|
|
|
/* Animation de chargement qudnd chargement ajax */
|
|
|
|
&.loading > .icon{
|
2016-07-14 08:52:04 +00:00
|
|
|
background-image: url('/src/static/loaderv2.svg');
|
2016-02-02 13:32:02 +00:00
|
|
|
background-size: 70% 70%;
|
|
|
|
}
|
|
|
|
|
2017-01-14 13:58:43 +00:00
|
|
|
|
|
|
|
// Icone de notification
|
|
|
|
& > .logout-icon{
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: calc( 100% - #{$menu-side-width} );
|
|
|
|
width: $menu-side-width;
|
|
|
|
height: $menu-side-width;
|
|
|
|
|
2017-09-23 17:05:54 +00:00
|
|
|
|
2017-01-14 13:58:43 +00:00
|
|
|
background: transparent url('/src/static/logout@e0e7ed.svg') center center no-repeat;
|
|
|
|
background-size: 40%;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover{
|
|
|
|
background-image: url('/src/static/logout@ffffff.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-02 13:03:22 +00:00
|
|
|
}
|