use box-shadow instead of border

This commit is contained in:
rabuzarus 2017-04-03 14:20:34 +02:00
parent 9f37acc6d4
commit 0b280219c6
2 changed files with 3 additions and 3 deletions

View File

@ -1370,8 +1370,8 @@ section #jotOpen {
max-height: calc(100vh - 220px); max-height: calc(100vh - 220px);
} }
} }
.fbrowser.image .photo-album-image-wrapper img { .fbrowser.image .photo-album-image-wrapper {
border: 1px solid #ddd; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
} }
.fbrowser .profile-rotator-wrapper { .fbrowser .profile-rotator-wrapper {
min-height: 200px; min-height: 200px;

View File

@ -253,7 +253,7 @@ var FileBrowser = {
initGallery: function() { initGallery: function() {
$(".fbrowser.image .fbrowser-content-container").justifiedGallery({ $(".fbrowser.image .fbrowser-content-container").justifiedGallery({
'rowHeight': 80, 'rowHeight': 80,
'margins': 2, 'margins': 3,
'border': 0 'border': 0
}); });
} }