Update the room settings page to respect the Zeplin requiremenents (font size, color...)

This commit is contained in:
yannick
2015-12-17 15:09:30 +01:00
parent c9e3cca7b5
commit 4deed38635
5 changed files with 39 additions and 47 deletions
@@ -632,7 +632,7 @@
// disable the edition if the user cannoy update it
roomTopicCell.mxkTextView.editable = mxRoom.isModerator;
roomTopicCell.mxkTextView.textColor = mxRoom.isModerator ? [UIColor blackColor] : [UIColor lightGrayColor];
roomTopicCell.mxkTextView.textColor = VECTOR_TEXT_GRAY_COLOR;
cell = roomTopicCell;
}
@@ -664,7 +664,7 @@
// disable the edition if the user cannoy update it
roomNameCell.editable = mxRoom.isModerator;
roomNameCell.mxkTextField.textColor = mxRoom.isModerator ? [UIColor blackColor] : [UIColor lightGrayColor];
roomNameCell.mxkTextField.textColor = VECTOR_TEXT_GRAY_COLOR;
// Add a "textFieldDidChange" notification method to the text field control.