Merge pull request #7435 from pixelfed/staging

fix #7390 and tweak Dockerfile
pull/7439/head
Shlee 22 hours ago committed by GitHub
commit 6994681a07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -127,7 +127,9 @@ RUN install-php-extensions \
vips \
ffi
RUN printf 'ffi.enable=1\n' > /usr/local/etc/php/conf.d/zz-ffi-enable.ini
RUN tee /usr/local/etc/php/conf.d/zz-pixelfed.ini > /dev/null <<'EOF'
ffi.enable=true
EOF
COPY --from=ffmpeg /usr/local/ffmpeg/bin/ffmpeg /usr/bin/ffmpeg
COPY --from=ffmpeg /usr/local/ffmpeg/bin/ffprobe /usr/bin/ffprobe

@ -17,6 +17,18 @@ body, button, input, textarea {
.nav-pills .nav-item {
padding-right: 1rem;
}
// Backdrop shown behind the mobile sidenav so tapping outside the menu
// (or on the overlay) closes it. Argon appends `.backdrop` via JS but ships
// no styles for it, which left the mobile admin menu impossible to close.
.backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1039; // just below the sidenav (z-index: 1040)
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.list-fade-bottom {
position: relative;

Loading…
Cancel
Save