Removed gradient bar and changed text color in notes for full dark mode support

This commit is contained in:
Michael Starke
2018-11-08 13:46:32 +01:00
parent 7fe0689651
commit cac974a30e
16 changed files with 88 additions and 232 deletions

View File

@@ -27,12 +27,14 @@
@interface MPPickfieldTableModelRowItem : NSObject
@property (copy) NSString *name;
@property (copy) NSString *value;
@property BOOL isGroup;
@property (copy, readonly) NSString *name;
@property (copy, readonly) NSString *value;
@property (readonly) BOOL isProtected;
@property (readonly) BOOL isGroup;
+ (instancetype)groupItemWithName:(NSString *)name;
+ (instancetype)itemWithName:(NSString *)name value:(NSString *)value;
+ (instancetype)itemWithName:(NSString *)name protectedValue:(NSString *)value;
@end