forked from mirror/pixelfed
Merge pull request #1114 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
acd7a0c34e
|
@ -6,7 +6,7 @@ ARG COMPOSER_CHECKSUM="67bebe9df9866a795078bb2cf21798d8b0214f2e0b2fd81f2e907a8ef
|
|||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends git gosu \
|
||||
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 \
|
||||
&& docker-php-source extract \
|
||||
&& docker-php-ext-configure gd \
|
||||
|
@ -14,7 +14,7 @@ RUN apt-get update \
|
|||
--with-jpeg-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/ \
|
||||
&& docker-php-ext-install pdo_mysql pcntl gd exif bcmath \
|
||||
&& docker-php-ext-install pdo_mysql pcntl gd exif bcmath intl \
|
||||
&& pecl install imagick \
|
||||
&& docker-php-ext-enable imagick pcntl imagick gd exif \
|
||||
&& a2enmod rewrite remoteip \
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
|||
"/js/components.js": "/js/components.js?id=ae830db50efb9df181df",
|
||||
"/js/compose.js": "/js/compose.js?id=e988873b96c16cd9b764",
|
||||
"/js/discover.js": "/js/discover.js?id=75fb12b06ee23fa05186",
|
||||
"/js/profile.js": "/js/profile.js?id=be1a00c4bf3ad5449ba9",
|
||||
"/js/profile.js": "/js/profile.js?id=e0f48175e05bcf64a43c",
|
||||
"/js/search.js": "/js/search.js?id=df9027d746934eb442f0",
|
||||
"/js/status.js": "/js/status.js?id=cb809b4d63324bca6b14",
|
||||
"/js/timeline.js": "/js/timeline.js?id=db7c841e880fc6585ef7"
|
||||
|
|
|
@ -168,7 +168,7 @@
|
|||
</div>
|
||||
<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="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">
|
||||
<img v-bind:src="status.account.avatar" width="32px" height="32px" style="border-radius: 32px;">
|
||||
|
|
Loading…
Reference in New Issue