Dan Ballard pushed to branch tor-browser-128.7.0esr-14.5-1 at The Tor Project / Applications / Tor Browser

Commits:

2 changed files:

Changes:

  • mobile/android/fenix/app/src/main/res/drawable/progress_gradient.xml
    ... ... @@ -5,7 +5,7 @@
    5 5
     <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    
    6 6
         <item android:id="@android:id/background">
    
    7 7
             <shape>
    
    8
    -            <solid android:color="?attr/layer2" />
    
    8
    +            <solid android:color="@color/progress_background_tint" />
    
    9 9
             </shape>
    
    10 10
         </item>
    
    11 11
     
    
    ... ... @@ -15,7 +15,10 @@
    15 15
                     <gradient
    
    16 16
                         android:angle="0"
    
    17 17
                         android:endColor="#00DBDE"
    
    18
    -                    android:startColor="#FC00FF"/>
    
    18
    +                    android:startColor="#FC00FF" />
    
    19
    +                <corners
    
    20
    +                    android:bottomRightRadius="3dp"
    
    21
    +                    android:topRightRadius="3dp" />
    
    19 22
                 </shape>
    
    20 23
             </scale>
    
    21 24
         </item>
    

  • mobile/android/fenix/app/src/main/res/values/colors.xml
    ... ... @@ -382,4 +382,5 @@
    382 382
         <color name="connect_button_purple">#9059FF</color>
    
    383 383
         <color name="configure_connection_button_white">#E1E0E7</color>
    
    384 384
         <color name="warning_yellow">#FFA436</color>
    
    385
    +    <color name="progress_background_tint">#55148C</color>
    
    385 386
     </resources>