Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix styles for fullscreen controls (#2836)
Browse files Browse the repository at this point in the history
  • Loading branch information
keianhzo authored Feb 21, 2020
1 parent 8f4044a commit 64cbb6a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions app/src/main/res/layout/navigation_bar_fullscreen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,30 +31,28 @@

<org.mozilla.vrbrowser.ui.views.UIButton
android:id="@+id/fullScreenExitButton"
style="?attr/fullScreenButtonStyle"
android:background="@drawable/fullscreen_button_first"
style="@style/fullScreenFirstButtonTheme"
android:src="@drawable/ic_icon_back"
android:tooltipText="@string/back_tooltip"
app:privateMode="@{viewmodel.isPrivateSession}"/>

<org.mozilla.vrbrowser.ui.views.UIButton
android:id="@+id/fullScreenResizeEnterButton"
style="?attr/fullScreenButtonStyle"
style="@style/fullScreenButtonTheme"
android:src="@drawable/ic_icon_resize"
android:tooltipText="@string/resize_tooltip"
app:privateMode="@{viewmodel.isPrivateSession}"/>

<org.mozilla.vrbrowser.ui.views.UIButton
android:id="@+id/projectionButton"
style="?attr/fullScreenButtonStyle"
style="@style/fullScreenButtonTheme"
android:src="@drawable/ic_icon_vr_projection"
android:tooltipText="@string/video_mode_tooltip"
app:privateMode="@{viewmodel.isPrivateSession}"/>

<org.mozilla.vrbrowser.ui.views.UIButton
android:id="@+id/brightnessButton"
style="?attr/fullScreenButtonStyle"
android:background="@drawable/fullscreen_button_last"
style="@style/fullScreenLastButtonTheme"
android:src="@drawable/ic_icon_brightness"
android:tooltipText="@string/brightness_mode_tooltip"
app:privateMode="@{viewmodel.isPrivateSession}"/>
Expand Down

0 comments on commit 64cbb6a

Please sign in to comment.