Skip to content

Commit f0c26d5

Browse files
author
pipeline
committed
bug(EJ2-4543): Sample browser css issues
1 parent 92c9976 commit f0c26d5

File tree

5 files changed

+32
-32
lines changed

5 files changed

+32
-32
lines changed

src/button/button.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { SharedModule } from '../common/shared.module';
99
export const buttonAppRoutes: Object[] = [
1010
{ path: ':theme/button/default', component: DefaultButtonController, name: 'Default Functionalities', category: 'Button' },
1111
{ path: ':theme/button/check-box', component: CheckBoxController, name: 'CheckBox', category: 'Button' },
12-
{ path: ':theme/button/radio-button', component: RadioButtonController, name: 'RadioButton', category: 'Button', type: 'new' }
12+
{ path: ':theme/button/radio-button', component: RadioButtonController, name: 'RadioButton', category: 'Button' }
1313
];
1414

1515
export const buttonRouter: ModuleWithProviders = RouterModule.forChild(buttonAppRoutes);

src/common/samplelist.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export let samplesList: any = [
3939
'name': 'Form-Validator', 'category': 'Editors', 'order': '03', 'path': 'form-validator', 'samples': formValidatorAppRoutes
4040
},
4141
{
42-
'name': 'Button', 'category': 'Editors', 'order': '03', 'path': 'button', 'samples': buttonAppRoutes, 'type': 'update'
42+
'name': 'Button', 'category': 'Editors', 'order': '03', 'path': 'button', 'samples': buttonAppRoutes
4343
},
4444
{
4545
'name': 'Calendar', 'category': 'Editors', 'order': '03', 'path': 'calendar', 'samples': calendarAppRoutes

src/contextmenu/contextmenu.css

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
text-transform: none;
1919
}
2020

21-
#target {
21+
#contextmenutarget {
2222
border: 1px dashed;
2323
height: 250px;
2424
padding: 10px;
@@ -41,104 +41,104 @@
4141
width: auto;
4242
}
4343

44-
#target {
44+
#contextmenutarget {
4545
line-height: 17;
4646
}
4747
}
4848

49-
.e-cut::before {
49+
.e-menu-item .e-cut::before {
5050
content: '\e264';
5151
}
5252

53-
.e-paste::before {
53+
.e-menu-item .e-paste::before {
5454
content: '\e959';
5555
}
5656

57-
.e-font::before {
57+
.e-menu-item .e-font::before {
5858
content: '\e262';
5959
}
6060

61-
.e-copy::before {
61+
.e-menu-item .e-copy::before {
6262
content: '\e263';
6363
}
6464

65-
.e-link::before {
65+
.e-menu-item .e-link::before {
6666
content: '\e265';
6767
}
6868

69-
.e-comment::before {
69+
.e-menu-item .e-comment::before {
7070
content: '\e267';
7171
}
7272

73-
.e-pastetext::before {
73+
.e-menu-item .e-pastetext::before {
7474
content: '\e261';
7575
}
7676

77-
.e-pastespecial::before {
77+
.e-menu-item .e-pastespecial::before {
7878
content: '\e260';
7979
}
8080

81-
.fabric .e-cut::before {
81+
.fabric .e-menu-item .e-cut::before {
8282
content: '\e251';
8383
}
8484

85-
.fabric .e-paste::before {
85+
.fabric .e-menu-item .e-paste::before {
8686
content: '\e940';
8787
}
8888

89-
.fabric .e-font::before {
89+
.fabric .e-menu-item .e-font::before {
9090
content: '\e252';
9191
}
9292

93-
.fabric .e-copy::before {
93+
.fabric .e-menu-item .e-copy::before {
9494
content: '\e255';
9595
}
9696

97-
.fabric .e-link::before {
97+
.fabric .e-menu-item .e-link::before {
9898
content: '\e254';
9999
}
100100

101-
.fabric .e-comment::before {
101+
.fabric .e-menu-item .e-comment::before {
102102
content: '\e253';
103103
}
104104

105-
.fabric .e-pastetext::before {
105+
.fabric .e-menu-item .e-pastetext::before {
106106
content: '\e258';
107107
}
108108

109-
.fabric .e-pastespecial::before {
109+
.fabric .e-menu-item .e-pastespecial::before {
110110
content: '\e256';
111111
}
112112

113-
.bootstrap .e-cut::before {
113+
.bootstrap .e-menu-item .e-cut::before {
114114
content: '\e248';
115115
}
116116

117-
.bootstrap .e-paste::before {
117+
.bootstrap .e-menu-item .e-paste::before {
118118
content: '\e95a';
119119
}
120120

121-
.bootstrap .e-font::before {
121+
.bootstrap .e-menu-item .e-font::before {
122122
content: '\e247';
123123
}
124124

125-
.bootstrap .e-copy::before {
125+
.bootstrap .e-menu-item .e-copy::before {
126126
content: '\e249';
127127
}
128128

129-
.bootstrap .e-link::before {
129+
.bootstrap .e-menu-item .e-link::before {
130130
content: '\e245';
131131
}
132132

133-
.bootstrap .e-comment::before {
133+
.bootstrap .e-menu-item .e-comment::before {
134134
content: '\e246';
135135
}
136136

137-
.bootstrap .e-pastetext::before {
137+
.bootstrap .e-menu-item .e-pastetext::before {
138138
content: '\e257';
139139
}
140140

141-
.bootstrap .e-pastespecial::before {
141+
.bootstrap .e-menu-item .e-pastespecial::before {
142142
content: '\e259';
143143
}
144144

0 commit comments

Comments
 (0)