diff --git a/iOS/Account/Account.storyboard b/iOS/Account/Account.storyboard
index b5f05cc65..8abb1d74c 100644
--- a/iOS/Account/Account.storyboard
+++ b/iOS/Account/Account.storyboard
@@ -3,6 +3,7 @@
+
@@ -80,13 +81,15 @@
-
+
+
+
+
+
diff --git a/iOS/Inspector/Inspector.storyboard b/iOS/Inspector/Inspector.storyboard
index e87d45987..bcf3defe1 100644
--- a/iOS/Inspector/Inspector.storyboard
+++ b/iOS/Inspector/Inspector.storyboard
@@ -79,13 +79,15 @@
-
+
-
+
+
+
@@ -110,7 +112,7 @@
-
+
@@ -177,7 +179,10 @@
-
+
+
+
+
diff --git a/iOS/UIKit Extensions/VibrantButton.swift b/iOS/UIKit Extensions/VibrantButton.swift
index 51a4a7021..ca2452eaa 100644
--- a/iOS/UIKit Extensions/VibrantButton.swift
+++ b/iOS/UIKit Extensions/VibrantButton.swift
@@ -23,12 +23,13 @@ class VibrantButton: UIButton {
private func commonInit() {
setTitleColor(AppAssets.vibrantTextColor, for: .highlighted)
+ let disabledColor = AppAssets.secondaryAccentColor.withAlphaComponent(0.5)
+ setTitleColor(disabledColor, for: .disabled)
}
override var isHighlighted: Bool {
didSet {
backgroundColor = isHighlighted ? backgroundHighlightColor : nil
- titleLabel?.alpha = 1
}
}