diff --git a/app/javascript/styles/custom.scss b/app/javascript/styles/custom.scss index 3377da412..d9620f1ae 100644 --- a/app/javascript/styles/custom.scss +++ b/app/javascript/styles/custom.scss @@ -7,6 +7,15 @@ body { background-attachment: fixed; } +body.about-body { + background-color: transparent; + background-image: url('../images/background-kosmos.jpg'); +} + +.landing-page .learn-more-cta { + background: rgba(31,35,43,0.5); +} + .ui { background-color: darken($ui-base-color, 7%); background-image: url('../images/background-kosmos.jpg'); diff --git a/db/schema.rb b/db/schema.rb index 2501e451d..a3453e587 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -161,6 +161,7 @@ ActiveRecord::Schema.define(version: 20170720000000) do t.datetime "updated_at", null: false t.index ["account_id", "status_id"], name: "index_mentions_on_account_id_and_status_id", unique: true t.index ["status_id"], name: "index_mentions_on_status_id" + t.index ["status_id"], name: "mentions_status_id_index" end create_table "mutes", id: :serial, force: :cascade do |t|