diff --git a/conf/user.css.example b/conf/user.css.example new file mode 100644 index 0000000..de4fa80 --- /dev/null +++ b/conf/user.css.example @@ -0,0 +1,14 @@ +/* Disable the 'zoom' animation while browsing pictures */ +#imageview #image { + transition: none !important; + animation-name: none !important; + animation-duration: 0 !important; +} + +/* Hide smart albums */ +/* +[data-id="0"] { display:none; } +[data-id="s"] { display:none; } +[data-id="f"] { display:none; } +[data-id="r"] { display:none; } +*/ diff --git a/scripts/install b/scripts/install index 356c65d..bb00013 100755 --- a/scripts/install +++ b/scripts/install @@ -136,6 +136,9 @@ cd $final_path && php$phpversion artisan migrate -n --force cd $final_path && php$phpversion artisan config:clear -n cd $final_path && php$phpversion artisan config:cache -n +# Setup custum user.css file +cp ../conf/user.css.example $final_path/public/dist/user.css + #================================================= # STORE THE CONFIG FILE CHECKSUM #=================================================