From 50eec9ff2b0d45a705cda7f87fecfc9c6b8deb4b Mon Sep 17 00:00:00 2001 From: lnanase Date: Fri, 19 Oct 2018 23:01:54 +0900 Subject: [PATCH] update light theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * お知らせの文字色修正 * ui-secondary-color(ドロップダウンメニュー等)の背景色修正 --- app/javascript/styles/mastodon-light.scss | 1 + app/javascript/styles/mastodon-light/imastodon.scss | 12 ++++++++++++ app/javascript/styles/mastodon-light/variables.scss | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 app/javascript/styles/mastodon-light/imastodon.scss diff --git a/app/javascript/styles/mastodon-light.scss b/app/javascript/styles/mastodon-light.scss index 0867a3e0f24bd5..498ddefb72f80e 100644 --- a/app/javascript/styles/mastodon-light.scss +++ b/app/javascript/styles/mastodon-light.scss @@ -2,4 +2,5 @@ @import 'application'; @import 'mastodon-light/diff'; @import 'theme_mastodon'; +@import 'mastodon-light/imastodon'; diff --git a/app/javascript/styles/mastodon-light/imastodon.scss b/app/javascript/styles/mastodon-light/imastodon.scss new file mode 100644 index 00000000000000..f341864638e601 --- /dev/null +++ b/app/javascript/styles/mastodon-light/imastodon.scss @@ -0,0 +1,12 @@ +.announcements { + li { + color: $black; + } +} + +.announcements__body { + a { + color: $black; + border: solid 1px $ui-base-lighter-color; + } +} diff --git a/app/javascript/styles/mastodon-light/variables.scss b/app/javascript/styles/mastodon-light/variables.scss index 9f6d470b13cf4e..a9625cba8421e6 100644 --- a/app/javascript/styles/mastodon-light/variables.scss +++ b/app/javascript/styles/mastodon-light/variables.scss @@ -16,7 +16,7 @@ $valid-value-color: $success-green !default; $ui-base-color: $classic-secondary-color !default; $ui-base-lighter-color: #b0c0cf; $ui-primary-color: #9bcbed; -$ui-secondary-color: $classic-base-color !default; +$ui-secondary-color: #999999; $ui-highlight-color: #2b5fd9; $primary-text-color: $black !default;