mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-28 12:16:58 +02:00
Groups: self-management of membership of groups
- Custom the group view controllers with the blue color. vector-im/riot-meta#114
This commit is contained in:
@@ -129,6 +129,8 @@
|
||||
|
||||
// Setup `MXKViewControllerHandling` properties
|
||||
self.enableBarTintColorStatusChange = NO;
|
||||
|
||||
self.sectionHeaderTintColor = kRiotColorGreen;
|
||||
}
|
||||
|
||||
- (void)viewDidLoad
|
||||
@@ -244,7 +246,7 @@
|
||||
label.text = [sectionTitles objectAtIndex:index];
|
||||
label.font = [UIFont systemFontOfSize:17];
|
||||
label.textAlignment = NSTextAlignmentCenter;
|
||||
label.textColor = kRiotColorGreen;
|
||||
label.textColor = _sectionHeaderTintColor;
|
||||
label.backgroundColor = [UIColor clearColor];
|
||||
label.accessibilityIdentifier = [NSString stringWithFormat:@"SegmentedVCSectionLabel%tu", index];
|
||||
|
||||
@@ -330,7 +332,7 @@
|
||||
|
||||
// create the selected marker view
|
||||
selectedMarkerView = [[UIView alloc] init];
|
||||
selectedMarkerView.backgroundColor = kRiotColorGreen;
|
||||
selectedMarkerView.backgroundColor = _sectionHeaderTintColor;
|
||||
[selectedMarkerView setTranslatesAutoresizingMaskIntoConstraints:NO];
|
||||
[self.selectionContainer addSubview:selectedMarkerView];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user