Skip to content

Commit

Permalink
Revert "Fixes Part Of #4194: Added dark mode support to DrawerFragmen…
Browse files Browse the repository at this point in the history
…t, ConceptCardFragment and AudioFragment (#4395)" (#4428)

This reverts commit 3441214.
  • Loading branch information
BenHenning authored Jul 12, 2022
1 parent c30a128 commit 78f4f52
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 79 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/color/drawer_item.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/component_color_drawer_fragment_selected_text_color" android:state_checked="true" />
<item android:color="@color/component_color_drawer_fragment_text_color" />
<item android:color="@color/highlighted_nav_menu_item" android:state_checked="true" />
<item android:color="@color/color_def_black" />
</selector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/audio_background.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
<corners
android:bottomLeftRadius="@dimen/audio_fragment_corner_radius"
android:bottomRightRadius="@dimen/audio_fragment_corner_radius" />
<solid android:color="@color/component_color_audio_fragment_background_color" />
<solid android:color="@color/audio_component_background" />
</shape>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/seekbar_thumb.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
android:left="8dp"
android:top="4dp">
<shape android:shape="oval">
<solid android:color="@color/component_color_audio_fragment_thumb_background_color" />
<solid android:color="@color/color_def_white" />
<corners android:radius="10dp" />
</shape>
</item>
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/res/layout/audio_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
android:onClick="@{(v) -> viewModel.togglePlayPause(viewModel.playStatusLiveData)}"
android:padding="12dp"
app:srcCompat="@{viewModel.playStatusLiveData == UiAudioPlayStatus.PLAYING ? @drawable/ic_pause_circle_filled_white_24dp : @drawable/ic_play_circle_filled_white_24dp}"
app:tint="@color/component_color_audio_fragment_icon_color"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
Expand Down Expand Up @@ -71,7 +70,6 @@
android:onClick="@{(v) -> audioFragment.languageSelectionClicked()}"
android:padding="12dp"
app:srcCompat="@drawable/ic_audio_lang_24px"
app:tint="@color/component_color_audio_fragment_icon_color"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
Expand Down
9 changes: 4 additions & 5 deletions app/src/main/res/layout/concept_card_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/component_color_concept_card_fragment_background_color">
android:background="@color/concept_card_background">

<androidx.appcompat.widget.Toolbar
android:id="@+id/concept_card_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/component_color_concept_card_fragment_toolbar_color"
android:background="@color/concept_toolbar_background"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
Expand Down Expand Up @@ -58,16 +58,15 @@
android:layout_marginEnd="@dimen/concept_card_heading_text_margin_end"
android:fontFamily="sans-serif-medium"
android:text="@{viewModel.conceptCardLiveData.conceptCard.skillDescription}"
android:textColor="@color/component_color_concept_card_fragment_text_color"
android:textColor="@color/oppia_primary_text"
android:textSize="20sp" />

<TextView
android:id="@+id/concept_card_explanation_text"
style="@style/Body"
android:layout_marginStart="@dimen/concept_card_explanation_text_margin_start"
android:layout_marginTop="@dimen/concept_card_explanation_text_margin_top"
android:layout_marginEnd="@dimen/concept_card_explanation_text_margin_end"
android:textColor="@color/component_color_concept_card_fragment_text_color" />
android:layout_marginEnd="@dimen/concept_card_explanation_text_margin_end" />
</LinearLayout>
<!-- TODO(#352): Show worked examples in Concept Card. -->
</ScrollView>
Expand Down
10 changes: 4 additions & 6 deletions app/src/main/res/layout/drawer_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/component_color_drawer_fragment_background_color"
android:orientation="vertical">

<com.google.android.material.navigation.NavigationView
Expand All @@ -36,7 +35,6 @@
android:fitsSystemWindows="true"
android:overScrollMode="never"
android:scrollbars="none"
android:background="@color/component_color_drawer_fragment_background_color"
app:elevation="0dp"
app:itemBackground="@android:color/transparent"
app:itemIconTint="@color/drawer_item"
Expand Down Expand Up @@ -68,7 +66,7 @@
android:layout_height="24dp"
android:layout_gravity="center_vertical"
app:srcCompat="@drawable/ic_baseline_code_24"
android:tint="@{footerViewModel.isDeveloperOptionsSelected ? @color/component_color_drawer_fragment_developer_options_selected_image_color : @color/component_color_drawer_fragment_developer_options_image_color}"/>
android:tint="@{footerViewModel.isDeveloperOptionsSelected ? @color/highlighted_developer_options_nav_menu_item : @color/oppia_primary_text_dark}"/>

<TextView
android:layout_width="match_parent"
Expand All @@ -77,7 +75,7 @@
android:layout_marginStart="12dp"
android:fontFamily="sans-serif-medium"
android:text="@string/developer_options"
android:textColor="@{footerViewModel.isDeveloperOptionsSelected ? @color/component_color_drawer_fragment_developer_options_selected_text_color : @color/component_color_drawer_fragment_developer_options_text_color}"
android:textColor="@{footerViewModel.isDeveloperOptionsSelected ? @color/highlighted_developer_options_nav_menu_item : @color/oppia_primary_text_dark}"
android:textSize="14sp" />
</LinearLayout>

Expand All @@ -99,7 +97,7 @@
android:layout_height="24dp"
android:layout_gravity="center_vertical"
app:srcCompat="@drawable/ic_admin_settings_icon_brown_24dp"
android:tint="@{footerViewModel.isAdministratorControlsSelected ? @color/component_color_drawer_fragment_admin_controls_selected_image_color : @color/component_color_drawer_fragment_admin_controls_image_color}" />
android:tint="@{footerViewModel.isAdministratorControlsSelected ? @color/highlighted_nav_menu_item : @color/oppia_primary_text_dark}" />

<TextView
android:layout_width="match_parent"
Expand All @@ -108,7 +106,7 @@
android:layout_marginStart="12dp"
android:fontFamily="sans-serif-medium"
android:text="@string/administrator_controls"
android:textColor="@{footerViewModel.isAdministratorControlsSelected ? @color/component_color_drawer_fragment_admin_controls_selected_text_color : @color/component_color_drawer_fragment_admin_controls_text_color}"
android:textColor="@{footerViewModel.isAdministratorControlsSelected ? @color/highlighted_nav_menu_item : @color/oppia_primary_text_dark}"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>
Expand Down
12 changes: 0 additions & 12 deletions app/src/main/res/values-night/color_palette.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,6 @@
<color name="color_palette_error_text_color">@color/color_def_oppia_pink</color>
<color name="color_palette_show_eye_icon_color">@color/color_def_forest_green</color>
<color name="color_palette_hide_eye_icon_color">@color/color_def_forest_green</color>
<color name="color_palette_icon_background_secondary_color">@color/color_def_oppia_turquoise</color>
<color name="color_palette_accent_background_color">@color/color_def_oppia_dark_grey</color>
<color name="color_palette_seekbar_progress_background_color">@color/color_def_maastricht_blue</color>
<color name="color_palette_toolbar_secondary_color">@color/color_def_forest_green</color>
<color name="color_palette_secondary_dark_background_color">@color/color_def_oppia_light_black</color>
<color name="color_palette_concept_card_toolbar_color">@color/color_def_dark_pink</color>
<color name="color_palette_menu_selected_text_color">@color/color_def_oppia_pink</color>
<color name="color_palette_developer_option_menu_selected_color">@color/color_def_persian_blue</color>
<color name="color_palette_underline_view_color">@color/color_def_bright_green</color>
<color name="color_palette_menu_text_color">@color/color_def_white</color>
<color name="color_palette_secondary_container_background_color">@color/color_def_oppia_metallic_blue</color>
<color name="color_palette_concept_status_bar_color">@color/color_def_dark_purple</color>
<color name="color_palette_disabled_button_background_color">@color/color_def_black_grey</color>
<color name="color_palette_back_arrow_button_color">@color/color_def_oppia_turquoise</color>
<color name="color_palette_replay_button_color">@color/color_def_dark_pink</color>
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-v21/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
</style>

<style name="AudioSeekBar" parent="Widget.AppCompat.SeekBar">
<item name="android:progressBackgroundTint">@color/component_color_audio_fragment_seekbar_color</item>
<item name="android:progressTint">@color/component_color_audio_fragment_seekbar_progress_color</item>
<item name="android:colorControlActivated">@color/component_color_audio_fragment_seekbar_color</item>
<item name="android:progressBackgroundTint">@color/progress_background_tint</item>
<item name="android:progressTint">@color/color_def_white</item>
<item name="android:colorControlActivated">@color/progress_background_tint</item>
</style>

<style name="ReadingTextSizeSeekBar" parent="Widget.AppCompat.SeekBar">
Expand Down
11 changes: 0 additions & 11 deletions app/src/main/res/values/color_defs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,6 @@
<color name="color_def_yellow_ivory">#FFFFF0</color>
<color name="color_def_chooser_grey">#999999</color>
<color name="color_def_green">#02655c</color>
<color name="color_def_error">#923026</color>
<color name="color_def_maastricht_blue">#0e162f</color>
<color name="color_def_ocean_blue">#081661</color>
<color name="color_def_dark_pink">#8A3D69</color>
<color name="color_def_persian_blue">#00609C</color>
<color name="color_def_bright_green">#009C8A</color>
<color name="color_def_grape_violet">#674172</color>
<color name="color_def_bright_violet">#7659B6</color>
<color name="color_def_teal_blue">#2F6687</color>
<color name="color_def_dark_red">#A6503A</color>
<color name="color_def_dark_purple">#441530</color>
<color name="color_def_error_text">#923026</color>
<color name="color_def_black_grey">#33999999</color>
<color name="color_def_dark_pink">#8A3D69</color>
Expand Down
12 changes: 0 additions & 12 deletions app/src/main/res/values/color_palette.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,6 @@
<color name="color_palette_error_text_color">@color/color_def_error_text</color>
<color name="color_palette_show_eye_icon_color">@color/color_def_accessible_grey</color>
<color name="color_palette_hide_eye_icon_color">@color/color_def_accessible_grey</color>
<color name="color_palette_icon_background_secondary_color">@color/color_def_white</color>
<color name="color_palette_accent_background_color">@color/color_def_oppia_dark_blue</color>
<color name="color_palette_seekbar_progress_background_color">@color/color_def_ocean_blue</color>
<color name="color_palette_toolbar_secondary_color">@color/color_def_oppia_green</color>
<color name="color_palette_secondary_dark_background_color">@color/color_def_oppia_light_green</color>
<color name="color_palette_concept_card_toolbar_color">@color/color_def_oppia_brown_dark</color>
<color name="color_palette_menu_selected_text_color">@color/color_def_oppia_brown_dark</color>
<color name="color_palette_developer_option_menu_selected_color">@color/color_def_persian_blue</color>
<color name="color_palette_underline_view_color">@color/color_def_oppia_light_brown</color>
<color name="color_palette_menu_text_color">@color/color_def_black</color>
<color name="color_palette_secondary_container_background_color">@color/color_def_teal_blue</color>
<color name="color_palette_concept_status_bar_color">@color/color_def_dark_red</color>
<color name="color_palette_disabled_button_background_color">@color/color_def_black_grey</color>
<color name="color_palette_back_arrow_button_color">@color/color_def_oppia_dark_blue</color>
<color name="color_palette_replay_button_color">@color/color_def_oppia_brown_dark</color>
Expand Down
23 changes: 0 additions & 23 deletions app/src/main/res/values/component_colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,27 +176,4 @@
<color name="component_color_math_expression_parser_activity_radio_buttons_color">@color/color_palette_dark_text_color</color>
<color name="component_color_math_expression_parser_activity_edit_text_color">@color/color_palette_dark_text_color</color>
<color name="component_color_math_expression_parser_activity_hint_text_color">@color/color_palette_hint_text_color</color>
<!-- Drawer Fragment -->
<color name="component_color_drawer_fragment_background_color">@color/color_palette_primary_container_background_color</color>
<color name="component_color_drawer_fragment_selected_text_color">@color/color_palette_menu_selected_text_color</color>
<color name="component_color_drawer_fragment_text_color">@color/color_palette_menu_text_color</color>
<color name="component_color_drawer_fragment_developer_options_text_color">@color/color_palette_dark_text_color</color>
<color name="component_color_drawer_fragment_developer_options_selected_text_color">@color/color_palette_developer_option_menu_selected_color</color>
<color name="component_color_drawer_fragment_developer_options_image_color">@color/color_palette_dark_text_color</color>
<color name="component_color_drawer_fragment_developer_options_selected_image_color">@color/color_palette_developer_option_menu_selected_color</color>
<color name="component_color_drawer_fragment_admin_controls_text_color">@color/color_palette_dark_text_color</color>
<color name="component_color_drawer_fragment_admin_controls_selected_text_color">@color/color_palette_menu_selected_text_color</color>
<color name="component_color_drawer_fragment_admin_controls_image_color">@color/color_palette_dark_text_color</color>
<color name="component_color_drawer_fragment_admin_controls_selected_image_color">@color/color_palette_menu_selected_text_color</color>
<!-- Concept Card Fragment -->
<color name="component_color_concept_card_fragment_toolbar_color">@color/color_palette_concept_card_toolbar_color</color>
<color name="component_color_concept_card_fragment_status_bar_color">@color/color_palette_concept_status_bar_color</color>
<color name="component_color_concept_card_fragment_background_color">@color/color_palette_background_color</color>
<color name="component_color_concept_card_fragment_text_color">@color/color_palette_highlighted_text_color</color>
<!-- Audio Fragment -->
<color name="component_color_audio_fragment_background_color">@color/color_palette_accent_background_color</color>
<color name="component_color_audio_fragment_icon_color">@color/color_palette_icon_background_secondary_color</color>
<color name="component_color_audio_fragment_thumb_background_color">@color/color_palette_icon_background_secondary_color</color>
<color name="component_color_audio_fragment_seekbar_progress_color">@color/color_palette_icon_background_secondary_color</color>
<color name="component_color_audio_fragment_seekbar_color">@color/color_palette_seekbar_progress_background_color</color>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<style name="FullScreenDialogStyle" parent="Theme.MaterialComponents.Dialog.Bridge">
<item name="android:windowNoTitle">true</item>
<item name="colorPrimaryDark">@color/component_color_concept_card_fragment_status_bar_color</item>
<item name="colorPrimaryDark">@color/concept_toolbar_heading</item>
<!-- Set this to true if you want Full Screen without status bar -->
<item name="android:windowFullscreen">false</item>
<item name="android:windowIsFloating">false</item>
Expand Down

0 comments on commit 78f4f52

Please sign in to comment.