mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
TLDR: * This change should not break anything or change any color. * Simplifies theming and styling while improving developer experience. * With this developers can often skip styling for color entirely, while ensuring consistency and preventing accidental overrides. Bug: 374273611 Test: presubmit Flag: EXEMPT bugfix Change-Id: Id19038078e83c73847b1a7c686c3a3df1ecccac2
11 lines
402 B
XML
11 lines
402 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:alpha="1"
|
|
android:color="@color/materialColorOnSurface"
|
|
android:state_enabled="true" />
|
|
<item
|
|
android:alpha="?android:disabledAlpha"
|
|
android:color="@color/materialColorOnSurface"
|
|
android:state_enabled="false" />
|
|
</selector> |