diff --git a/stylesheets/android-dark.scss b/stylesheets/android-dark.scss index 608f9ef60..0b6af5c1d 100644 --- a/stylesheets/android-dark.scss +++ b/stylesheets/android-dark.scss @@ -2,6 +2,7 @@ $grey-dark: #333333; $grey-dark_l2: darken($grey-dark, 4%); $grey-dark_l3: darken($grey-dark_l2, 7%); $grey-dark_l4: darken($grey-dark_l3, 8%); +$button-dark: #ccc; $text-dark: #CCCCCC; .android-dark { @@ -22,6 +23,10 @@ $text-dark: #CCCCCC; color: $text-dark; } } + button, .confirmation-dialog .content .buttons button { + background-color: $button-dark; + border: 1px solid $grey-dark_l2; + } .message-detail, .message-container, .conversation, .discussion-container { background-color: $grey-dark_l3; diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index b18016796..950f8d064 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -1899,6 +1899,9 @@ li.entry .error-icon-container { .android-dark #header.inactive { background-color: #333333; color: #CCCCCC; } + .android-dark button, .android-dark .confirmation-dialog .content .buttons button { + background-color: #ccc; + border: 1px solid #292929; } .android-dark .message-detail, .android-dark .message-container, .android-dark .conversation, .android-dark .discussion-container { background-color: #171717; }