jipe_app/app/assets/stylesheets/image_actus.scss
2017-08-14 10:53:30 +02:00

177 lines
2.2 KiB
SCSS

#image_actus .image_actu .img {
text-align:center;
width:150px;
height:150px;
margin:0px;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
-moz-background-size: contain;
-webkit-background-size: contain;
}
#image_actus .image_actu .name {
padding:4px 0px 2px 0px;
font-size:10px;
text-align:center;
}
#image_actus .image_actu {
float:left;
padding:8px;
margin:2px;
border:4px solid white;
/* webkit */
-webkit-transition-property: background-color;
-webkit-transition-duration: 0.5s;
/* Firefox */
-moz-transition-property: background-color;
-moz-transition-duration: 0.5s;
/* standardisé */
transition-property: background-color;
transition-duration: 0.5s;
}
#image_actus .image_actu.active {
background-color: rgba(181,205,226,1);
}
/* Aperçu des images */
#image_actus_navbar{
left:300px;
background:rgba(247,245,246,0.9);
}
#image_actus_big_container{
position:absolute;
top:0px;
left:0px;
bottom:0px;
right:0px;
#image_actus_container{
position:absolute;
top:0px;
left:300px;
bottom:0px;
right:0px;
overflow:auto;
background:white;
padding:20px;
padding-bottom:60px;
}
#image_actu_albums_navbar{
position:absolute;
width:299px;
bottom:0px;
left:0px;
border-top:1px solid rgba(191,191,191,1);
height:51px;
background:rgba(220,220,220,1);
a{
color:#5e5e5e;
font-size:1.5em;
position:absolute;
top:10px;
}
#add_image_actu_album{
left:10px;
}
#edit_current_image_actu_album{
right:10px;
}
#remove_current_image_actu_album{
right:50px;
}
}
#image_actu_albums{
padding-bottom:60px;
position:absolute;
top:0px;
width:300px;
bottom:0px;
left:0px;
overflow:auto;
background:rgba(230,230,230,1);
border-right:1px solid rgba(191,191,191,1);
ul{
padding-top: 1.2em;
li{
border-top:1px solid rgba(191,191,191,0.5) ;
position:static;
a{
position:static;
color:rgba(0,0,0,0.8);
&:hover, &.active{
background:rgba(220,220,220,1);
}
}
#edit_current_image_actu_album{
position:absolute;
top:10px;
}
}
}
}
}