diff --git a/app/javascript/flavours/glitch/styles/homogay/diff.scss b/app/javascript/flavours/glitch/styles/homogay/diff.scss index b628f70e4e..9cbfeb2718 100644 --- a/app/javascript/flavours/glitch/styles/homogay/diff.scss +++ b/app/javascript/flavours/glitch/styles/homogay/diff.scss @@ -1,7 +1,3 @@ -body { - background: darken($ui-base-color, 3%); -} - // hashtags in primary color .status__content a { color: $highlight-text-color; @@ -11,10 +7,11 @@ body { .compose-panel .autosuggest-textarea label .autosuggest-textarea__textarea, .compose-form .autosuggest-input label .autosuggest-textarea__textarea, .compose-form__buttons-wrapper, +.compose-form__warning, .spoiler-input input, .compose-form__modifiers, .reply-indicator { - background: $ui-base-color; + background: lighten($ui-base-color, 4%); color: $primary-text-color; } .compose-form .autosuggest-textarea label .autosuggest-textarea__textarea { @@ -43,6 +40,10 @@ body { color: $ui-base-lighter-color; } +.search__input { + background: lighten($ui-base-color, 4%); +} + // dropdowns .dropdown-menu, .dropdown-menu__item a, @@ -76,7 +77,7 @@ body { } .glitch.local-settings__navigation, .glitch.local-settings__navigation__item { - background: lighten($ui-base-color, 5%); + background: lighten($ui-base-color, 4%); } .glitch.local-settings__navigation__item { border-bottom-color: $ui-base-lighter-color; @@ -88,6 +89,7 @@ body { .account__avatar, .search__input, .spoiler-input input, +.status-card, .language-dropdown__dropdown, .privacy-dropdown__dropdown, .poll__option input[type="text"], @@ -120,3 +122,9 @@ body { border-bottom-left-radius: $border-radius; border-bottom-right-radius: $border-radius; } + +// no separators between posts +.status { + border-bottom: 0; + margin-bottom: 10px; +} diff --git a/app/javascript/flavours/glitch/styles/homogay/variables.scss b/app/javascript/flavours/glitch/styles/homogay/variables.scss index e1304a526a..db695529d6 100644 --- a/app/javascript/flavours/glitch/styles/homogay/variables.scss +++ b/app/javascript/flavours/glitch/styles/homogay/variables.scss @@ -9,7 +9,7 @@ $gold-star: #e4ba3d; $red-bookmark: $success-green; // Values from the classic Mastodon UI -$classic-base-color: #0f0b17; +$classic-base-color: #150f21; $classic-primary-color: #d4b6cb; $classic-secondary-color: #eaddf4; $classic-highlight-color: #de18a3;