Various improvements

This commit is contained in:
Ilya Laktyushin
2025-09-22 07:45:25 +04:00
parent a80a706379
commit fb7b93fbdc
15 changed files with 73 additions and 18 deletions

View File

@@ -49,7 +49,7 @@ private class ButtonIcon: Equatable {
case .repost:
return generateTintedImage(image: UIImage(bundleImageName: "Stories/InputRepost"), color: .white)
case .close:
return generateTintedImage(image: UIImage(bundleImageName: "Chat/Input/Search/DownButton"), color: .white)
return generateTintedImage(image: UIImage(bundleImageName: "Media Editor/Close"), color: .white)
case .apply:
return generateImage(CGSize(width: 33.0, height: 33.0), contextGenerator: { size, context in
context.clear(CGRect(origin: CGPoint(), size: size))
@@ -529,7 +529,7 @@ public final class MessageInputActionButtonComponent: Component {
self.backgroundView = backgroundView
}
var tintColor = UIColor(rgb: 0x1b1d22)
var tintColor = UIColor(rgb: 0x1f1f27)
if case .send = component.mode {
tintColor = UIColor(rgb: 0x0187ee)
}