mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
More Dark Theme Changes after designer feedback
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="42dp"
|
||||
android:height="42dp"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24.0"
|
||||
android:viewportWidth="24.0">
|
||||
<path
|
||||
|
||||
@@ -75,7 +75,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/continueButton"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/change_password"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/strength_meter"
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/download_briar_button"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="@dimen/margin_medium"
|
||||
|
||||
@@ -60,6 +60,7 @@
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="@dimen/margin_large"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:onClick="onForgottenPasswordClick"
|
||||
android:text="@string/forgotten_password"
|
||||
android:textColor="?android:attr/textColorLink"/>
|
||||
|
||||
@@ -1,23 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/margin_small"
|
||||
tools:context=".android.blogs.RssFeedImportActivity">
|
||||
tools:context=".android.blog.RssFeedImportActivity">
|
||||
|
||||
<EditText
|
||||
android:id="@+id/urlInput"
|
||||
<android.support.v7.widget.CardView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:gravity="top"
|
||||
android:hint="@string/blogs_rss_feeds_import_hint"
|
||||
android:inputType="textUri"
|
||||
android:paddingLeft="@dimen/margin_large"
|
||||
android:paddingRight="@dimen/margin_large"/>
|
||||
android:elevation="@dimen/cardview_default_elevation"
|
||||
app:cardBackgroundColor="@color/card_background"
|
||||
app:cardCornerRadius="0dp"
|
||||
app:cardUseCompatPadding="false">
|
||||
|
||||
<EditText
|
||||
android:id="@+id/urlInput"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@android:color/transparent"
|
||||
android:gravity="top"
|
||||
android:hint="@string/blogs_rss_feeds_import_hint"
|
||||
android:inputType="textUri"
|
||||
android:padding="@dimen/margin_medium"
|
||||
android:textColor="?android:attr/textColorPrimary"/>
|
||||
|
||||
</android.support.v7.widget.CardView>
|
||||
|
||||
<Button
|
||||
android:id="@+id/importButton"
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/continueButton"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/margin_medium"
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/next"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/margin_activity_horizontal"
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/next"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:enabled="false"
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/next"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:enabled="false"
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/message_bubble_margin"
|
||||
android:orientation="vertical">
|
||||
|
||||
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
||||
@@ -14,7 +15,6 @@
|
||||
android:layout_gravity="left|start"
|
||||
android:layout_marginLeft="@dimen/message_bubble_margin_tail"
|
||||
android:layout_marginRight="@dimen/message_bubble_margin_non_tail"
|
||||
android:layout_marginTop="@dimen/message_bubble_margin"
|
||||
android:background="@drawable/msg_in_top"
|
||||
android:elevation="@dimen/message_bubble_elevation"
|
||||
tools:text="Short message"/>
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/message_bubble_margin"
|
||||
android:orientation="vertical">
|
||||
|
||||
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
||||
@@ -14,7 +15,6 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/message_bubble_margin_non_tail"
|
||||
android:layout_marginRight="@dimen/message_bubble_margin_tail"
|
||||
android:layout_marginTop="@dimen/message_bubble_margin"
|
||||
android:background="@drawable/msg_out_top"
|
||||
android:elevation="@dimen/message_bubble_elevation"
|
||||
android:textColor="@color/briar_text_primary_inverse"
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/message_bubble_margin"
|
||||
android:orientation="vertical">
|
||||
|
||||
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
||||
@@ -13,7 +14,6 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/message_bubble_margin_tail"
|
||||
android:layout_marginRight="@dimen/message_bubble_margin_non_tail"
|
||||
android:layout_marginTop="@dimen/message_bubble_margin"
|
||||
android:background="@drawable/msg_in_top"
|
||||
android:elevation="@dimen/message_bubble_elevation"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
<Button
|
||||
android:id="@+id/button"
|
||||
style="@style/BriarButton.Default"
|
||||
style="@style/BriarButton"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="8dp"
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
android:id="@+id/emoji_toggle"
|
||||
android:layout_width="@dimen/text_input_height"
|
||||
android:layout_height="@dimen/text_input_height"
|
||||
android:layout_gravity="bottom"
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:padding="@dimen/margin_small"
|
||||
android:scaleType="center"
|
||||
@@ -32,21 +33,24 @@
|
||||
android:layout_weight="1"
|
||||
android:background="@android:color/transparent"
|
||||
android:inputType="textMultiLine|textCapSentences"
|
||||
android:maxLines="3"
|
||||
android:maxLines="4"
|
||||
android:minHeight="@dimen/text_input_height"
|
||||
android:paddingLeft="2dp"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:textColorHint="?android:attr/textColorTertiary"/>
|
||||
tools:ignore="RtlSymmetry"/>
|
||||
|
||||
<android.support.v7.widget.AppCompatImageButton
|
||||
android:id="@+id/btn_send"
|
||||
android:layout_width="@dimen/text_input_height"
|
||||
android:layout_height="@dimen/text_input_height"
|
||||
android:layout_gravity="bottom"
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:clickable="true"
|
||||
android:contentDescription="@string/send"
|
||||
android:enabled="false"
|
||||
android:focusable="true"
|
||||
android:padding="@dimen/margin_small"
|
||||
android:padding="4dp"
|
||||
android:scaleType="center"
|
||||
android:src="@drawable/social_send_now_white"
|
||||
app:tint="@color/briar_accent"/>
|
||||
|
||||
|
||||
@@ -50,7 +50,6 @@
|
||||
android:paddingRight="@dimen/margin_small"
|
||||
android:paddingTop="@dimen/margin_small"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:textColorHint="?android:attr/textColorTertiary"
|
||||
tools:ignore="RtlSymmetry"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
@@ -1,15 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<color name="briar_primary">@color/briar_blue_dark</color>
|
||||
<color name="briar_accent">@color/briar_green</color>
|
||||
|
||||
<color name="preference_category">@color/briar_accent</color>
|
||||
<color name="preference_category_background">@color/divider</color>
|
||||
<color name="preference_category_background">#080C10</color>
|
||||
|
||||
<color name="color_primary">#ffffff</color>
|
||||
|
||||
<color name="msg_in">#2D3E50</color>
|
||||
<color name="msg_in">@color/briar_blue</color>
|
||||
<color name="msg_out">#3C80A9</color>
|
||||
<color name="notice_in">@color/briar_blue_dark</color>
|
||||
<color name="notice_out">#236087</color>
|
||||
@@ -17,12 +16,14 @@
|
||||
<color name="window_background">@color/briar_blue_very_dark</color>
|
||||
<color name="card_background">@color/briar_blue_dark</color>
|
||||
<color name="item_background_highlight">@color/briar_blue</color>
|
||||
<color name="divider">#000000</color>
|
||||
|
||||
<color name="briar_button_color">@color/briar_blue_light</color>
|
||||
<color name="briar_button_neutral">@color/briar_link</color>
|
||||
<color name="briar_button_text_disabled">#23cccccc</color>
|
||||
|
||||
<color name="thread_indicator">#2D3E50</color>
|
||||
<color name="thread_item_background">@color/window_background</color>
|
||||
<color name="thread_item_highlight">#000000</color>
|
||||
|
||||
<color name="divider">#000000</color>
|
||||
</resources>
|
||||
@@ -17,7 +17,6 @@
|
||||
|
||||
<color name="briar_primary">@color/briar_blue</color>
|
||||
<color name="briar_primary_dark">@color/briar_blue_very_dark</color>
|
||||
|
||||
<color name="briar_accent">@color/briar_blue</color>
|
||||
|
||||
<color name="color_primary">#dd000000</color>
|
||||
@@ -36,6 +35,7 @@
|
||||
<color name="preference_category">@color/briar_blue_light</color>
|
||||
<color name="preference_category_background">@color/window_background</color>
|
||||
|
||||
<color name="briar_button_color">@color/briar_accent</color>
|
||||
<color name="briar_button_positive">@color/briar_link</color>
|
||||
<color name="briar_button_neutral">@color/briar_blue_light</color>
|
||||
<color name="briar_button_negative">#ff0000</color>
|
||||
@@ -45,5 +45,6 @@
|
||||
<color name="thread_indicator">#9e9e9e</color>
|
||||
<color name="thread_item_background">#eceff1</color>
|
||||
<color name="thread_item_highlight">#ffffff</color>
|
||||
|
||||
<color name="divider">#c1c1c1</color>
|
||||
</resources>
|
||||
@@ -9,6 +9,7 @@
|
||||
<item name="titleTextAppearance">@style/BriarToolbarTitleTextAppearance</item>
|
||||
<item name="subtitleTextAppearance">@style/BriarToolbarSubTitleTextAppearance</item>
|
||||
<item name="android:theme">@style/BriarToolbarTheme</item>
|
||||
<item name="popupTheme">@style/PopupMenu</item>
|
||||
</style>
|
||||
|
||||
<style name="BriarToolbarTheme">
|
||||
@@ -23,15 +24,19 @@
|
||||
<item name="android:textColor">@color/briar_text_secondary_inverse</item>
|
||||
</style>
|
||||
|
||||
<style name="BriarButton.Default">
|
||||
<item name="android:textAllCaps">true</item>
|
||||
<style name="PopupMenu" parent="Theme.AppCompat.DayNight.DarkActionBar">
|
||||
<item name="android:colorBackground">@color/window_background</item>
|
||||
</style>
|
||||
|
||||
<style name="ButtonTheme" parent="Theme.AppCompat.DayNight">
|
||||
<!-- A strange hack needed only to override button color on all API levels -->
|
||||
<item name="colorAccent">@color/briar_button_color</item>
|
||||
</style>
|
||||
|
||||
<style name="BriarButton" parent="Widget.AppCompat.Button.Colored">
|
||||
<item name="android:theme">@style/ButtonTheme</item>
|
||||
<item name="android:layout_width">match_parent</item>
|
||||
<item name="android:layout_height">wrap_content</item>
|
||||
<item name="android:textSize">@dimen/text_size_medium</item>
|
||||
<item name="android:padding">@dimen/margin_large</item>
|
||||
<item name="android:textColor">@color/button_text</item>
|
||||
</style>
|
||||
|
||||
@@ -67,8 +72,8 @@
|
||||
|
||||
<style name="Divider.ContactList" parent="Divider">
|
||||
<item name="android:layout_width">match_parent</item>
|
||||
<item name="android:layout_height">1dp</item>
|
||||
<item name="android:layout_marginLeft">@dimen/margin_large</item>
|
||||
<item name="android:layout_height">1px</item>
|
||||
<item name="android:layout_marginLeft">72dp</item>
|
||||
</style>
|
||||
|
||||
<style name="Divider.ThreadItem" parent="Divider">
|
||||
@@ -89,7 +94,7 @@
|
||||
|
||||
<style name="TextMessage.Notice">
|
||||
<item name="android:textIsSelectable">true</item>
|
||||
<item name="android:textSize">@dimen/text_size_tiny</item>
|
||||
<item name="android:textSize">@dimen/text_size_small</item>
|
||||
<item name="android:textColor">?android:attr/textColorSecondary</item>
|
||||
<item name="android:textStyle">italic</item>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user