You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.2 KiB
46 lines
2.2 KiB
4 months ago
|
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2018 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.
|
||
|
-->
|
||
|
<resources>
|
||
|
<!-- TextAppearances for ActivityBlockingActivity. -->
|
||
|
<style name="ActivityBlockingActivityText">
|
||
|
<item name="android:fontFamily">roboto-regular</item>
|
||
|
<item name="android:textColor">@color/blocking_text</item>
|
||
|
<item name="android:textStyle">normal</item>
|
||
|
<item name="android:textSize">@dimen/blocking_text_size</item>
|
||
|
</style>
|
||
|
|
||
|
<!-- TextAppearances for Button Text in ActivityBlockingActivity. -->
|
||
|
<style name="ActionButtonText" parent="android:TextAppearance.DeviceDefault">
|
||
|
<item name="android:fontFamily">roboto-regular</item>
|
||
|
<item name="android:textColor">@color/blocking_text</item>
|
||
|
<item name="android:textSize">@*android:dimen/car_body3_size</item>
|
||
|
</style>
|
||
|
|
||
|
<!-- Style for buttons in ActivityBlockingActivity. -->
|
||
|
<style name="ButtonStyle">
|
||
|
<item name="android:layout_width">wrap_content</item>
|
||
|
<item name="android:layout_height">@dimen/action_button_height</item>
|
||
|
<item name="android:minWidth">@dimen/action_button_min_width</item>
|
||
|
<item name="android:maxWidth">@dimen/action_button_max_width</item>
|
||
|
<item name="android:textAppearance">@style/ActionButtonText</item>
|
||
|
<item name="android:textColor">@color/blocking_text</item>
|
||
|
<item name="android:singleLine">true</item>
|
||
|
<item name="android:background">@drawable/action_button_background</item>
|
||
|
<item name="android:gravity">center</item>
|
||
|
<item name="android:paddingHorizontal">@dimen/action_button_padding_horizontal</item>
|
||
|
</style>
|
||
|
</resources>
|
||
|
|