mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Updating 4.0b2 to include layout fixes.
This commit is contained in:
parent
c28da1c248
commit
a36038afc6
2 changed files with 7 additions and 3 deletions
|
@ -212,7 +212,7 @@ static UIFont *indicatorFont = nil;
|
|||
|
||||
if (cell.isRead) {
|
||||
font = [UIFont fontWithDescriptor:fontDescriptor size:0.0];
|
||||
textColor = UIColorFromRGB(0x606060);
|
||||
textColor = UIColorFromRGB(0x585858);
|
||||
} else {
|
||||
UIFontDescriptor *boldFontDescriptor = [fontDescriptor fontDescriptorWithSymbolicTraits: UIFontDescriptorTraitBold];
|
||||
font = [UIFont fontWithDescriptor: boldFontDescriptor size:0.0];
|
||||
|
@ -274,14 +274,18 @@ static UIFont *indicatorFont = nil;
|
|||
}
|
||||
|
||||
if (cell.isRead) {
|
||||
textColor = UIColorFromRGB(0x606060);
|
||||
textColor = UIColorFromRGB(0x848484);
|
||||
font = [UIFont fontWithDescriptor:fontDescriptor size:0.0];
|
||||
} else {
|
||||
textColor = UIColorFromRGB(0x404040);
|
||||
font = [UIFont fontWithDescriptor:fontDescriptor size:0.0];
|
||||
}
|
||||
if (cell.highlighted || cell.selected) {
|
||||
textColor = UIColorFromRGB(0x686868);
|
||||
if (cell.isRead) {
|
||||
textColor = UIColorFromRGB(0x787878);
|
||||
} else {
|
||||
textColor = UIColorFromRGB(0x686868);
|
||||
}
|
||||
}
|
||||
|
||||
[cell.storyContent
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue