Compare commits

..

No commits in common. "5ea03d39fa1081f8b52558a861d8a839878c30c6" and "8948b342438bfadb60afb5108dafb645d08602b8" have entirely different histories.

4 changed files with 18 additions and 8 deletions

View file

@ -40,7 +40,8 @@
android:src="@drawable/baseline_settings_24"
custom:layout_constraintBottom_toBottomOf="parent"
custom:layout_constraintStart_toStartOf="parent"
custom:layout_constraintTop_toTopOf="parent" />
custom:layout_constraintTop_toTopOf="parent"
custom:type="solid" />
<TextView
android:id="@+id/list_heading"
@ -69,7 +70,8 @@
android:src="@drawable/baseline_close_24"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
custom:type="solid" />
<ImageView
android:id="@+id/list_lock"
android:visibility="gone"
@ -83,7 +85,8 @@
android:src="@drawable/baseline_lock_24"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/list_close"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
custom:type="solid" />
</androidx.constraintlayout.widget.ConstraintLayout>
<com.google.android.material.tabs.TabLayout

View file

@ -47,7 +47,8 @@
android:src="@drawable/baseline_close_24"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
custom:type="solid" />
<ImageView
android:id="@+id/settings_system"
@ -62,7 +63,8 @@
android:src="@drawable/baseline_settings_applications_24"
custom:layout_constraintBottom_toBottomOf="parent"
custom:layout_constraintStart_toStartOf="parent"
custom:layout_constraintTop_toTopOf="parent" />
custom:layout_constraintTop_toTopOf="parent"
custom:type="solid" />
</androidx.constraintlayout.widget.ConstraintLayout>
<com.google.android.material.tabs.TabLayout

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- This declares attributes for the FontAwesome TextView -->
<resources>
<declare-styleable name="FontAwesome">
<attr name="type" format="string" />
</declare-styleable>
</resources>

View file

@ -123,9 +123,6 @@
<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:color">#000000</item>
<item name="android:textColor">@color/text_color_toggle</item>
<item name="android:shadowRadius">0</item>
<item name="android:shadowDx">0</item>
<item name="android:shadowDy">0</item>
</style>
<style name="AlertDialogDanger" parent="AlertDialogCustom">