mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Merge pull request #1114 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
acd7a0c34e
4 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ ARG COMPOSER_CHECKSUM="67bebe9df9866a795078bb2cf21798d8b0214f2e0b2fd81f2e907a8ef
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends git gosu \
|
&& apt-get install -y --no-install-recommends git gosu \
|
||||||
optipng pngquant jpegoptim gifsicle \
|
optipng pngquant jpegoptim gifsicle \
|
||||||
libfreetype6 libjpeg62-turbo libpng16-16 libxpm4 libwebp6 libmagickwand-6.q16-3 \
|
libfreetype6 libicu-dev libjpeg62-turbo libpng16-16 libxpm4 libwebp6 libmagickwand-6.q16-3 \
|
||||||
libfreetype6-dev libjpeg62-turbo-dev libpng-dev libxpm-dev libwebp-dev libmagickwand-dev \
|
libfreetype6-dev libjpeg62-turbo-dev libpng-dev libxpm-dev libwebp-dev libmagickwand-dev \
|
||||||
&& docker-php-source extract \
|
&& docker-php-source extract \
|
||||||
&& docker-php-ext-configure gd \
|
&& docker-php-ext-configure gd \
|
||||||
|
@ -14,7 +14,7 @@ RUN apt-get update \
|
||||||
--with-jpeg-dir=/usr/lib/x86_64-linux-gnu/ \
|
--with-jpeg-dir=/usr/lib/x86_64-linux-gnu/ \
|
||||||
--with-xpm-dir=/usr/lib/x86_64-linux-gnu/ \
|
--with-xpm-dir=/usr/lib/x86_64-linux-gnu/ \
|
||||||
--with-webp-dir=/usr/lib/x86_64-linux-gnu/ \
|
--with-webp-dir=/usr/lib/x86_64-linux-gnu/ \
|
||||||
&& docker-php-ext-install pdo_mysql pcntl gd exif bcmath \
|
&& docker-php-ext-install pdo_mysql pcntl gd exif bcmath intl \
|
||||||
&& pecl install imagick \
|
&& pecl install imagick \
|
||||||
&& docker-php-ext-enable imagick pcntl imagick gd exif \
|
&& docker-php-ext-enable imagick pcntl imagick gd exif \
|
||||||
&& a2enmod rewrite remoteip \
|
&& a2enmod rewrite remoteip \
|
||||||
|
|
BIN
public/js/profile.js
vendored
BIN
public/js/profile.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -168,7 +168,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row" v-if="mode == 'list'">
|
<div class="row" v-if="mode == 'list'">
|
||||||
<div class="col-md-8 col-lg-8 offset-md-2 px-0 mb-3 timeline">
|
<div class="col-md-8 col-lg-8 offset-md-2 px-0 mb-3 timeline">
|
||||||
<div class="card status-card card-md-rounded-0" :data-status-id="status.id" v-for="(status, index) in timeline" :key="status.id">
|
<div class="card status-card card-md-rounded-0 my-sm-2 my-md-3 my-lg-4" :data-status-id="status.id" v-for="(status, index) in timeline" :key="status.id">
|
||||||
|
|
||||||
<div class="card-header d-inline-flex align-items-center bg-white">
|
<div class="card-header d-inline-flex align-items-center bg-white">
|
||||||
<img v-bind:src="status.account.avatar" width="32px" height="32px" style="border-radius: 32px;">
|
<img v-bind:src="status.account.avatar" width="32px" height="32px" style="border-radius: 32px;">
|
||||||
|
|
Loading…
Reference in a new issue