reskin: Rename RiotDesignValues -> ThemeService

This commit is contained in:
manuroe
2019-01-11 10:32:56 +01:00
parent 192d04fcbd
commit f0c22a14af
123 changed files with 992 additions and 1004 deletions
@@ -16,7 +16,7 @@
#import "DisabledRoomInputToolbarView.h"
#import "RiotDesignValues.h"
#import "ThemeService.h"
#import "Riot-Swift.h"
@implementation DisabledRoomInputToolbarView
@@ -48,11 +48,11 @@
// Remove default toolbar background color
self.backgroundColor = [UIColor clearColor];
self.separatorView.backgroundColor = RiotDesignValues.theme.headerTextSecondaryColor;
self.separatorView.backgroundColor = ThemeService.theme.headerTextSecondaryColor;
self.disabledReasonTextView.font = [UIFont systemFontOfSize:15];
self.disabledReasonTextView.textColor = RiotDesignValues.theme.textPrimaryColor;
self.disabledReasonTextView.tintColor = RiotDesignValues.theme.tintColor;
self.disabledReasonTextView.textColor = ThemeService.theme.textPrimaryColor;
self.disabledReasonTextView.tintColor = ThemeService.theme.tintColor;
self.disabledReasonTextView.editable = NO;
self.disabledReasonTextView.scrollEnabled = NO;
}