Showing
4 changed files
with
4 additions
and
4 deletions
@@ -29,7 +29,7 @@ export default class MessageListBigIconCell extends Component { | @@ -29,7 +29,7 @@ export default class MessageListBigIconCell extends Component { | ||
29 | 29 | ||
30 | imageUri = SlicedImage.getSlicedUrl(imageUri, width, iconHeight, 2); | 30 | imageUri = SlicedImage.getSlicedUrl(imageUri, width, iconHeight, 2); |
31 | 31 | ||
32 | - let borderLeftWidth = isEditing ? 0.8 : 0; | 32 | + let borderLeftWidth = isEditing ? 1 : 0; |
33 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; | 33 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; |
34 | let editStyle = {borderLeftWidth, borderLeftColor}; | 34 | let editStyle = {borderLeftWidth, borderLeftColor}; |
35 | 35 |
@@ -28,7 +28,7 @@ export default class MessageListOrderCell extends Component { | @@ -28,7 +28,7 @@ export default class MessageListOrderCell extends Component { | ||
28 | 28 | ||
29 | imageUri = SlicedImage.getSlicedUrl(imageUri, 46, 60, 2) | 29 | imageUri = SlicedImage.getSlicedUrl(imageUri, 46, 60, 2) |
30 | 30 | ||
31 | - let borderLeftWidth = isEditing ? 0.8 : 0; | 31 | + let borderLeftWidth = isEditing ? 1 : 0; |
32 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; | 32 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; |
33 | let editStyle = {borderLeftWidth, borderLeftColor}; | 33 | let editStyle = {borderLeftWidth, borderLeftColor}; |
34 | 34 |
@@ -30,7 +30,7 @@ export default class MessageListSmallIconCell extends Component { | @@ -30,7 +30,7 @@ export default class MessageListSmallIconCell extends Component { | ||
30 | 30 | ||
31 | imageUri = SlicedImage.getSlicedUrl(imageUri, 50, 50, 2); | 31 | imageUri = SlicedImage.getSlicedUrl(imageUri, 50, 50, 2); |
32 | 32 | ||
33 | - let borderLeftWidth = isEditing ? 0.8 : 0; | 33 | + let borderLeftWidth = isEditing ? 1 : 0; |
34 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; | 34 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; |
35 | let editStyle = {borderLeftWidth, borderLeftColor}; | 35 | let editStyle = {borderLeftWidth, borderLeftColor}; |
36 | 36 |
@@ -23,7 +23,7 @@ export default class MessageListTextCell extends Component { | @@ -23,7 +23,7 @@ export default class MessageListTextCell extends Component { | ||
23 | let content = body ? body.get('content','') : ''; | 23 | let content = body ? body.get('content','') : ''; |
24 | let isSelected = itemData.get('isSelected'); | 24 | let isSelected = itemData.get('isSelected'); |
25 | 25 | ||
26 | - let borderLeftWidth = isEditing ? 0.8 : 0; | 26 | + let borderLeftWidth = isEditing ? 1 : 0; |
27 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; | 27 | let borderLeftColor = isEditing ? '#e0e0e0' : 'transparent'; |
28 | let editStyle = {borderLeftWidth, borderLeftColor}; | 28 | let editStyle = {borderLeftWidth, borderLeftColor}; |
29 | return( | 29 | return( |
-
Please register or login to post a comment