@@ -66,7 +66,7 @@ class NGHelloWorld(object):
66
66
old_value = 'Ter Stegen' , new_value = 'Unknown' ,
67
67
old_text = 'Ter Stegen' , new_text = 'Unknown' )
68
68
CSS = ChangeSet (file_path = os .path .join ('src' , 'app.css' ),
69
- old_value = '}' , new_value = '}\n ListView { background-color: pink;}\n ' ,
69
+ old_value = '}' , new_value = '}\n Label{ background-color:pink;}\n ' ,
70
70
old_color = Colors .WHITE , new_color = Colors .PINK )
71
71
HTML = ChangeSet (file_path = os .path .join ('src' , 'app' , 'item' , 'items.component.html' ), old_value = '"item.name"' ,
72
72
new_value = '"item.id"' , old_text = None , new_text = None )
@@ -105,20 +105,20 @@ class MasterDetailNG(object):
105
105
106
106
# This change should make background of items on home page purple
107
107
SCSS_NESTED_COMMON = ChangeSet (file_path = os .path .join ('src' , 'app' , 'cars' , '_car-list.component.scss' ),
108
- old_value = '$ background-color: background ' ,
109
- new_value = '$ background-color: purple ' ,
110
- old_color = Colors .WHITE , new_color = Colors .PURPLE_CUSTOM )
108
+ old_value = 'background-alt-10); ' ,
109
+ new_value = 'background-alt-10); \n background- color: yellow; ' ,
110
+ old_color = Colors .WHITE , new_color = Colors .YELLOW )
111
111
112
112
# This change should make icons on home page yellow
113
113
SCSS_NESTED_ANDROID = ChangeSet (file_path = os .path .join ('src' , 'app' , 'cars' , 'car-list.component.android.scss' ),
114
114
old_value = 'Android here' ,
115
- new_value = 'Android here\n .cars-list__item{ color: yellow; }\n ' ,
116
- old_color = None , new_color = Colors .YELLOW )
115
+ new_value = 'Android here\n .cars-list__item-name{background- color: orange; }\n ' ,
116
+ old_color = None , new_color = Colors .ORANGE )
117
117
118
118
SCSS_NESTED_IOS = ChangeSet (file_path = os .path .join ('src' , 'app' , 'cars' , 'car-list.component.ios.scss' ),
119
119
old_value = 'iOS here' ,
120
- new_value = 'iOS here\n .cars-list__item{ color: yellow; }\n ' ,
121
- old_color = None , new_color = Colors .YELLOW )
120
+ new_value = 'iOS here\n .cars-list__item-name{background- color: orange; }\n ' ,
121
+ old_color = None , new_color = Colors .ORANGE )
122
122
123
123
class JSTabNavigation (object ):
124
124
JS = ChangeSet (file_path = os .path .join ('app' , 'home' , 'home-items-view-model.js' ),
0 commit comments