diff --git a/Dockerfile b/Dockerfile index b5aa73c..e7b2c8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,8 @@ COPY --from=composer /composer.phar /usr/bin/composer WORKDIR ./alltube-${ALLTUBE}/ RUN composer install --no-interaction --optimize-autoloader --no-dev RUN mv ./config/config.example.yml ./config/config.yml +COPY ./attach.css /tmp/ +RUN cat /tmp/attach.css >> ./css/style.css RUN chmod 777 ./templates_c/ RUN mv $(pwd) /alltube/ diff --git a/attach.css b/attach.css new file mode 100644 index 0000000..17c7406 --- /dev/null +++ b/attach.css @@ -0,0 +1,13 @@ + +.bookmarklet_wrapper { + display: none; +} + +footer.small-font:hover { + opacity: 1; +} + +footer.small-font { + opacity: 0; + transition: opacity .6s; +}