mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
hop
This commit is contained in:
parent
4494d73cbc
commit
43c0067865
@ -27,3 +27,10 @@
|
|||||||
@import 'mastodon/dashboard';
|
@import 'mastodon/dashboard';
|
||||||
@import 'mastodon/rtl';
|
@import 'mastodon/rtl';
|
||||||
@import 'mastodon/accessibility';
|
@import 'mastodon/accessibility';
|
||||||
|
|
||||||
|
// landing
|
||||||
|
h1.main_brand_title{
|
||||||
|
margin: 2rem auto !important;
|
||||||
|
font-size: 5rem !important;
|
||||||
|
text-shadow: 0 0 1rem #ccc;
|
||||||
|
}
|
||||||
|
@ -11,12 +11,21 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.page-show{
|
.page-show{
|
||||||
min-height: 100vh;
|
height: 50vh;
|
||||||
|
min-height: 50vh;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: url('../images/home.jpg') no-repeat fixed center;
|
background: url('../images/home.jpg') no-repeat fixed center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|
||||||
|
// landing
|
||||||
|
h1.main_brand_title{
|
||||||
|
margin: 2rem auto !important;
|
||||||
|
font-size: 5rem !important;
|
||||||
|
text-shadow: 0 0 1rem #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.auth-page {
|
.auth-page {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
@ -57,3 +66,4 @@
|
|||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
- content_for :header_tags do
|
- content_for :header_tags do
|
||||||
%link{ rel: 'canonical', href: about_url }/
|
%link{ rel: 'canonical', href: about_url }/
|
||||||
= render partial: 'shared/og'
|
= render partial: 'shared/og'
|
||||||
|
%h1.main_brand_title= 'Mastodon Bliss'
|
||||||
|
%span.brand__tagline=t 'about.tagline'
|
||||||
|
|
||||||
.landing
|
.landing
|
||||||
|
|
||||||
%span.brand__tagline=t 'about.tagline'
|
|
||||||
.landing__brand
|
.landing__brand
|
||||||
= link_to root_url, class: 'brand' do
|
= link_to root_url, class: 'brand' do
|
||||||
= svg_logo_full
|
= svg_logo_full
|
||||||
|
52
db/schema.rb
52
db/schema.rb
@ -10,7 +10,7 @@
|
|||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
ActiveRecord::Schema.define(version: 2021_08_08_071221) do
|
||||||
|
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
@ -114,6 +114,23 @@ ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
|||||||
t.index ["account_id"], name: "index_account_stats_on_account_id", unique: true
|
t.index ["account_id"], name: "index_account_stats_on_account_id", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "account_statuses_cleanup_policies", force: :cascade do |t|
|
||||||
|
t.bigint "account_id", null: false
|
||||||
|
t.boolean "enabled", default: true, null: false
|
||||||
|
t.integer "min_status_age", default: 1209600, null: false
|
||||||
|
t.boolean "keep_direct", default: true, null: false
|
||||||
|
t.boolean "keep_pinned", default: true, null: false
|
||||||
|
t.boolean "keep_polls", default: false, null: false
|
||||||
|
t.boolean "keep_media", default: false, null: false
|
||||||
|
t.boolean "keep_self_fav", default: true, null: false
|
||||||
|
t.boolean "keep_self_bookmark", default: true, null: false
|
||||||
|
t.integer "min_favs"
|
||||||
|
t.integer "min_reblogs"
|
||||||
|
t.datetime "created_at", precision: 6, null: false
|
||||||
|
t.datetime "updated_at", precision: 6, null: false
|
||||||
|
t.index ["account_id"], name: "index_account_statuses_cleanup_policies_on_account_id"
|
||||||
|
end
|
||||||
|
|
||||||
create_table "account_warning_presets", force: :cascade do |t|
|
create_table "account_warning_presets", force: :cascade do |t|
|
||||||
t.text "text", default: "", null: false
|
t.text "text", default: "", null: false
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
@ -236,6 +253,13 @@ ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
|||||||
t.bigint "status_ids", array: true
|
t.bigint "status_ids", array: true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "articles", force: :cascade do |t|
|
||||||
|
t.string "title"
|
||||||
|
t.text "text"
|
||||||
|
t.datetime "created_at", null: false
|
||||||
|
t.datetime "updated_at", null: false
|
||||||
|
end
|
||||||
|
|
||||||
create_table "backups", force: :cascade do |t|
|
create_table "backups", force: :cascade do |t|
|
||||||
t.bigint "user_id"
|
t.bigint "user_id"
|
||||||
t.string "dump_file_name"
|
t.string "dump_file_name"
|
||||||
@ -494,6 +518,18 @@ ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
|||||||
t.index ["account_id"], name: "index_lists_on_account_id"
|
t.index ["account_id"], name: "index_lists_on_account_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "login_activities", force: :cascade do |t|
|
||||||
|
t.bigint "user_id", null: false
|
||||||
|
t.string "authentication_method"
|
||||||
|
t.string "provider"
|
||||||
|
t.boolean "success"
|
||||||
|
t.string "failure_reason"
|
||||||
|
t.inet "ip"
|
||||||
|
t.string "user_agent"
|
||||||
|
t.datetime "created_at"
|
||||||
|
t.index ["user_id"], name: "index_login_activities_on_user_id"
|
||||||
|
end
|
||||||
|
|
||||||
create_table "markers", force: :cascade do |t|
|
create_table "markers", force: :cascade do |t|
|
||||||
t.bigint "user_id"
|
t.bigint "user_id"
|
||||||
t.string "timeline", default: "", null: false
|
t.string "timeline", default: "", null: false
|
||||||
@ -868,6 +904,17 @@ ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
|||||||
t.index ["domain"], name: "index_unavailable_domains_on_domain", unique: true
|
t.index ["domain"], name: "index_unavailable_domains_on_domain", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "user_groups", force: :cascade do |t|
|
||||||
|
t.string "name", null: false
|
||||||
|
t.datetime "createdAt"
|
||||||
|
t.string "visibility"
|
||||||
|
t.integer "account_id"
|
||||||
|
t.integer "creator_id"
|
||||||
|
t.integer "statuses_count"
|
||||||
|
t.datetime "created_at", null: false
|
||||||
|
t.datetime "updated_at", null: false
|
||||||
|
end
|
||||||
|
|
||||||
create_table "user_invite_requests", force: :cascade do |t|
|
create_table "user_invite_requests", force: :cascade do |t|
|
||||||
t.bigint "user_id"
|
t.bigint "user_id"
|
||||||
t.text "text"
|
t.text "text"
|
||||||
@ -915,6 +962,7 @@ ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
|||||||
t.datetime "sign_in_token_sent_at"
|
t.datetime "sign_in_token_sent_at"
|
||||||
t.string "webauthn_id"
|
t.string "webauthn_id"
|
||||||
t.inet "sign_up_ip"
|
t.inet "sign_up_ip"
|
||||||
|
t.boolean "skip_sign_in_token"
|
||||||
t.index ["account_id"], name: "index_users_on_account_id"
|
t.index ["account_id"], name: "index_users_on_account_id"
|
||||||
t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true
|
t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true
|
||||||
t.index ["created_by_application_id"], name: "index_users_on_created_by_application_id"
|
t.index ["created_by_application_id"], name: "index_users_on_created_by_application_id"
|
||||||
@ -971,6 +1019,7 @@ ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
|||||||
add_foreign_key "account_pins", "accounts", column: "target_account_id", on_delete: :cascade
|
add_foreign_key "account_pins", "accounts", column: "target_account_id", on_delete: :cascade
|
||||||
add_foreign_key "account_pins", "accounts", on_delete: :cascade
|
add_foreign_key "account_pins", "accounts", on_delete: :cascade
|
||||||
add_foreign_key "account_stats", "accounts", on_delete: :cascade
|
add_foreign_key "account_stats", "accounts", on_delete: :cascade
|
||||||
|
add_foreign_key "account_statuses_cleanup_policies", "accounts", on_delete: :cascade
|
||||||
add_foreign_key "account_warnings", "accounts", column: "target_account_id", on_delete: :cascade
|
add_foreign_key "account_warnings", "accounts", column: "target_account_id", on_delete: :cascade
|
||||||
add_foreign_key "account_warnings", "accounts", on_delete: :nullify
|
add_foreign_key "account_warnings", "accounts", on_delete: :nullify
|
||||||
add_foreign_key "accounts", "accounts", column: "moved_to_account_id", on_delete: :nullify
|
add_foreign_key "accounts", "accounts", column: "moved_to_account_id", on_delete: :nullify
|
||||||
@ -1010,6 +1059,7 @@ ActiveRecord::Schema.define(version: 2021_06_30_000137) do
|
|||||||
add_foreign_key "list_accounts", "follows", on_delete: :cascade
|
add_foreign_key "list_accounts", "follows", on_delete: :cascade
|
||||||
add_foreign_key "list_accounts", "lists", on_delete: :cascade
|
add_foreign_key "list_accounts", "lists", on_delete: :cascade
|
||||||
add_foreign_key "lists", "accounts", on_delete: :cascade
|
add_foreign_key "lists", "accounts", on_delete: :cascade
|
||||||
|
add_foreign_key "login_activities", "users", on_delete: :cascade
|
||||||
add_foreign_key "markers", "users", on_delete: :cascade
|
add_foreign_key "markers", "users", on_delete: :cascade
|
||||||
add_foreign_key "media_attachments", "accounts", name: "fk_96dd81e81b", on_delete: :nullify
|
add_foreign_key "media_attachments", "accounts", name: "fk_96dd81e81b", on_delete: :nullify
|
||||||
add_foreign_key "media_attachments", "scheduled_statuses", on_delete: :nullify
|
add_foreign_key "media_attachments", "scheduled_statuses", on_delete: :nullify
|
||||||
|
Loading…
Reference in New Issue
Block a user