diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-03-07 16:27:51 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-03-07 16:27:51 +0100 |
commit | 41817db2e2fb657a9efad5b8924fd059e98524e5 (patch) | |
tree | f35b4ab3fb88e34c85f7c8ec4b9a6a7f280a37b4 /apps/gallery/css | |
parent | a4543175cea05373906ce7f9507af597a78c5dc4 (diff) | |
download | nextcloud-server-41817db2e2fb657a9efad5b8924fd059e98524e5.tar.gz nextcloud-server-41817db2e2fb657a9efad5b8924fd059e98524e5.zip |
no rounded borders for album decoration
Diffstat (limited to 'apps/gallery/css')
-rw-r--r-- | apps/gallery/css/styles.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gallery/css/styles.css b/apps/gallery/css/styles.css index 1bff610c78c..013cd1b262d 100644 --- a/apps/gallery/css/styles.css +++ b/apps/gallery/css/styles.css @@ -3,7 +3,7 @@ div#gallery_list.leftcontent { padding-top: 15pt; margin: 0; position: absolute; div.gallery_box { width: 200px; position:relative; text-align: center; border: 0; display: inline-block; margin: 5pt; vertical-align: top; padding: 5px 5px 5px 5px; position: relative; -webkit-transition: color 0.5s ease-in-out; -o-transition: color 0.5s ease-in-out; -moz-transition: color 0.5s ease-in-out;color: #BBB;} div.album {border: 1px solid #e0e0e0; border-radius: 7px;} div.gallery_box h1 { font-size: 9pt; font-family: Verdana; } -div.gallery_album_decoration { width: 200px; position: absolute; border: 0; height: 20px; top: 5px; text-align:right; vertical-align:middle; background-color: #eee; opacity: 0; -webkit-transition: opacity 0.5s ease-in-out; -moz-transition: opacity 0.5s ease-in-out; -o-transition: opacity 0.5s ease-in-out; border-bottom-right-radius: 7px; border-bottom-left-radius: 7px; -moz-border-radius-bottomright: 7px; -moz-border-radius-bottomleft:7px;} +div.gallery_album_decoration { width: 200px; position: absolute; border: 0; height: 20px; top: 5px; text-align:right; vertical-align:middle; background-color: #eee; opacity: 0; -webkit-transition: opacity 0.5s ease-in-out; -moz-transition: opacity 0.5s ease-in-out; -o-transition: opacity 0.5s ease-in-out; } div.gallery_box:hover { color: black; } div.gallery_box:hover div.gallery_album_decoration { opacity: 0.7;} div.gallery_album_decoration a {padding: 0 4pt; cursor: pointer;} |