gallery update

This commit is contained in:
devin 2012-08-21 16:32:55 +08:00 committed by Christophe Vilayphiou
parent 584d1eb0e0
commit 2274df4111
1 changed files with 30 additions and 7 deletions

View File

@ -43,10 +43,17 @@
.rgalbum, .rgphoto { float: left; margin: 0 10px 24px 0; }
.rgalbum {
padding: 16px;
margin: 0;
border-right: solid 1px #ccc;
border-bottom: solid 1px #ccc;
margin: 0 8px 8px 0;
border: solid 1px #ccc;
height: 180px;
border-radius: 4px;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
}
.rgalbum:hover {
box-shadow: 0 0 6px rgba(0,0,0,0.2);
}
.rgalbum img {
transition: all, 0.5s ease;
@ -55,8 +62,23 @@
-ms-transition: all, 0.5s ease;
}
.rgphoto { }
.rgphoto a {
display: block;
padding: 4px;
border: solid 1px #ddd;
background-color: #fff;
border-radius: 4px;
transition: all, 0.3s ease;
-webkit-transition: all, 0.3s ease;
-moz-transition: all, 0.3s ease;
}
.rgphoto a:hover {
border-color: #999;
box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.rgphoto img, .rgphoto_edit img {
display: block;
display: block;
border-radius: 3px;
transition: all, 0.3s ease;
-webkit-transition: all, 0.3s ease;
-moz-transition: all, 0.3s ease;
@ -523,9 +545,6 @@
}
#orbit_gallery .form-actions { background-color: whiteSmoke; }
.o_album .rgbody {
margin: 10px 8px;
}
.o_gallery .tagnames {
display: inline-block;
}
@ -533,3 +552,7 @@
display: inline-block;
margin: 0 6px 6px 0;
}
.o_gallery .rgbody, .o_album .rgbody {
padding: 10px 8px;
}