Workaround cleanup (#6350)

* Remove material-components workaround that was fixed upstream

* Remove unused toolbar workaround

* Fix cover dialog navigation icon
This commit is contained in:
Ivan Iskandar
2021-12-17 21:32:42 +07:00
committed by GitHub
parent aeff846e1f
commit 38d131be37
35 changed files with 70 additions and 221 deletions
+8 -8
View File
@@ -81,7 +81,7 @@
android:contentDescription="@string/action_previous_chapter"
android:padding="@dimen/screen_edge_margin"
app:srcCompat="@drawable/ic_skip_previous_24dp"
app:tint="?attr/colorOnToolbar" />
app:tint="?attr/colorOnSurface" />
<LinearLayout
android:id="@+id/reader_seekbar"
@@ -98,7 +98,7 @@
android:layout_width="32dp"
android:layout_height="match_parent"
android:gravity="center"
android:textColor="?attr/colorOnToolbar"
android:textColor="?attr/colorOnSurface"
android:textSize="15sp"
tools:text="1" />
@@ -119,7 +119,7 @@
android:layout_width="32dp"
android:layout_height="match_parent"
android:gravity="center"
android:textColor="?attr/colorOnToolbar"
android:textColor="?attr/colorOnSurface"
android:textSize="15sp"
tools:text="15" />
@@ -133,7 +133,7 @@
android:contentDescription="@string/action_next_chapter"
android:padding="@dimen/screen_edge_margin"
app:srcCompat="@drawable/ic_skip_next_24dp"
app:tint="?attr/colorOnToolbar" />
app:tint="?attr/colorOnSurface" />
</LinearLayout>
@@ -156,7 +156,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_reader_default_24dp"
app:tint="?attr/colorOnToolbar" />
app:tint="?attr/colorOnSurface" />
<ImageButton
android:id="@+id/action_crop_borders"
@@ -169,7 +169,7 @@
app:layout_constraintStart_toEndOf="@+id/action_reading_mode"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_crop_24dp"
app:tint="?attr/colorOnToolbar" />
app:tint="?attr/colorOnSurface" />
<ImageButton
android:id="@+id/action_rotation"
@@ -182,7 +182,7 @@
app:layout_constraintStart_toEndOf="@+id/action_crop_borders"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_screen_rotation_24dp"
app:tint="?attr/colorOnToolbar" />
app:tint="?attr/colorOnSurface" />
<ImageButton
android:id="@+id/action_settings"
@@ -195,7 +195,7 @@
app:layout_constraintStart_toEndOf="@id/action_rotation"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_settings_24dp"
app:tint="?attr/colorOnToolbar" />
app:tint="?attr/colorOnSurface" />
</androidx.constraintlayout.widget.ConstraintLayout>