summaryrefslogtreecommitdiffstats
path: root/android/source/res/values/themes.xml
blob: bf815b5c659f5c90839a5ca5ea8ee14b7ae6abfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
    <style name="LibreOfficeTheme" parent="LibreOfficeTheme.Base"/>

    <style name="LibreOfficeTheme.Base" parent="Theme.AppCompat.DayNight.NoActionBar">
    </style>

    <style name="ListItemText">
        <item name="android:gravity">center_vertical</item>
        <item name="android:textColor">?android:attr/textColorPrimary</item>
        <item name="android:textSize">14sp</item>
    </style>

    <style name="LibreOfficeTheme.Toolbar" parent="Theme.AppCompat.DayNight.NoActionBar">
    </style>

    <style name="LibreOfficeTheme.NavigationView">
        <item name="colorPrimary">@android:color/black</item>
    </style>

    <style name="NewDocumentTextView">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:elevation" tools:ignore="NewApi">2dp</item>
        <item name="android:textSize">16sp</item>
        <item name="android:textStyle">bold</item>
        <item name="android:typeface">normal</item>
        <item name="android:padding">5dp</item>
        <item name="android:background">@drawable/label_background</item>
    </style>
</resources>