|
@@ -21,23 +21,25 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:gravity="center"
|
|
|
- android:orientation="vertical" >
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:padding="16dp">
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/header"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:text="@string/ssl_validator_header"
|
|
|
- android:padding="5dp"
|
|
|
+ android:paddingBottom="16dp"
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:textColor="@color/black"
|
|
|
/>
|
|
|
-
|
|
|
+
|
|
|
<TextView
|
|
|
android:id="@+id/reason_cert_not_trusted"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="left"
|
|
|
- android:paddingLeft="20dp"
|
|
|
+ android:paddingLeft="8dp"
|
|
|
android:text="@string/ssl_validator_reason_cert_not_trusted"
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
/>
|
|
@@ -47,7 +49,7 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="left"
|
|
|
- android:paddingLeft="20dp"
|
|
|
+ android:paddingLeft="8dp"
|
|
|
android:text="@string/ssl_validator_reason_cert_expired"
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
/>
|
|
@@ -57,7 +59,7 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="left"
|
|
|
- android:paddingLeft="20dp"
|
|
|
+ android:paddingLeft="8dp"
|
|
|
android:text="@string/ssl_validator_reason_cert_not_yet_valid"
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
/>
|
|
@@ -67,7 +69,7 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="left"
|
|
|
- android:paddingLeft="20dp"
|
|
|
+ android:paddingLeft="8dp"
|
|
|
android:text="@string/ssl_validator_reason_hostname_not_verified"
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
/>
|
|
@@ -75,7 +77,7 @@
|
|
|
<ScrollView
|
|
|
android:id="@+id/details_scroll"
|
|
|
android:visibility="gone"
|
|
|
- android:padding="20dp"
|
|
|
+ android:padding="8dp"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="180dp">
|
|
|
|
|
@@ -397,7 +399,7 @@
|
|
|
android:id="@+id/question"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:padding="5dp"
|
|
|
+ android:paddingTop="16dp"
|
|
|
android:text="@string/ssl_validator_question"
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
>
|
|
@@ -410,27 +412,27 @@
|
|
|
|
|
|
<android.support.v7.widget.AppCompatButton
|
|
|
android:id="@+id/cancel"
|
|
|
- style="@style/ownCloud.Button"
|
|
|
+ style="@style/Button.Borderless"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_weight="1"
|
|
|
- android:text="@string/common_cancel" />
|
|
|
+ android:text="@string/common_no" />
|
|
|
|
|
|
<android.support.v7.widget.AppCompatButton
|
|
|
android:id="@+id/details_btn"
|
|
|
- style="@style/ownCloud.Button"
|
|
|
+ style="@style/Button.Borderless"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1"
|
|
|
+ android:layout_weight="2"
|
|
|
android:text="@string/ssl_validator_btn_details_see" />
|
|
|
|
|
|
<android.support.v7.widget.AppCompatButton
|
|
|
android:id="@+id/ok"
|
|
|
- style="@style/ownCloud.Button"
|
|
|
+ style="@style/Button.Borderless"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_weight="1"
|
|
|
- android:text="@string/common_ok" />
|
|
|
+ android:text="@string/common_yes" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|