[6.2.6]
[taxi-p] [整理]
@@ -7,8 +7,8 @@ import android.view.View
|
||||
import androidx.constraintlayout.widget.ConstraintLayout
|
||||
import androidx.core.content.ContextCompat
|
||||
import com.mogo.och.taxi.passenger.R
|
||||
import kotlinx.android.synthetic.main.m1_bottom_check.view.aciv_center_image
|
||||
import kotlinx.android.synthetic.main.m1_bottom_check.view.actv_title
|
||||
import kotlinx.android.synthetic.main.taxi_p_bottom_check.view.aciv_center_image
|
||||
import kotlinx.android.synthetic.main.taxi_p_bottom_check.view.actv_title
|
||||
|
||||
open class BottomCheckView @JvmOverloads constructor(
|
||||
context: Context,
|
||||
@@ -31,7 +31,7 @@ open class BottomCheckView @JvmOverloads constructor(
|
||||
private var isCheck = false
|
||||
|
||||
init {
|
||||
LayoutInflater.from(context).inflate(R.layout.m1_bottom_check, this, true)
|
||||
LayoutInflater.from(context).inflate(R.layout.taxi_p_bottom_check, this, true)
|
||||
try {
|
||||
val typedArray = context.obtainStyledAttributes(attrs, R.styleable.BottomSelectView)
|
||||
backageViewId = typedArray.getResourceId(R.styleable.BottomSelectView_backageViewId, -1)
|
||||
|
||||
@@ -198,14 +198,14 @@ class TaxiPassengerCheckView :RelativeLayout, View.OnClickListener {
|
||||
numSelectTextView.forEachIndexed { indexIn, textView ->
|
||||
if(indexIn==index){
|
||||
numSelectTextView[index]!!.setBackgroundResource(R.drawable.bg_taxi_p_checked_input_background)
|
||||
numSelectTextView[index]!!.setTextColor(resources.getColor(R.color.taxi_p_check_keyboard_input_field_checked))
|
||||
numSelectTextView[index]!!.setTextColor(resources.getColor(android.R.color.white))
|
||||
numSelectTextView[index]!!.setShadowLayer(0f,0f,0f,
|
||||
resources.getColor(R.color.taxi_p_check_keyboard_input_field_checked_text_shadow))
|
||||
resources.getColor(android.R.color.white))
|
||||
}else{
|
||||
numSelectTextView[indexIn]!!.setBackgroundResource(R.drawable.bg_taxi_p_check_input_background)
|
||||
numSelectTextView[indexIn]!!.setTextColor(resources.getColor(R.color.taxi_p_check_keyboard_input_field))
|
||||
numSelectTextView[indexIn]!!.setBackgroundResource(R.drawable.taxi_p_check_input_background)
|
||||
numSelectTextView[indexIn]!!.setTextColor(resources.getColor(R.color.taxi_p_FF282F62))
|
||||
numSelectTextView[indexIn]!!.setShadowLayer(20f,0f,2f,
|
||||
resources.getColor(R.color.taxi_p_check_keyboard_input_field_checked_text_shadow))
|
||||
resources.getColor(android.R.color.white))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -223,7 +223,7 @@ class TaxiPassengerCheckView :RelativeLayout, View.OnClickListener {
|
||||
sb.setSpan(
|
||||
TextAppearanceSpan("default",
|
||||
Typeface.NORMAL,100,
|
||||
resources.getColorStateList(R.color.taxi_p_check_passenger_number) ,null ),
|
||||
resources.getColorStateList(R.color.taxi_p_FFFFC836) ,null ),
|
||||
4, 5, Spannable.SPAN_INCLUSIVE_INCLUSIVE)
|
||||
tv_passenger_count.text = sb
|
||||
tv_passenger_start.text = "起 点 : $startSiteAddr"
|
||||
|
||||
@@ -175,7 +175,7 @@ class StartAutopilotView : WindowRelativeLayout, StartAutopilotViewModel.StartAu
|
||||
taxi_p_start_autopilot?.let {
|
||||
if (isBoarded) {
|
||||
it.setTextColor(
|
||||
ContextCompat.getColor(context, R.color.taxi_p_start_autopilot_txt_color)
|
||||
ContextCompat.getColor(context, android.R.color.white)
|
||||
)
|
||||
it.background = null
|
||||
} else {
|
||||
@@ -183,7 +183,7 @@ class StartAutopilotView : WindowRelativeLayout, StartAutopilotViewModel.StartAu
|
||||
ContextCompat.getDrawable(context, R.drawable.taxi_p_start_autopilot_txt_btn_bg)
|
||||
taxi_p_autopilot_btn_bg!!.background = null
|
||||
it.setTextColor(
|
||||
ContextCompat.getColor(context, R.color.taxi_p_start_autopilot_txt_un_color)
|
||||
ContextCompat.getColor(context, R.color.taxi_p_4dffffff)
|
||||
)
|
||||
}
|
||||
it.tag = isBoarded
|
||||
@@ -208,7 +208,7 @@ class StartAutopilotView : WindowRelativeLayout, StartAutopilotViewModel.StartAu
|
||||
isStarting = true
|
||||
taxi_p_start_autopilot?.text = resources.getString(R.string.taxi_p_start_autopilot_loading)
|
||||
taxi_p_start_autopilot?.setTextColor(
|
||||
ContextCompat.getColor(context, R.color.taxi_p_start_autopilot_txt_color)
|
||||
ContextCompat.getColor(context, android.R.color.white)
|
||||
)
|
||||
startingAutopilotCountDown()
|
||||
} else {
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package com.mogo.och.taxi.passenger.ui.video;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Color;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
@@ -52,7 +51,7 @@ public class RecyclerVideoAdapter extends RecyclerView.Adapter<RecyclerItemVideo
|
||||
@NonNull
|
||||
@Override
|
||||
public RecyclerItemVideoHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||
View v = LayoutInflater.from(context).inflate(R.layout.list_video_item_light, parent, false);
|
||||
View v = LayoutInflater.from(context).inflate(R.layout.taxi_p_video_item_light, parent, false);
|
||||
RecyclerItemVideoHolder recyclerItemVideoHolder = new RecyclerItemVideoHolder(context, v);
|
||||
recyclerItemVideoHolder.setIsRecyclable(false);
|
||||
return recyclerItemVideoHolder;
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="1000" android:fromAlpha="1" android:toAlpha="0" />
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:startOffset="500" >
|
||||
<translate
|
||||
android:duration="142"
|
||||
android:fromXDelta="-110%"
|
||||
android:toXDelta="0"/>
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="142" />
|
||||
</set>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:startOffset="500" >
|
||||
<translate
|
||||
android:duration="142"
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="-110%"/>
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="142" />
|
||||
</set>
|
||||
@@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<objectAnimator android:propertyName="alpha" android:duration="1000" android:valueFrom="1.0" android:valueTo="0.0"/>
|
||||
</set>
|
||||
@@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<objectAnimator android:propertyName="alpha" android:duration="1000" android:valueFrom="0.0" android:valueTo="1.0"/>
|
||||
</set>
|
||||
@@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="@color/taxi_autopilot_text_color_normal"/>
|
||||
</selector>
|
||||
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00000.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00000.png
Executable file → Normal file
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00001.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00001.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00002.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00002.png
Executable file → Normal file
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00003.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00003.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00004.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00004.png
Executable file → Normal file
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00005.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00005.png
Executable file → Normal file
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00006.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00006.png
Executable file → Normal file
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00007.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00007.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00008.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00008.png
Executable file → Normal file
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00009.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00009.png
Executable file → Normal file
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00010.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00010.png
Executable file → Normal file
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00011.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00011.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00012.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00012.png
Executable file → Normal file
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00013.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00013.png
Executable file → Normal file
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00014.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00014.png
Executable file → Normal file
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00015.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00015.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00016.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00016.png
Executable file → Normal file
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00017.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00017.png
Executable file → Normal file
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00018.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00018.png
Executable file → Normal file
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00019.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00019.png
Executable file → Normal file
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00020.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00020.png
Executable file → Normal file
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00021.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00021.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00022.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00022.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00023.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00023.png
Executable file → Normal file
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00024.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00024.png
Executable file → Normal file
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00025.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00025.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00026.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00026.png
Executable file → Normal file
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00027.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00027.png
Executable file → Normal file
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00028.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00028.png
Executable file → Normal file
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00029.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00029.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00030.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00030.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00031.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00031.png
Executable file → Normal file
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00032.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00032.png
Executable file → Normal file
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00033.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00033.png
Executable file → Normal file
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/image_00034.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/image_00034.png
Executable file → Normal file
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00000.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00000.png
Executable file → Normal file
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00001.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00001.png
Executable file → Normal file
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00002.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00002.png
Executable file → Normal file
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00003.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00003.png
Executable file → Normal file
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00004.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00004.png
Executable file → Normal file
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00005.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00005.png
Executable file → Normal file
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00006.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00006.png
Executable file → Normal file
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00007.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00007.png
Executable file → Normal file
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00008.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00008.png
Executable file → Normal file
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00009.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00009.png
Executable file → Normal file
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00010.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00010.png
Executable file → Normal file
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00011.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00011.png
Executable file → Normal file
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 73 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00012.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00012.png
Executable file → Normal file
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
0
OCH/taxi/passenger/src/main/res/drawable/light_00013.png → OCH/taxi/passenger/src/main/res/drawable-nodpi/light_00013.png
Executable file → Normal file
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 897 KiB After Width: | Height: | Size: 897 KiB |
|
Before Width: | Height: | Size: 450 KiB After Width: | Height: | Size: 450 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 851 B After Width: | Height: | Size: 851 B |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.9 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 842 B After Width: | Height: | Size: 842 B |
|
Before Width: | Height: | Size: 788 B After Width: | Height: | Size: 788 B |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 372 B After Width: | Height: | Size: 372 B |
|
Before Width: | Height: | Size: 670 KiB After Width: | Height: | Size: 670 KiB |
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 375 B |
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 261 B |