mirror of https://github.com/pixelfed/pixelfed
Merge branch 'frontend-ui-refactor' into feat/double-tap-to-like
commit
7ceaa25205
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class AddHeaderToProfilesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('profiles', function (Blueprint $table) {
|
||||
$table->string('header_bg')->nullable()->after('profile_layout');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('profiles', function (Blueprint $table) {
|
||||
$table->dropColumn('header_bg');
|
||||
});
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,15 +1,15 @@
|
||||
{
|
||||
"/js/activity.js": "/js/activity.js?id=7915246c3bc2b7e9770e",
|
||||
"/js/app.js": "/js/app.js?id=1f05f00eec0e86f49dd4",
|
||||
"/css/app.css": "/css/app.css?id=b407fd02a5b7526f85b4",
|
||||
"/css/appdark.css": "/css/appdark.css?id=b4a7cf4f8dd06abe699e",
|
||||
"/css/app.css": "/css/app.css?id=3a974ff74b6b5905a73c",
|
||||
"/css/appdark.css": "/css/appdark.css?id=107806a000e2ca675a3c",
|
||||
"/css/landing.css": "/css/landing.css?id=d3610108213e88dc080c",
|
||||
"/js/components.js": "/js/components.js?id=25d082643150ee79150c",
|
||||
"/js/compose.js": "/js/compose.js?id=4d8c53b4575f463214f2",
|
||||
"/js/compose.js": "/js/compose.js?id=9ca175b3e11908bd592f",
|
||||
"/js/developers.js": "/js/developers.js?id=1359f11c7349301903f8",
|
||||
"/js/discover.js": "/js/discover.js?id=75fb12b06ee23fa05186",
|
||||
"/js/profile.js": "/js/profile.js?id=b267c34e3f9168a8b307",
|
||||
"/js/profile.js": "/js/profile.js?id=6386a007bdb1796dcc80",
|
||||
"/js/search.js": "/js/search.js?id=0d3d080dc05f4f49b204",
|
||||
"/js/status.js": "/js/status.js?id=bf48fe9060a74d1180f2",
|
||||
"/js/timeline.js": "/js/timeline.js?id=ded47e282e9b3339c1fd"
|
||||
"/js/status.js": "/js/status.js?id=a95243f92346f1724a35",
|
||||
"/js/timeline.js": "/js/timeline.js?id=265d634706cec1b2653d"
|
||||
}
|
||||
|
@ -0,0 +1,98 @@
|
||||
/*
|
||||
red
|
||||
*/
|
||||
.bg-moment-passion {
|
||||
background: #e53935;
|
||||
background: -webkit-linear-gradient(to left, #e35d5b, #e53935);
|
||||
background: linear-gradient(to left, #e35d5b, #e53935);
|
||||
}
|
||||
|
||||
/*
|
||||
teal/purple
|
||||
*/
|
||||
.bg-moment-azure {
|
||||
background: #7F7FD5;
|
||||
background: -webkit-linear-gradient(to left, #91EAE4, #86A8E7, #7F7FD5);
|
||||
background: linear-gradient(to left, #91EAE4, #86A8E7, #7F7FD5);
|
||||
}
|
||||
|
||||
/*
|
||||
blue
|
||||
*/
|
||||
.bg-moment-reef {
|
||||
background: #00d2ff;
|
||||
background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);
|
||||
background: linear-gradient(to right, #3a7bd5, #00d2ff);
|
||||
}
|
||||
|
||||
/*
|
||||
lush green
|
||||
*/
|
||||
.bg-moment-lush {
|
||||
background: #56ab2f;
|
||||
background: -webkit-linear-gradient(to left, #a8e063, #56ab2f);
|
||||
background: linear-gradient(to left, #a8e063, #56ab2f);
|
||||
}
|
||||
|
||||
/*
|
||||
neon green
|
||||
*/
|
||||
.bg-moment-neon {
|
||||
background: #B3FFAB;
|
||||
background: -webkit-linear-gradient(to right, #12FFF7, #B3FFAB);
|
||||
background: linear-gradient(to right, #12FFF7, #B3FFAB);
|
||||
}
|
||||
|
||||
/*
|
||||
orange
|
||||
*/
|
||||
.bg-moment-flare {
|
||||
background: #f12711;
|
||||
background: -webkit-linear-gradient(to left, #f5af19, #f12711);
|
||||
background: linear-gradient(to left, #f5af19, #f12711);
|
||||
}
|
||||
|
||||
/*
|
||||
orange/pink
|
||||
*/
|
||||
.bg-moment-morning {
|
||||
background: #FF5F6D;
|
||||
background: -webkit-linear-gradient(to left, #FFC371, #FF5F6D);
|
||||
background: linear-gradient(to left, #FFC371, #FF5F6D);
|
||||
}
|
||||
|
||||
/*
|
||||
pink
|
||||
*/
|
||||
.bg-moment-tranquil {
|
||||
background: #EECDA3;
|
||||
background: -webkit-linear-gradient(to right, #EF629F, #EECDA3);
|
||||
background: linear-gradient(to right, #EF629F, #EECDA3);
|
||||
}
|
||||
|
||||
/*
|
||||
purple
|
||||
*/
|
||||
.bg-moment-mauve {
|
||||
background: #42275a;
|
||||
background: -webkit-linear-gradient(to left, #734b6d, #42275a);
|
||||
background: linear-gradient(to left, #734b6d, #42275a);
|
||||
}
|
||||
|
||||
/*
|
||||
purple
|
||||
*/
|
||||
.bg-moment-argon {
|
||||
background: #03001e;
|
||||
background: -webkit-linear-gradient(to left, #fdeff9, #ec38bc, #7303c0, #03001e);
|
||||
background: linear-gradient(to left, #fdeff9, #ec38bc, #7303c0, #03001e);
|
||||
}
|
||||
|
||||
/*
|
||||
dark blue
|
||||
*/
|
||||
.bg-moment-royal {
|
||||
background: #141E30;
|
||||
background: -webkit-linear-gradient(to left, #243B55, #141E30);
|
||||
background: linear-gradient(to left, #243B55, #141E30);
|
||||
}
|
Loading…
Reference in New Issue