Prettier password cells.
This commit is contained in:
parent
c9988d8cc2
commit
6c2cd01015
2
External/UbiquityStoreManager
vendored
2
External/UbiquityStoreManager
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 99dcbccee742d2bd2e5701f6b4e001138956030a
|
Subproject commit 349274921474e16c2bee9d7bc838141f5f89aefc
|
@ -57,11 +57,21 @@
|
|||||||
[self.counterButton addGestureRecognizer:
|
[self.counterButton addGestureRecognizer:
|
||||||
[[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector( doResetCounter: )]];
|
[[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector( doResetCounter: )]];
|
||||||
|
|
||||||
self.selectionButton.layer.cornerRadius = 5;
|
self.selectionButton.layer.cornerRadius = 4;
|
||||||
self.selectionButton.layer.shadowOffset = CGSizeZero;
|
self.selectionButton.layer.shadowOffset = CGSizeZero;
|
||||||
self.selectionButton.layer.shadowRadius = 5;
|
self.selectionButton.layer.shadowRadius = 5;
|
||||||
self.selectionButton.layer.shadowOpacity = 0;
|
self.selectionButton.layer.shadowOpacity = 0;
|
||||||
self.selectionButton.layer.shadowColor = [UIColor whiteColor].CGColor;
|
self.selectionButton.layer.shadowColor = [UIColor whiteColor].CGColor;
|
||||||
|
self.selectionButton.layer.borderWidth = 1;
|
||||||
|
self.selectionButton.layer.borderColor = [UIColor colorWithWhite:0.15f alpha:0.6f].CGColor;
|
||||||
|
self.contentView.layer.shadowRadius = 5;
|
||||||
|
self.contentView.layer.shadowOpacity = 1;
|
||||||
|
self.contentView.layer.shadowColor = [UIColor colorWithWhite:0 alpha:0.6f].CGColor;
|
||||||
|
self.contentView.layer.shadowPath = [UIBezierPath bezierPathWithRoundedRect:self.contentView.bounds cornerRadius:4].CGPath;
|
||||||
|
self.contentView.layer.masksToBounds = NO;
|
||||||
|
self.contentView.clipsToBounds = NO;
|
||||||
|
self.layer.masksToBounds = NO;
|
||||||
|
self.clipsToBounds = NO;
|
||||||
|
|
||||||
self.pageControl.transform = CGAffineTransformMakeScale( 0.4f, 0.4f );
|
self.pageControl.transform = CGAffineTransformMakeScale( 0.4f, 0.4f );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user