Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kimgoetzke committed Mar 28, 2024
1 parent 2eca33d commit 17d2d7a
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2022 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<!-- Disabled -->
<item android:color="#FFFFFF" android:state_enabled="false"/>

<!-- Error -->
<item android:color="#FFFFFF" app:state_error="true"/>

<!-- Indeterminate -->
<item android:color="#FFFFFF" app:state_indeterminate="true"/>

<!-- Checked -->
<item android:color="#FFFFFF" android:state_checked="true"/>

<!-- Unchecked -->
<item android:color="#FFFFFF" android:state_checked="false"/>
</selector>
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2022 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<!-- Disabled -->
<item android:alpha="@dimen/m3_comp_checkbox_selected_disabled_container_opacity"
android:color="#FFFFFF"
android:state_enabled="false"/>

<!-- Error -->
<item android:color="#FFFFFF" app:state_error="true"/>

<!-- Indeterminate -->
<item android:color="#FFFFFF" app:state_indeterminate="true"/>

<!-- Checked -->
<item android:color="#FFFFFF" android:state_checked="true"/>

<!-- Unchecked -->
<item android:color="#FFFFFF" android:state_checked="false"/>
</selector>

0 comments on commit 17d2d7a

Please sign in to comment.